diff options
| author | Boqun Feng <boqun.feng@gmail.com> | 2017-08-17 05:46:12 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2017-08-17 06:12:33 -0400 |
| commit | 52fa5bc5cbba089f09bc2c372e3432f3f3e48051 (patch) | |
| tree | 6ef541aba12c1838bda4025e78045c8d01246327 | |
| parent | ea3f2c0fdfbb180f142cdbc0d1f055c7b9a5e63e (diff) | |
locking/lockdep: Explicitly initialize wq_barrier::done::map
With the new lockdep crossrelease feature, which checks completions usage,
a false positive is reported in the workqueue code:
> Worker A : acquired of wfc.work -> wait for cpu_hotplug_lock to be released
> Task B : acquired of cpu_hotplug_lock -> wait for lock#3 to be released
> Task C : acquired of lock#3 -> wait for completion of barr->done
> (Task C is in lru_add_drain_all_cpuslocked())
> Worker D : wait for wfc.work to be released -> will complete barr->done
Such a dead lock can not happen because Task C's barr->done and Worker D's
barr->done can not be the same instance.
The reason of this false positive is we initialize all wq_barrier::done
at insert_wq_barrier() via init_completion(), which makes them belong to
the same lock class, therefore, impossible circles are reported.
To fix this, explicitly initialize the lockdep map for wq_barrier::done
in insert_wq_barrier(), so that the lock class key of wq_barrier::done
is a subkey of the corresponding work_struct, as a result we won't build
a dependency between a wq_barrier with a unrelated work, and we can
differ wq barriers based on the related works, so the false positive
above is avoided.
Also define the empty lockdep_init_map_crosslock() for !CROSSRELEASE
to make the code simple and away from unnecessary #ifdefs.
Reported-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
Cc: Byungchul Park <byungchul.park@lge.com>
Cc: Lai Jiangshan <jiangshanlai@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Tejun Heo <tj@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20170817094622.12915-1-boqun.feng@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
| -rw-r--r-- | include/linux/lockdep.h | 1 | ||||
| -rw-r--r-- | kernel/workqueue.c | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index 651cc61af041..fc827cab6d6e 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h | |||
| @@ -583,6 +583,7 @@ extern void crossrelease_hist_end(enum xhlock_context_t c); | |||
| 583 | extern void lockdep_init_task(struct task_struct *task); | 583 | extern void lockdep_init_task(struct task_struct *task); |
| 584 | extern void lockdep_free_task(struct task_struct *task); | 584 | extern void lockdep_free_task(struct task_struct *task); |
| 585 | #else | 585 | #else |
| 586 | #define lockdep_init_map_crosslock(m, n, k, s) do {} while (0) | ||
| 586 | /* | 587 | /* |
| 587 | * To initialize a lockdep_map statically use this macro. | 588 | * To initialize a lockdep_map statically use this macro. |
| 588 | * Note that _name must not be NULL. | 589 | * Note that _name must not be NULL. |
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index e86733a8b344..f128b3becfe1 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
| @@ -2476,7 +2476,16 @@ static void insert_wq_barrier(struct pool_workqueue *pwq, | |||
| 2476 | */ | 2476 | */ |
| 2477 | INIT_WORK_ONSTACK(&barr->work, wq_barrier_func); | 2477 | INIT_WORK_ONSTACK(&barr->work, wq_barrier_func); |
| 2478 | __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work)); | 2478 | __set_bit(WORK_STRUCT_PENDING_BIT, work_data_bits(&barr->work)); |
| 2479 | init_completion(&barr->done); | 2479 | |
| 2480 | /* | ||
| 2481 | * Explicitly init the crosslock for wq_barrier::done, make its lock | ||
| 2482 | * key a subkey of the corresponding work. As a result we won't | ||
| 2483 | * build a dependency between wq_barrier::done and unrelated work. | ||
| 2484 | */ | ||
| 2485 | lockdep_init_map_crosslock((struct lockdep_map *)&barr->done.map, | ||
| 2486 | "(complete)wq_barr::done", | ||
| 2487 | target->lockdep_map.key, 1); | ||
| 2488 | __init_completion(&barr->done); | ||
| 2480 | barr->task = current; | 2489 | barr->task = current; |
| 2481 | 2490 | ||
| 2482 | /* | 2491 | /* |
