Re: [PATCH 2/2] Export deferrable timer through workqueue and use it in ondemand governor

2007-03-21 Thread Dave Jones
On Wed, Mar 21, 2007 at 03:19:45PM -0700, Venki Pallipadi wrote: > init_timer_deferrable is defined in > [PATCH 1/2] Add support for deferrable timers > http://www.ussg.iu.edu/hypermail/linux/kernel/0703.2/2064.html > > Do you get this error after that patch? Ah, looks like I had 1/2 from t

Re: [PATCH 2/2] Export deferrable timer through workqueue and use it in ondemand governor

2007-03-21 Thread Venki Pallipadi
On Mar 21, 2007, at 3:04 PM, Dave Jones wrote: On Wed, Mar 21, 2007 at 01:23:40PM -0700, Venkatesh Pallipadi wrote: Add a new deferrable delayed work init. This can be used to schedule work that are 'unimportant' when CPU is idle and can be called later, when CPU eventually comes out o

Re: [PATCH 2/2] Export deferrable timer through workqueue and use it in ondemand governor

2007-03-21 Thread Dave Jones
On Wed, Mar 21, 2007 at 01:23:40PM -0700, Venkatesh Pallipadi wrote: > > > Add a new deferrable delayed work init. This can be used to schedule work > that are 'unimportant' when CPU is idle and can be called later, when CPU > eventually comes out of idle. > > Use this init in cpufreq ond

[PATCH 2/2] Export deferrable timer through workqueue and use it in ondemand governor

2007-03-21 Thread Venkatesh Pallipadi
Add a new deferrable delayed work init. This can be used to schedule work that are 'unimportant' when CPU is idle and can be called later, when CPU eventually comes out of idle. Use this init in cpufreq ondemand governor. Signed-off-by: Venkatesh Pallipadi <[EMAIL PROTECTED]> Index: new/drive