Searched refs:worklist (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/fs/xfs/scrub/ |
D | refcount.c | 160 struct list_head worklist; in xchk_refcountbt_process_rmap_fragments() local 181 INIT_LIST_HEAD(&worklist); in xchk_refcountbt_process_rmap_fragments() 203 list_move_tail(&frag->list, &worklist); in xchk_refcountbt_process_rmap_fragments() 220 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_refcountbt_process_rmap_fragments() 237 list_move_tail(&frag->list, &worklist); in xchk_refcountbt_process_rmap_fragments() 268 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_refcountbt_process_rmap_fragments()
|
/Linux-v4.19/kernel/ |
D | workqueue.c | 155 struct list_head worklist; /* L: list of pending works */ member 779 return !list_empty(&pool->worklist) && __need_more_worker(pool); in need_more_worker() 791 return !list_empty(&pool->worklist) && in keep_working() 907 !list_empty(&pool->worklist)) in wq_worker_sleeping() 1117 if (list_empty(&pwq->pool->worklist)) in pwq_activate_delayed_work() 1119 move_linked_works(work, &pwq->pool->worklist, NULL); in pwq_activate_delayed_work() 1368 struct list_head *worklist; in __queue_work() local 1453 worklist = &pwq->pool->worklist; in __queue_work() 1454 if (list_empty(worklist)) in __queue_work() 1458 worklist = &pwq->delayed_works; in __queue_work() [all …]
|
/Linux-v4.19/Documentation/core-api/ |
D | workqueue.rst | 104 and appended on the shared worklist of the worker-pool. For example, 106 be queued on the worklist of either normal or highpri worker-pool that
|