Searched refs:worklist (Results 1 – 4 of 4) sorted by relevance
| /linux/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 192 def DoRunWork(worklist, nr_jobs, verbosity): argument 193 nr_to_do = len(worklist) 194 not_started = list(worklist) 243 for w in worklist: [all …]
|
| /linux/fs/xfs/scrub/ |
| H A D | refcount.c | 166 struct list_head worklist; in xchk_refcountbt_process_rmap_fragments() local 187 INIT_LIST_HEAD(&worklist); in xchk_refcountbt_process_rmap_fragments() 209 list_move_tail(&frag->list, &worklist); in xchk_refcountbt_process_rmap_fragments() 224 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_refcountbt_process_rmap_fragments() 241 list_move_tail(&frag->list, &worklist); in xchk_refcountbt_process_rmap_fragments() 272 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_refcountbt_process_rmap_fragments()
|
| H A D | rtrefcount.c | 180 struct list_head worklist; in xchk_rtrefcountbt_process_rmap_fragments() local 201 INIT_LIST_HEAD(&worklist); in xchk_rtrefcountbt_process_rmap_fragments() 223 list_move_tail(&frag->list, &worklist); in xchk_rtrefcountbt_process_rmap_fragments() 238 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_rtrefcountbt_process_rmap_fragments() 255 list_move_tail(&frag->list, &worklist); in xchk_rtrefcountbt_process_rmap_fragments() 286 list_for_each_entry_safe(frag, n, &worklist, list) { in xchk_rtrefcountbt_process_rmap_fragments()
|
| /linux/kernel/ |
| H A D | workqueue.c | 204 struct list_head worklist; /* L: list of pending works */ member 937 return !list_empty(&pool->worklist) && !pool->nr_running; in need_more_worker() 949 return !list_empty(&pool->worklist) && (pool->nr_running <= 1); in keep_working() 1288 struct work_struct *work = list_first_entry(&pool->worklist, in kick_pool() 1699 if (list_empty(&pwq->pool->worklist)) in __pwq_activate_work() 1701 move_linked_works(work, &pwq->pool->worklist, NULL); in __pwq_activate_work() 2127 move_linked_works(work, &pwq->pool->worklist, NULL); in try_to_grab_pending() 2350 if (list_empty(&pool->worklist)) in __queue_work() 2354 insert_work(pwq, work, &pool->worklist, work_flags); in __queue_work() 3036 list_for_each_entry(work, &pool->worklist, entry) in pool_mayday_timeout() [all …]
|