Re: [PATCH] make c_idle.work have a static address.

2008-02-23 Thread Ingo Molnar
* Glauber Costa <[EMAIL PROTECTED]> wrote: > Currently, c_idle is declared in the stack, and thus, have no static > address. > > Peter Zijlstra points out this simple solution, in which c_idle.work > is initializated separatedly. Note that the INIT_WORK macro has a > static declaration of a k

[PATCH] make c_idle.work have a static address.

2008-02-22 Thread Glauber Costa
Currently, c_idle is declared in the stack, and thus, have no static address. Peter Zijlstra points out this simple solution, in which c_idle.work is initializated separatedly. Note that the INIT_WORK macro has a static declaration of a key inside. Signed-off-by: Glauber Costa <[EMAIL PROTECTED]>