diff options
Diffstat (limited to 'kernel/workqueue.c')
-rw-r--r-- | kernel/workqueue.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/kernel/workqueue.c b/kernel/workqueue.c index 8ee6ec82f88a..930c2390b77e 100644 --- a/kernel/workqueue.c +++ b/kernel/workqueue.c | |||
@@ -1840,7 +1840,7 @@ __acquires(&gcwq->lock) | |||
1840 | spin_unlock_irq(&gcwq->lock); | 1840 | spin_unlock_irq(&gcwq->lock); |
1841 | 1841 | ||
1842 | work_clear_pending(work); | 1842 | work_clear_pending(work); |
1843 | lock_map_acquire(&cwq->wq->lockdep_map); | 1843 | lock_map_acquire_read(&cwq->wq->lockdep_map); |
1844 | lock_map_acquire(&lockdep_map); | 1844 | lock_map_acquire(&lockdep_map); |
1845 | trace_workqueue_execute_start(work); | 1845 | trace_workqueue_execute_start(work); |
1846 | f(work); | 1846 | f(work); |
@@ -2384,8 +2384,18 @@ static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr, | |||
2384 | insert_wq_barrier(cwq, barr, work, worker); | 2384 | insert_wq_barrier(cwq, barr, work, worker); |
2385 | spin_unlock_irq(&gcwq->lock); | 2385 | spin_unlock_irq(&gcwq->lock); |
2386 | 2386 | ||
2387 | lock_map_acquire(&cwq->wq->lockdep_map); | 2387 | /* |
2388 | * If @max_active is 1 or rescuer is in use, flushing another work | ||
2389 | * item on the same workqueue may lead to deadlock. Make sure the | ||
2390 | * flusher is not running on the same workqueue by verifying write | ||
2391 | * access. | ||
2392 | */ | ||
2393 | if (cwq->wq->saved_max_active == 1 || cwq->wq->flags & WQ_RESCUER) | ||
2394 | lock_map_acquire(&cwq->wq->lockdep_map); | ||
2395 | else | ||
2396 | lock_map_acquire_read(&cwq->wq->lockdep_map); | ||
2388 | lock_map_release(&cwq->wq->lockdep_map); | 2397 | lock_map_release(&cwq->wq->lockdep_map); |
2398 | |||
2389 | return true; | 2399 | return true; |
2390 | already_gone: | 2400 | already_gone: |
2391 | spin_unlock_irq(&gcwq->lock); | 2401 | spin_unlock_irq(&gcwq->lock); |