summaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
AgeCommit message (Expand)AuthorFilesLines
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
2024-09-18Merge tag 'wq-for-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-25/+82
2024-09-11workqueue: Clear worker->pool in the worker thread contextLai Jiangshan1-2/+6
2024-09-11kernel/workqueue.c: fix DEFINE_PER_CPU_SHARED_ALIGNED expansionBaoquan He1-6/+3
2024-08-21workqueue: fix null-ptr-deref on __alloc_workqueue() errorSergey Senozhatsky1-0/+3
2024-08-20workqueue: Don't call va_start / va_end twiceMatthew Brost1-5/+1
2024-08-13workqueue: Add interface for user-defined workqueue lockdep mapMatthew Brost1-0/+28
2024-08-13workqueue: Change workqueue lockdep map to pointerMatthew Brost1-7/+9
2024-08-13workqueue: Split alloc_workqueue into internal function and lockdep initMatthew Brost1-8/+23
2024-08-06workqueue: add cmdline parameter workqueue.panic_on_stallSangmoon Kim1-0/+16
2024-08-05workqueue: Correct declaration of cpu_pwq in struct workqueue_structUros Bizjak1-1/+1
2024-08-05workqueue: Fix spruious data race in __flush_work()Tejun Heo1-20/+25
2024-08-05workqueue: Remove incorrect "WARN_ON_ONCE(!list_empty(&worker->entry));" from...Lai Jiangshan1-1/+0
2024-08-05workqueue: Fix UBSAN 'subtraction overflow' error in shift_and_mask()Will Deacon1-1/+1
2024-07-15workqueue: Remove unneeded lockdep_assert_cpus_held()Lai Jiangshan1-10/+2
2024-07-15Merge tag 'wq-for-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-189/+157
2024-07-14workqueue: Always queue work items to the newest PWQ for order workqueuesLai Jiangshan1-1/+5
2024-07-11workqueue: Rename wq_update_pod() to unbound_wq_update_pwq()Lai Jiangshan1-17/+15
2024-07-11workqueue: Remove the arguments @hotplug_cpu and @online from wq_update_pod()Lai Jiangshan1-8/+5
2024-07-11workqueue: Remove the argument @cpu_going_down from wq_calc_pod_cpumask()Lai Jiangshan1-8/+4
2024-07-11workqueue: Remove the unneeded cpumask empty check in wq_calc_pod_cpumask()Lai Jiangshan1-4/+0
2024-07-11workqueue: Remove cpus_read_lock() from apply_wqattrs_lock()Lai Jiangshan1-3/+0
2024-07-11workqueue: Simplify wq_calc_pod_cpumask() with wq_online_cpumaskLai Jiangshan1-9/+3
2024-07-11workqueue: Add wq_online_cpumaskLai Jiangshan1-0/+10
2024-07-05workqueue: Init rescuer's affinities as the wq's effective cpumaskLai Jiangshan1-4/+8
2024-07-05workqueue: Put PWQ allocation and WQ enlistment in the same lock C.S.Lai Jiangshan1-26/+28
2024-07-05workqueue: Move kthread_flush_worker() out of alloc_and_link_pwqs()Lai Jiangshan1-7/+8
2024-07-05workqueue: Make rescuer initialization as the last step of the creation of a ...Lai Jiangshan1-3/+3
2024-07-05workqueue: Register sysfs after the whole creation of the new wqLai Jiangshan1-3/+3
2024-07-02workqueue: Simplify goto statementLai Jiangshan1-8/+3
2024-07-02workqueue: Update cpumasks after only applying it successfullyLai Jiangshan1-4/+6
2024-06-25workqueue: Improve scalability of workqueue watchdog touchNicholas Piggin1-2/+8
2024-06-25workqueue: wq_watchdog_touch is always called with valid CPUNicholas Piggin1-0/+2
2024-06-21workqueue: Remove useless pool->dying_workersLai Jiangshan1-3/+0
2024-06-21workqueue: Detach workers directly in idle_cull_fn()Lai Jiangshan1-26/+19
2024-06-21workqueue: Don't bind the rescuer in the last working cpuLai Jiangshan1-12/+12
2024-06-21workqueue: Reap workers via kthread_stop() and remove detach_completionLai Jiangshan1-16/+19
2024-06-19workqueue: Avoid nr_active manipulation in grabbing inactive itemsLai Jiangshan1-33/+9