Skip to content

Commit fca839c

Browse files
committed
workqueue: warn if memory reclaim tries to flush !WQ_MEM_RECLAIM workqueue
Task or work item involved in memory reclaim trying to flush a non-WQ_MEM_RECLAIM workqueue or one of its work items can lead to deadlock. Trigger WARN_ONCE() if such conditions are detected. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org>
1 parent 527e931 commit fca839c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

kernel/workqueue.c

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2316,6 +2316,37 @@ static int rescuer_thread(void *__rescuer)
23162316
goto repeat;
23172317
}
23182318

2319+
/**
2320+
* check_flush_dependency - check for flush dependency sanity
2321+
* @target_wq: workqueue being flushed
2322+
* @target_work: work item being flushed (NULL for workqueue flushes)
2323+
*
2324+
* %current is trying to flush the whole @target_wq or @target_work on it.
2325+
* If @target_wq doesn't have %WQ_MEM_RECLAIM, verify that %current is not
2326+
* reclaiming memory or running on a workqueue which doesn't have
2327+
* %WQ_MEM_RECLAIM as that can break forward-progress guarantee leading to
2328+
* a deadlock.
2329+
*/
2330+
static void check_flush_dependency(struct workqueue_struct *target_wq,
2331+
struct work_struct *target_work)
2332+
{
2333+
work_func_t target_func = target_work ? target_work->func : NULL;
2334+
struct worker *worker;
2335+
2336+
if (target_wq->flags & WQ_MEM_RECLAIM)
2337+
return;
2338+
2339+
worker = current_wq_worker();
2340+
2341+
WARN_ONCE(current->flags & PF_MEMALLOC,
2342+
"workqueue: PF_MEMALLOC task %d(%s) is flushing !WQ_MEM_RECLAIM %s:%pf",
2343+
current->pid, current->comm, target_wq->name, target_func);
2344+
WARN_ONCE(worker && (worker->current_pwq->wq->flags & WQ_MEM_RECLAIM),
2345+
"workqueue: WQ_MEM_RECLAIM %s:%pf is flushing !WQ_MEM_RECLAIM %s:%pf",
2346+
worker->current_pwq->wq->name, worker->current_func,
2347+
target_wq->name, target_func);
2348+
}
2349+
23192350
struct wq_barrier {
23202351
struct work_struct work;
23212352
struct completion done;
@@ -2525,6 +2556,8 @@ void flush_workqueue(struct workqueue_struct *wq)
25252556
list_add_tail(&this_flusher.list, &wq->flusher_overflow);
25262557
}
25272558

2559+
check_flush_dependency(wq, NULL);
2560+
25282561
mutex_unlock(&wq->mutex);
25292562

25302563
wait_for_completion(&this_flusher.done);
@@ -2697,6 +2730,8 @@ static bool start_flush_work(struct work_struct *work, struct wq_barrier *barr)
26972730
pwq = worker->current_pwq;
26982731
}
26992732

2733+
check_flush_dependency(pwq->wq, work);
2734+
27002735
insert_wq_barrier(pwq, barr, work, worker);
27012736
spin_unlock_irq(&pool->lock);
27022737

0 commit comments

Comments
 (0)