Searched refs:worklist (Results 1 – 5 of 5) sorted by relevance
| /linux-6.15/tools/perf/scripts/python/ |
| H A D | parallel-perf.py | 125 def KillWork(worklist, verbosity): argument 126 for w in worklist: 128 for w in worklist: 152 worklist = [] 189 worklist.append(w) 190 return worklist 193 nr_to_do = len(worklist) 194 not_started = list(worklist) 243 for w in worklist: 257 for w in worklist: [all …]
|
| /linux-6.15/fs/xfs/scrub/ |
| H A D | refcount.c | 167 struct list_head worklist; in xchk_refcountbt_process_rmap_fragments() local 188 INIT_LIST_HEAD(&worklist); in xchk_refcountbt_process_rmap_fragments() 210 list_move_tail(&frag->list, &worklist); in xchk_refcountbt_process_rmap_fragments() 225 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_refcountbt_process_rmap_fragments() 242 list_move_tail(&frag->list, &worklist); in xchk_refcountbt_process_rmap_fragments() 273 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_refcountbt_process_rmap_fragments()
|
| H A D | rtrefcount.c | 181 struct list_head worklist; in xchk_rtrefcountbt_process_rmap_fragments() local 202 INIT_LIST_HEAD(&worklist); in xchk_rtrefcountbt_process_rmap_fragments() 224 list_move_tail(&frag->list, &worklist); in xchk_rtrefcountbt_process_rmap_fragments() 239 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_rtrefcountbt_process_rmap_fragments() 256 list_move_tail(&frag->list, &worklist); in xchk_rtrefcountbt_process_rmap_fragments() 287 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_rtrefcountbt_process_rmap_fragments()
|
| /linux-6.15/kernel/ |
| H A D | workqueue.c | 1680 if (list_empty(&pwq->pool->worklist)) in __pwq_activate_work() 1682 move_linked_works(work, &pwq->pool->worklist, NULL); in __pwq_activate_work() 2337 if (list_empty(&pool->worklist)) in __queue_work() 3024 list_for_each_entry(work, &pool->worklist, entry) in pool_mayday_timeout() 3396 list_first_entry(&pool->worklist, in worker_thread() 3575 list_first_entry(&pool->worklist, in bh_worker() 4771 INIT_LIST_HEAD(&pool->worklist); in init_worker_pool() 4939 WARN_ON(!list_empty(&pool->worklist))) in put_unbound_pool() 6270 list_for_each_entry(work, &pool->worklist, entry) { in show_pwq() 6364 if (!list_empty(&pool->worklist)) in show_one_worker_pool() [all …]
|
| /linux-6.15/Documentation/core-api/ |
| H A D | workqueue.rst | 112 and appended on the shared worklist of the worker-pool. For example, 114 be queued on the worklist of either normal or highpri worker-pool that
|