aboutsummaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
AgeCommit message (Expand)AuthorFilesLines
2023-04-29Merge tag 'wq-for-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-13/+121
2023-03-23workqueue: Introduce show_freezable_workqueuesGravatar Jungseung Lee 1-2/+24
2023-03-17workqueue: Print backtraces from CPUs with hung CPU bound workqueuesGravatar Petr Mladek 1-0/+66
2023-03-17workqueue: Warn when a rescuer could not be createdGravatar Petr Mladek 1-1/+6
2023-03-17workqueue: Interrupted create_worker() is not a repeated eventGravatar Petr Mladek 1-2/+7
2023-03-17workqueue: Warn when a new worker could not be createdGravatar Petr Mladek 1-3/+11
2023-03-17workqueue: Fix hung time report of worker poolsGravatar Petr Mladek 1-3/+7
2023-03-17workqueue: Simplify a pr_warn() call in wq_select_unbound_cpu()Gravatar Ammar Faizi 1-4/+2
2023-03-17workqueue: move to use bus_get_dev_root()Gravatar Greg Kroah-Hartman 1-1/+7
2023-01-13workqueue: Fold rebind_worker() within rebind_workers()Gravatar Valentin Schneider 1-8/+5
2023-01-12workqueue: Unbind kworkers before sending them to exit()Gravatar Valentin Schneider 1-12/+60
2023-01-12workqueue: Don't hold any lock while rcuwait'ing for !POOL_MANAGER_ACTIVEGravatar Valentin Schneider 1-17/+19
2023-01-12workqueue: Convert the idle_timer to a timer + work_structGravatar Valentin Schneider 1-2/+50
2023-01-12workqueue: Factorize unbind/rebind_workers() logicGravatar Valentin Schneider 1-12/+21
2023-01-12workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutexGravatar Lai Jiangshan 1-25/+16
2023-01-06workqueue: Make show_pwq() use run-length encodingGravatar Paul E. McKenney 1-5/+39
2023-01-04workqueue: Add a new flag to spot the potential UAF errorGravatar Richard Clark 1-3/+12
2022-11-30workqueue: Make queue_rcu_work() use call_rcu_hurry()Gravatar Uladzislau Rezki 1-1/+1
2022-10-03Merge tag 'kcfi-v6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/ke...Gravatar Linus Torvalds 1-1/+1
2022-09-26treewide: Drop WARN_ON_FUNCTION_MISMATCHGravatar Sami Tolvanen 1-1/+1
2022-08-16workqueue: don't skip lockdep work dependency in cancel_work_sync()Gravatar Tetsuo Handa 1-4/+2
2022-08-03Merge tag 'drm-next-2022-08-03' of git://anongit.freedesktop.org/drm/drmGravatar Linus Torvalds 1-0/+9
2022-07-29workqueue: Avoid a false warning in unbind_workers()Gravatar Lai Jiangshan 1-1/+4
2022-07-12Merge tag 'amd-drm-next-5.20-2022-07-05' of https://gitlab.freedesktop.org/ag...Gravatar Dave Airlie 1-0/+9
2022-06-10Revert "workqueue: remove unused cancel_work()"Gravatar Andrey Grodzovsky 1-0/+9
2022-06-07workqueue: Wrap flush_workqueue() using a macroGravatar Tetsuo Handa 1-4/+12
2022-04-21workqueue: Restrict kworker in the offline CPU pool running on housekeeping CPUsGravatar Zqiang 1-1/+1
2022-03-23Merge branch 'for-5.18' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-38/+20
2022-02-16sched/isolation: Use single feature type while referring to housekeeping cpumaskGravatar Frederic Weisbecker 1-2/+2
2022-02-16workqueue: Decouple HK_FLAG_WQ and HK_FLAG_DOMAIN cpumask fetchGravatar Frederic Weisbecker 1-2/+2
2022-01-12workqueue: Convert the type of pool->nr_running to intGravatar Lai Jiangshan 1-13/+16
2022-01-12workqueue: Use wake_up_worker() in wq_worker_sleeping() instead of open codeGravatar Lai Jiangshan 1-6/+3
2022-01-12workqueue: Change the comments of the synchronization about the idle_listGravatar Lai Jiangshan 1-9/+2
2022-01-12workqueue: Remove the mb() pair between wq_worker_sleeping() and insert_work()Gravatar Lai Jiangshan 1-11/+0
2022-01-10Merge branch 'workqueue/for-5.16-fixes' into workqueue/for-5.17Gravatar Tejun Heo 1-1/+21
2021-12-09workqueue: Remove the cacheline_aligned for nr_runningGravatar Lai Jiangshan 1-8/+4
2021-12-09workqueue: Move the code of waking a worker up in unbind_workers()Gravatar Lai Jiangshan 1-23/+15
2021-12-09workqueue: Remove schedule() in unbind_workers()Gravatar Lai Jiangshan 1-8/+3
2021-12-09workqueue: Remove outdated comment about exceptional workers in unbind_workers()Gravatar Lai Jiangshan 1-3/+1
2021-12-09workqueue: Remove the advanced kicking of the idle workers in rebind_workers()Gravatar Lai Jiangshan 1-11/+0
2021-12-09workqueue: Remove the outdated comment before wq_worker_sleeping()Gravatar Lai Jiangshan 1-2/+1
2021-12-02workqueue: Fix unbind_workers() VS wq_worker_sleeping() raceGravatar Frederic Weisbecker 1-0/+10
2021-12-02workqueue: Fix unbind_workers() VS wq_worker_running() raceGravatar Frederic Weisbecker 1-0/+9
2021-12-01workqueue: Upgrade queue_work_on() commentGravatar Paul E. McKenney 1-1/+2
2021-11-06Merge branch 'akpm' (patches from Andrew)Gravatar Linus Torvalds 1-1/+1
2021-11-06workqueue, kasan: avoid alloc_pages() when recording stackGravatar Marco Elver 1-1/+1
2021-10-20workqueue: Introduce show_one_worker_pool and show_one_workqueue.Gravatar Imran Khan 1-76/+96
2021-10-19workqueue: make sysfs of unbound kworker cpumask more cleverGravatar Menglong Dong 1-4/+11
2021-10-11workqueue: fix state-dump console deadlockGravatar Johan Hovold 1-2/+16
2021-08-17workqueue: Assign a color to barrier work itemsGravatar Lai Jiangshan 1-8/+12