aboutsummaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
AgeCommit message (Expand)AuthorFilesLines
10 daysConvert 'alloc_flex' family to use the new default GFP_KERNEL argumentLinus Torvalds1-1/+1
10 daysConvert 'alloc_obj' family to use the new default GFP_KERNEL argumentLinus Torvalds1-8/+8
11 daystreewide: Replace kmalloc with kmalloc_obj for non-scalar typesKees Cook1-9/+9
2026-02-11Merge tag 'wq-for-6.20' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-34/+115
2026-02-07workqueue: replace BUG_ON with panic in panic_on_wq_watchdogBreno Leitao1-2/+6
2026-02-07workqueue: add time-based panic for stallsBreno Leitao1-4/+18
2026-02-03workqueue: add CONFIG_BOOTPARAM_WQ_STALL_PANIC optionBreno Leitao1-1/+1
2026-02-03cpuset: Propagate cpuset isolation update to workqueue through housekeepingFrederic Weisbecker1-7/+10
2025-12-08workqueue: Process extra works in rescuer on memory pressureLai Jiangshan1-2/+29
2025-12-08workqueue: Process rescuer work items one-by-one using a cursorLai Jiangshan1-16/+59
2025-12-08workqueue: Make send_mayday() take a PWQ argument directlyLai Jiangshan1-10/+3
2025-11-21workqueue: Don't rely on wq->rescuer to stop rescuerLai Jiangshan1-12/+5
2025-11-21workqueue: Only assign rescuer work when really neededLai Jiangshan1-0/+4
2025-11-21workqueue: Factor out assign_rescuer_work()Lai Jiangshan1-11/+18
2025-11-20workqueue: Init rescuer's affinities as wq_unbound_cpumaskLai Jiangshan1-2/+5
2025-11-20workqueue: Let DISASSOCIATED workers follow unbound wq cpumask changesLai Jiangshan1-0/+13
2025-11-20workqueue: Update the rescuer's affinity only when it is detachedLai Jiangshan1-5/+5
2025-11-10workqueue: Remove unused assert_rcu_or_wq_mutex_or_pool_mutexzhang jiao1-6/+0
2025-09-16workqueue: WQ_PERCPU added to alloc_workqueue usersMarco Crivellari1-10/+10
2025-09-05workqueue: replace use of system_wq with system_percpu_wqMarco Crivellari1-1/+1
2025-09-05workqueue: replace use of system_unbound_wq with system_dfl_wqMarco Crivellari1-1/+1
2025-09-04workqueue: Provide a handshake for canceling BH workersSebastian Andrzej Siewior1-9/+41
2025-09-04workqueue: Remove rcu_read_lock/unlock() in wq_watchdog_timer_fn()Zqiang1-4/+0
2025-09-04workqueue: Remove redundant rcu_read_lock/unlock() in workqueue_congested()Zqiang1-2/+0
2025-07-31Merge tag 'wq-for-6.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-50/+24
2025-07-17workqueue: Use atomic_try_cmpxchg_relaxed() in tryinc_node_nr_active()Uros Bizjak1-8/+5
2025-06-23workqueue: Remove unused work_on_cpu_safeDr. David Alan Gilbert1-25/+0
2025-06-17workqueue: Initialize wq_isolated_cpumask in workqueue_init_early()Chuyi Zhou1-1/+2
2025-06-17Merge branch 'WQ_PERCPU' into for-6.17Tejun Heo1-4/+9
2025-06-17workqueue: Add system_percpu_wq and system_dfl_wqMarco Crivellari1-4/+9
2025-06-16workqueue: Basic memory allocation profiling supportKent Overstreet1-7/+7
2025-06-09workqueue: fix opencoded cpumask_next_and_wrap() in wq_select_unbound_cpu()Yury Norov [NVIDIA]1-6/+3
2025-06-08treewide, timers: Rename from_timer() to timer_container_of()Ingo Molnar1-3/+3
2025-05-27Merge tag 'wq-for-6.16' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-1/+14
2025-05-08treewide, timers: Rename destroy_timer_on_stack() as timer_destroy_on_stack()Ingo Molnar1-1/+1
2025-04-23workqueue: Fix race condition in wq->stats incrementationJiayuan Chen1-1/+3
2025-04-14workqueue: Better document teardown for delayed_workPhilipp Stanner1-0/+11
2025-04-05treewide: Switch/rename to timer_delete[_sync]()Thomas Gleixner1-7/+7
2025-02-26Merge tag 'wq-for-6.14-rc4-fixes' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-1/+3
2025-02-14Merge tag 'wq-for-6.14-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-6/+6
2025-02-14workqueue: Log additional details when rejecting workWill Deacon1-1/+3
2025-01-26Merge tag 'mm-stable-2025-01-26-14-59' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-1/+1
2025-01-24workqueue: Put the pwq after detaching the rescuer from the poolLai Jiangshan1-6/+6
2025-01-21Merge tag 'kthread-for-6.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-1/+1
2025-01-13kasan: make kasan_record_aux_stack_noalloc() the default behaviourPeter Zijlstra1-1/+1
2025-01-10workqueue: warn if delayed_work is queued to an offlined cpu.Imran Khan1-0/+7
2025-01-08treewide: Introduce kthread_run_worker[_on_cpu]()Frederic Weisbecker1-1/+1
2024-12-24workqueue: add printf attribute to __alloc_workqueue()Su Hui1-0/+1
2024-12-19workqueue: Do not warn when cancelling WQ_MEM_RECLAIM work from !WQ_MEM_RECLA...Tvrtko Ursulin1-9/+13
2024-11-15workqueue: Reduce expensive locks for unbound workqueueWangyang Guo1-4/+18