forked from Minki/linux
Fix "delayed_work_pending()" macro expansion
Nobody uses it, but it was still wrong. Using the macro argument name 'work' meant that when we used 'work' as a member name, that would also get replaced by the macro argument. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
701dfbe719
commit
0221872a3b
@ -121,8 +121,8 @@ struct execute_work {
|
|||||||
* pending
|
* pending
|
||||||
* @work: The work item in question
|
* @work: The work item in question
|
||||||
*/
|
*/
|
||||||
#define delayed_work_pending(work) \
|
#define delayed_work_pending(w) \
|
||||||
test_bit(WORK_STRUCT_PENDING, &(work)->work.management)
|
work_pending(&(w)->work)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* work_release - Release a work item under execution
|
* work_release - Release a work item under execution
|
||||||
|
Loading…
Reference in New Issue
Block a user