workqueue: pick cwq instead of pool in __queue_work()
authorLai Jiangshan <laijs@cn.fujitsu.com>
Thu, 7 Feb 2013 21:14:20 +0000 (13:14 -0800)
committerTejun Heo <tj@kernel.org>
Thu, 7 Feb 2013 21:17:51 +0000 (13:17 -0800)
commit8594fade39d3ad02ef856b8c53b5d7cc538a55f5
tree7f14598186e3fbc5feb91b1c25905b51d106a104
parent54d5b7d079dffa74597715a892473b474babd5b5
workqueue: pick cwq instead of pool in __queue_work()

Currently, __queue_work() chooses the pool to queue a work item to and
then determines cwq from the target wq and the chosen pool.  This is a
bit backwards in that we can determine cwq first and simply use
cwq->pool.  This way, we can skip get_std_worker_pool() in queueing
path which will be a hurdle when implementing custom worker pools.

Update __queue_work() such that it chooses the target cwq and then use
cwq->pool instead of the other way around.  While at it, add missing
{} in an if statement.

This patch doesn't introduce any functional changes.

tj: The original patch had two get_cwq() calls - the first to
    determine the pool by doing get_cwq(cpu, wq)->pool and the second
    to determine the matching cwq from get_cwq(pool->cpu, wq).
    Updated the function such that it chooses cwq instead of pool and
    removed the second call.  Rewrote the description.

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c