[PATCH 01/10] workqueue: always pass flush responsibility to next

2012-09-24 Thread Lai Jiangshan
depriving the responsibility make the code complex, we pass it to the next unconditionally. After this change, we don't need to go back to repeat cascading, so we use "break" to exit the loop. The loop will be remove in later patch. Signed-off-by: Lai Jiangshan --- kernel/workqueue.c | 11

[PATCH 01/10] workqueue: always pass flush responsibility to next

2012-09-24 Thread Lai Jiangshan
depriving the responsibility make the code complex, we pass it to the next unconditionally. After this change, we don't need to go back to repeat cascading, so we use break to exit the loop. The loop will be remove in later patch. Signed-off-by: Lai Jiangshan la...@cn.fujitsu.com ---