diff options
author | Tejun Heo <tj@kernel.org> | 2012-07-22 13:16:34 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2012-07-22 13:16:34 -0400 |
commit | 6fec10a1a5866dda3cd6a825a521fc7c2f226ba5 (patch) | |
tree | f45c465a2d5f04e5052324efd114ac07cd668a41 /kernel/workqueue.c | |
parent | 46f3d976213452350f9d10b0c2780c2681f7075b (diff) |
workqueue: fix spurious CPU locality WARN from process_one_work()
25511a4776 "workqueue: reimplement CPU online rebinding to handle idle
workers" added CPU locality sanity check in process_one_work(). It
triggers if a worker is executing on a different CPU without UNBOUND
or REBIND set.
This works for all normal workers but rescuers can trigger this
spuriously when they're serving the unbound or a disassociated
global_cwq - rescuers don't have either flag set and thus its
gcwq->cpu can be a different value including %WORK_CPU_UNBOUND.
Fix it by additionally testing %GCWQ_DISASSOCIATED.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
LKML-Refence: <20120721213656.GA7783@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r-- | kernel/workqueue.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 471996a81633..692d97628a10 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
@@ -1949,7 +1949,13 @@ __acquires(&gcwq->lock) | |||
1949 | 1949 | ||
1950 | lockdep_copy_map(&lockdep_map, &work->lockdep_map); | 1950 | lockdep_copy_map(&lockdep_map, &work->lockdep_map); |
1951 | #endif | 1951 | #endif |
1952 | /* | ||
1953 | * Ensure we're on the correct CPU. DISASSOCIATED test is | ||
1954 | * necessary to avoid spurious warnings from rescuers servicing the | ||
1955 | * unbound or a disassociated gcwq. | ||
1956 | */ | ||
1952 | WARN_ON_ONCE(!(worker->flags & (WORKER_UNBOUND | WORKER_REBIND)) && | 1957 | WARN_ON_ONCE(!(worker->flags & (WORKER_UNBOUND | WORKER_REBIND)) && |
1958 | !(gcwq->flags & GCWQ_DISASSOCIATED) && | ||
1953 | raw_smp_processor_id() != gcwq->cpu); | 1959 | raw_smp_processor_id() != gcwq->cpu); |
1954 | 1960 | ||
1955 | /* | 1961 | /* |