aboutsummaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
AgeCommit message (Expand)AuthorFilesLines
2 daysMerge branch 'for-6.10' into test-merge-for-6.10Gravatar Tejun Heo 1-178/+275
4 daysMerge tag 'sched-core-2024-05-13' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 1-1/+1
2024-04-24workqueue: Fix divide error in wq_update_node_max_active()Gravatar Lai Jiangshan 1-0/+9
2024-04-23workqueue: The default node_nr_active should have its max set to max_activeGravatar Tejun Heo 1-1/+1
2024-04-23workqueue: Fix selection of wake_cpu in kick_pool()Gravatar Sven Schnelle 1-2/+6
2024-04-08workqueue: Add destroy_work_on_stack() in workqueue_softirq_dead()Gravatar Zqiang 1-0/+1
2024-03-25workqueue: Cleanup subsys attribute registrationGravatar Dan Williams 1-32/+17
2024-03-25workqueue: Use list_last_entry() to get the last idle workerGravatar Lai Jiangshan 1-2/+2
2024-03-25workqueue: Move attrs->cpumask out of worker_pool's properties when attrs->af...Gravatar Lai Jiangshan 1-5/+8
2024-03-25workqueue: Use INIT_WORK_ONSTACK in workqueue_softirq_dead()Gravatar Lai Jiangshan 1-1/+1
2024-03-25workqueue: Allow cancel_work_sync() and disable_work() from atomic contexts o...Gravatar Tejun Heo 1-19/+55
2024-03-25workqueue: Remember whether a work item was on a BH workqueueGravatar Tejun Heo 1-2/+8
2024-03-25workqueue: Remove WORK_OFFQ_CANCELINGGravatar Tejun Heo 1-121/+19
2024-03-25workqueue: Implement disable/enable for (delayed) work itemsGravatar Tejun Heo 1-10/+167
2024-03-25workqueue: Preserve OFFQ bits in cancel[_sync] pathsGravatar Tejun Heo 1-20/+31
2024-03-25Merge tag 'v6.9-rc1' into sched/core, to pick up fixes and to refresh the branchGravatar Ingo Molnar 1-1/+1
2024-03-21Merge tag 'driver-core-6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/...Gravatar Linus Torvalds 1-1/+1
2024-03-12sched/balancing: Rename scheduler_tick() => sched_tick()Gravatar Ingo Molnar 1-1/+1
2024-03-11Merge tag 'timers-core-2024-03-10' of git://git.kernel.org/pub/scm/linux/kern...Gravatar Linus Torvalds 1-1/+1
2024-02-29workqueue: Drain BH work items on hot-unplugged CPUsGravatar Tejun Heo 1-3/+88
2024-02-22workqueue: Control intensive warning threshold through cmdlineGravatar Xuewen Yan 1-3/+11
2024-02-22workqueue: Use global variant for add_timer()Gravatar Anna-Maria Behnsen 1-1/+1
2024-02-20workqueue: Make @flags handling consistent across set_work_data() and friendsGravatar Tejun Heo 1-16/+16
2024-02-20workqueue: Remove clear_work_data()Gravatar Tejun Heo 1-16/+8
2024-02-20workqueue: Factor out work_grab_pending() from __cancel_work_sync()Gravatar Tejun Heo 1-52/+80
2024-02-20workqueue: Clean up enum work_bits and related constantsGravatar Tejun Heo 1-4/+4
2024-02-20workqueue: Introduce work_cancel_flagsGravatar Tejun Heo 1-12/+17
2024-02-20workqueue: Use variable name irq_flags for saving local irq flagsGravatar Tejun Heo 1-38/+38
2024-02-20workqueue: Reorganize flush and cancel[_sync] functionsGravatar Tejun Heo 1-68/+68
2024-02-20workqueue: Rename __cancel_work_timer() to __cancel_timer_sync()Gravatar Tejun Heo 1-3/+3
2024-02-20workqueue: Use rcu_read_lock_any_held() instead of rcu_read_lock_held()Gravatar Tejun Heo 1-2/+2
2024-02-20workqueue: Cosmetic changesGravatar Tejun Heo 1-16/+14
2024-02-19Merge 6.8-rc5 into driver-core-nextGravatar Greg Kroah-Hartman 1-6/+2
2024-02-16workqueue, irq_work: Build fix for !CONFIG_IRQ_WORKGravatar Tejun Heo 1-9/+15
2024-02-14workqueue: Fix queue_work_on() with BH workqueuesGravatar Tejun Heo 1-5/+36
2024-02-09workqueue: Implement workqueue_set_min_active()Gravatar Tejun Heo 1-0/+27
2024-02-09workqueue: Fix kernel-doc comment of unplug_oldest_pwq()Gravatar Waiman Long 1-7/+10
2024-02-08workqueue: Bind unbound workqueue rescuer to wq_unbound_cpumaskGravatar Waiman Long 1-1/+1
2024-02-08kernel/workqueue: Let rescuers follow unbound wq cpumask changesGravatar Juri Lelli 1-0/+5
2024-02-08workqueue: Enable unbound cpumask update on ordered workqueuesGravatar Waiman Long 1-10/+59
2024-02-08workqueue: Link pwq's into wq->pwqs from oldest to newestGravatar Waiman Long 1-1/+1
2024-02-08workqueue: make wq_subsys constGravatar Ricardo B. Marliere 1-1/+1
2024-02-05Merge branch 'for-6.8-fixes' into for-6.9Gravatar Tejun Heo 1-6/+2
2024-02-05Revert "workqueue: Override implicit ordered attribute in workqueue_apply_unb...Gravatar Tejun Heo 1-6/+2
2024-02-05workqueue: Don't implicitly make UNBOUND workqueues w/ @max_active==1 orderedGravatar Tejun Heo 1-18/+4
2024-02-05workqueue: Skip __WQ_DESTROYING workqueues when updating global unbound cpumaskGravatar Waiman Long 1-1/+1
2024-02-05workqueue: fix a typo in commentGravatar Wang Jinchao 1-1/+1
2024-02-05Revert "workqueue: make wq_subsys const"Gravatar Tejun Heo 1-1/+1
2024-02-04workqueue: Implement BH workqueues to eventually replace taskletsGravatar Tejun Heo 1-53/+238
2024-02-04workqueue: Factor out init_cpu_worker_pool()Gravatar Tejun Heo 1-14/+18