Messages in this thread Patch in this message |  | | From | Lai Jiangshan <> | Subject | [PATCH 04/13] workqueue: clear cwq when cancel the work | Date | Fri, 1 Feb 2013 02:41:27 +0800 |
| |
Add clear_work_cwq() which clear the CWQ bit when the work is offq when it is cancelled.
It is the other important step of killing CWQ bit of the work which is not queued on any pool.
Now, when a work is offq, it has no CWQ bit.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com> --- kernel/workqueue.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index b12b30e..50d3dd5 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c @@ -556,6 +556,12 @@ static void set_work_cwq(struct work_struct *work, WORK_STRUCT_PENDING | WORK_STRUCT_CWQ | extra_flags); } +static void clear_work_cwq(struct work_struct *work, int pool_id) +{ + set_work_data(work, pool_id << WORK_OFFQ_POOL_SHIFT, + WORK_STRUCT_PENDING); +} + static void set_work_pool_and_clear_pending(struct work_struct *work, int pool_id) { @@ -1115,6 +1121,7 @@ static int try_to_grab_pending(struct work_struct *work, bool is_dwork, cwq_dec_nr_in_flight(get_work_cwq(work), get_work_color(work)); + clear_work_cwq(work, pool->id); spin_unlock(&pool->lock); return 1; } -- 1.7.7.6
|  |