aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-08-30watchdog: Mark watchdog touch functions as notraceVincent Whitchurch1-1/+1
2018-08-24Merge branch 'for-4.19' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-15/+30
2018-08-22workqueue: re-add lockdep dependencies for flushingJohannes Berg1-0/+8
2018-08-22workqueue: skip lockdep wq dependency in cancel_work_sync()Johannes Berg1-15/+22
2018-06-12treewide: kzalloc() -> kcalloc()Kees Cook1-1/+1
2018-06-10Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiLinus Torvalds1-0/+1
2018-06-06Merge tag 'overflow-v4.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxLinus Torvalds1-2/+1
2018-06-06treewide: Use struct_size() for kmalloc()-familyKees Cook1-2/+1
2018-05-23workqueue: move function definitions within CONFIG_SMP blockMathieu Malaterre1-2/+2
2018-05-21workqueue: Make sure struct worker is accessible for wq_worker_comm()Tejun Heo1-24/+34
2018-05-18workqueue: Show the latest workqueue name in /proc/PID/{comm,stat,status}Tejun Heo1-0/+39
2018-05-18workqueue: Set worker->desc to workqueue name by defaultTejun Heo1-11/+10
2018-05-18workqueue: Make worker_attach/detach_pool() update worker->poolTejun Heo1-8/+8
2018-05-18workqueue: Replace pool->attach_mutex with global wq_pool_attach_mutexTejun Heo1-21/+20
2018-05-18scsi: zfcp: workqueue: set description for port work items with their WWPN as contextSteffen Maier1-0/+1
2018-04-03Merge branch 'for-4.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-4/+56
2018-03-20workqueue: remove the comment about the old manager_arb mutexLai Jiangshan1-1/+0
2018-03-20workqueue: fix the comments of nr_idleLai Jiangshan1-3/+2
2018-03-20Merge branch 'linus' into sched/core, to pick up fixesIngo Molnar1-9/+1
2018-03-19RCU, workqueue: Implement rcu_workTejun Heo1-0/+54
2018-03-13workqueue: remove unused cancel_work()Stephen Hemminger1-8/+0
2018-03-13workqueue: use put_device() instead of kfree()Arvind Yadav1-1/+1
2018-03-09Merge branch 'linus' into sched/core, to pick up fixesIngo Molnar1-0/+16
2018-02-22Merge tag 'drm-misc-fixes-2018-02-21' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixesDave Airlie1-0/+16
2018-02-21sched/isolation: Isolate workqueues when "nohz_full=" is setFrederic Weisbecker1-1/+2
2018-02-16workqueue: Allow retrieval of current task's work structLukas Wunner1-0/+16
2018-02-01Merge tag 'staging-4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/stagingLinus Torvalds1-0/+1
2018-01-30Merge branch 'for-4.16' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-24/+40
2018-01-30Merge branch 'core-rcu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-1/+1
2018-01-15staging: lustre: lnet: convert selftest to use workqueuesNeilBrown1-0/+1
2018-01-12workqueue: avoid hard lockups in show_workqueue_state()Sergey Senozhatsky1-0/+13
2018-01-08workqueue: allow WQ_MEM_RECLAIM on early init workqueuesTejun Heo1-2/+8
2018-01-08workqueue: separate out init_rescuer()Tejun Heo1-23/+33
2018-01-03Merge branch 'for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into core/rcuIngo Molnar1-1/+1
2017-12-11workqueue: remove unneeded kallsyms includeSergey Senozhatsky1-1/+0
2017-12-04workqueue/hotplug: remove the workaround in rebind_workers()Lai Jiangshan1-10/+0
2017-12-04workqueue/hotplug: simplify workqueue_offline_cpu()Lai Jiangshan1-9/+6
2017-12-04workqueue: Eliminate cond_resched_rcu_qs() in favor of cond_resched()Paul E. McKenney1-1/+1
2017-11-27workqueue: respect isolated cpus when queueing an unbound workTal Shorer1-1/+6
2017-11-21treewide: Remove TIMER_FUNC_TYPE and TIMER_DATA_TYPE castsKees Cook1-1/+1
2017-11-15Merge branch 'for-4.15' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-1/+2
2017-11-13Merge branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tipLinus Torvalds1-17/+12
2017-11-08workqueue: Use lockdep to assert IRQs are disabled/enabledFrederic Weisbecker1-1/+1
2017-11-07Merge branch 'linus' into locking/core, to resolve conflictsIngo Molnar1-22/+15
2017-11-06workqueue: Fix comment for unbound workqueue's attrbutesWang Long1-1/+2
2017-11-03Revert "workqueue: respect isolated cpus when queueing an unbound work"Tejun Heo1-5/+1
2017-10-25workqueue: Remove now redundant lock acquisitions wrt. workqueue flushesByungchul Park1-16/+3
2017-10-25locking/atomics, workqueue: Convert ACCESS_ONCE() to READ_ONCE()/WRITE_ONCE()Mark Rutland1-2/+2
2017-10-21workqueue: respect isolated cpus when queueing an unbound workTal Shorer1-1/+5
2017-10-18workqueue: Convert timers to use timer_setup() (part 2)Kees Cook1-8/+6