aboutsummaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
AgeCommit message (Expand)AuthorFilesLines
2024-02-05Revert "workqueue: Override implicit ordered attribute in workqueue_apply_unb...Gravatar Tejun Heo 1-6/+2
2023-11-22Merge branch 'for-6.7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...Gravatar Tejun Heo 1-6/+16
2023-11-22workqueue: Make sure that wq_unbound_cpumask is never emptyGravatar Tejun Heo 1-7/+15
2023-11-21workqueue: Move workqueue_set_unbound_cpumask() and its helpers inside CONFIG...Gravatar Waiman Long 1-51/+51
2023-11-12workqueue: Add workqueue_unbound_exclude_cpumask() to exclude CPUs from wq_un...Gravatar Waiman Long 1-8/+83
2023-11-02Merge tag 'mm-nonmm-stable-2023-11-02-14-08' of git://git.kernel.org/pub/scm/...Gravatar Linus Torvalds 1-8/+8
2023-10-18treewide: mark stuff as __ro_after_initGravatar Alexey Dobriyan 1-8/+8
2023-10-17workqueue: Provide one lock class key per work_on_cpu() callsiteGravatar Frederic Weisbecker 1-8/+12
2023-10-12workqueue: fix -Wformat-truncation in create_workerGravatar Lucy Mielke 1-1/+1
2023-10-12workqueue: Override implicit ordered attribute in workqueue_apply_unbound_cpu...Gravatar Waiman Long 1-2/+6
2023-10-12workqueue: Use the kmem_cache_free() instead of kfree() to release pwqGravatar Zqiang 1-2/+6
2023-10-04workqueue: Fix UAF report by KASAN in pwq_release_workfn()Gravatar Zqiang 1-0/+6
2023-09-18workqueue: Fix missed pwq_release_worker creation in wq_cpu_intensive_thresh_...Gravatar Zqiang 1-3/+3
2023-09-18workqueue: Removed double allocation of wq_update_pod_attrs_bufGravatar Steven Rostedt (Google) 1-3/+0
2023-08-29workqueue: fix data race with the pwq->stats[] incrementGravatar Mirsad Goran Todorovac 1-1/+1
2023-08-14workqueue: Rename rescuer kworkerGravatar Aaron Tomlin 1-1/+1
2023-08-07workqueue: Make default affinity_scope dynamically updatableGravatar Tejun Heo 1-6/+39
2023-08-07workqueue: Implement non-strict affinity scope for unbound workqueuesGravatar Tejun Heo 1-2/+72
2023-08-07workqueue: Add workqueue_attrs->__pod_cpumaskGravatar Tejun Heo 1-37/+37
2023-08-07workqueue: Factor out need_more_worker() check and worker wake-upGravatar Tejun Heo 1-50/+37
2023-08-07workqueue: Factor out work to worker assignment and collision handlingGravatar Tejun Heo 1-28/+52
2023-08-07workqueue: Add multiple affinity scopes and interface to select themGravatar Tejun Heo 1-5/+105
2023-08-07workqueue: Modularize wq_pod_type initializationGravatar Tejun Heo 1-34/+50
2023-08-07workqueue: Generalize unbound CPU podsGravatar Tejun Heo 1-61/+110
2023-08-07workqueue: Factor out clearing of workqueue-only attrs fieldsGravatar Tejun Heo 1-6/+14
2023-08-07workqueue: Factor out actual cpumask calculation to reduce subtlety in wq_upd...Gravatar Tejun Heo 1-20/+29
2023-08-07workqueue: Initialize unbound CPU pods later in the bootGravatar Tejun Heo 1-27/+41
2023-08-07workqueue: Move wq_pod_init() below workqueue_init()Gravatar Tejun Heo 1-38/+40
2023-08-07workqueue: Rename NUMA related names to use pod insteadGravatar Tejun Heo 1-85/+76
2023-08-07workqueue: Rename workqueue_attrs->no_numa to ->orderedGravatar Tejun Heo 1-10/+9
2023-08-07workqueue: Make unbound workqueues to use per-cpu pool_workqueuesGravatar Tejun Heo 1-141/+77
2023-08-07workqueue: Call wq_update_unbound_numa() on all CPUs in NUMA node on CPU hotplugGravatar Tejun Heo 1-9/+25
2023-08-07workqueue: Make per-cpu pool_workqueues allocated and released like unbound onesGravatar Tejun Heo 1-34/+40
2023-08-07workqueue: Use a kthread_worker to release pool_workqueuesGravatar Tejun Heo 1-17/+23
2023-08-07workqueue: Remove module param disable_numa and sysfs knobs pool_ids and numaGravatar Tejun Heo 1-73/+0
2023-08-07workqueue: Relocate worker and work management functionsGravatar Tejun Heo 1-172/+168
2023-08-07workqueue: Rename wq->cpu_pwqs to wq->cpu_pwqGravatar Tejun Heo 1-7/+7
2023-08-07workqueue: Not all work insertion needs to wake up a workerGravatar Tejun Heo 1-19/+19
2023-08-07workqueue: Cleanups around process_scheduled_works()Gravatar Tejun Heo 1-18/+11
2023-08-07workqueue: Drop the special locking rule for worker->flags and worker_pool->f...Gravatar Tejun Heo 1-14/+3
2023-08-07workqueue: Merge branch 'for-6.5-fixes' into for-6.6Gravatar Tejun Heo 1-1/+42
2023-08-07workqueue: use LIST_HEAD to initialize cull_listGravatar Yang Yingliang 1-5/+2
2023-07-25workqueue: Scale up wq_cpu_intensive_thresh_us if BogoMIPS is below 4000Gravatar Tejun Heo 1-1/+42
2023-07-10workqueue: add cmdline parameter `workqueue.unbound_cpus` to further constrai...Gravatar tiozhang 1-0/+17
2023-07-10workqueue: Warn attempt to flush system-wide workqueues.Gravatar Tetsuo Handa 1-6/+5
2023-06-27Merge tag 'wq-for-6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-64/+258
2023-06-23workqueue: clean up WORK_* constant types, clarify maskingGravatar Linus Torvalds 1-5/+8
2023-05-25workqueue: Disable per-cpu CPU hog detection when wq_cpu_intensive_thresh_us ...Gravatar Zqiang 1-0/+3
2023-05-24workqueue: Fix WARN_ON_ONCE() triggers in worker_enter_idle()Gravatar Zqiang 1-5/+12
2023-05-17workqueue: Track and monitor per-workqueue CPU time usageGravatar Tejun Heo 1-0/+3