aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2013-04-01workqueue: fix memory leak in apply_workqueue_attrs()Tejun Heo1-3/+8
2013-04-01workqueue: fix unbound workqueue attrs hashing / comparisonTejun Heo1-32/+22
2013-04-01workqueue: fix race condition in unbound workqueue free pathTejun Heo1-1/+3
2013-03-25workqueue: remove pwq_lock which is no longer usedLai Jiangshan1-11/+2
2013-03-25workqueue: protect wq->saved_max_active with wq->mutexLai Jiangshan1-17/+16
2013-03-25workqueue: protect wq->pwqs and iteration with wq->mutexLai Jiangshan1-24/+18
2013-03-25workqueue: protect wq->nr_drainers and ->flags with wq->mutexLai Jiangshan1-6/+6
2013-03-25workqueue: rename wq->flush_mutex to wq->mutexLai Jiangshan1-26/+26
2013-03-25workqueue: rename wq_mutex to wq_pool_mutexLai Jiangshan1-54/+55
2013-03-20workqueue: avoid false negative in assert_manager_or_pool_lock()Lai Jiangshan1-1/+2
2013-03-20workqueue: use rcu_read_lock_sched() instead for accessing pwq in RCULai Jiangshan1-5/+5
2013-03-20workqueue: kick a worker in pwq_adjust_max_active()Lai Jiangshan1-7/+6
2013-03-20workqueue: simplify current_is_workqueue_rescuer()Lai Jiangshan1-1/+1
2013-03-20workqueue: add missing POOL_FREEZINGLai Jiangshan1-0/+3
2013-03-19workqueue: restore CPU affinity of unbound workers on CPU_ONLINETejun Heo1-5/+47
2013-03-19workqueue: directly restore CPU affinity of workers from CPU_ONLINETejun Heo1-128/+64
2013-03-19workqueue: relocate rebind_workers()Tejun Heo1-71/+71
2013-03-19workqueue: convert worker_pool->worker_ida to idr and implement for_each_pool_worker()Tejun Heo1-12/+51
2013-03-19sched: replace PF_THREAD_BOUND with PF_NO_SETAFFINITYTejun Heo1-7/+3
2013-03-18Merge branch 'for-3.9-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-19/+25
2013-03-13workqueue: rename workqueue_lock to wq_mayday_lockTejun Heo1-12/+12
2013-03-13workqueue: separate out pool_workqueue locking into pwq_lockTejun Heo1-33/+36
2013-03-13workqueue: separate out pool and workqueue locking into wq_mutexTejun Heo1-69/+77
2013-03-13workqueue: relocate global variable defs and function decls in workqueue.cTejun Heo1-19/+19
2013-03-13workqueue: better define locking rules around worker creation / destructionTejun Heo1-1/+12
2013-03-13workqueue: factor out initial worker creation into create_and_start_worker()Tejun Heo1-24/+23
2013-03-13workqueue: rename worker_pool->assoc_mutex to ->manager_mutexTejun Heo1-24/+38
2013-03-13workqueue: inline trivial wrappersTejun Heo1-111/+0
2013-03-13workqueue: rename @id to @pi in for_each_each_pool()Tejun Heo1-8/+8
2013-03-13workqueue: update comments and a warning messageTejun Heo1-40/+44
2013-03-13workqueue: fix max_active handling in init_and_link_pwq()Tejun Heo1-5/+9
2013-03-13workqueue: implement and use pwq_adjust_max_active()Tejun Heo1-45/+38
2013-03-13workqueue: relocate pwq_set_max_active()Tejun Heo1-20/+20
2013-03-13workqueue: convert to idr_alloc()Tejun Heo1-3/+4
2013-03-12workqueue: implement current_is_workqueue_rescuer()Tejun Heo1-0/+13
2013-03-12workqueue: implement sysfs interface for workqueuesTejun Heo1-0/+288
2013-03-12workqueue: reject adjusting max_active or applying attrs to ordered workqueuesTejun Heo1-0/+9
2013-03-12workqueue: make it clear that WQ_DRAINING is an internal flagTejun Heo1-4/+4
2013-03-12workqueue: implement apply_workqueue_attrs()Tejun Heo1-20/+71
2013-03-12workqueue: perform non-reentrancy test when queueing to unbound workqueues tooTejun Heo1-23/+19
2013-03-12workqueue: prepare flush_workqueue() for dynamic creation and destrucion of unbound pool_workqueuesTejun Heo1-2/+23
2013-03-12workqueue: implement get/put_pwq()Tejun Heo1-23/+114
2013-03-12workqueue: restructure __alloc_workqueue_key()Tejun Heo1-29/+38
2013-03-12workqueue: drop WQ_RESCUER and test workqueue->rescuer for NULL insteadTejun Heo1-12/+10
2013-03-12workqueue: add pool ID to the names of unbound kworkersTejun Heo1-1/+2
2013-03-12workqueue: drop "std" from cpu_std_worker_pools and for_each_std_worker_pool()Tejun Heo1-11/+11
2013-03-12workqueue: remove unbound_std_worker_pools[] and related helpersTejun Heo1-60/+6
2013-03-12workqueue: implement attribute-based unbound worker_pool managementTejun Heo1-13/+224
2013-03-12workqueue: introduce workqueue_attrsTejun Heo1-22/+81
2013-03-12workqueue: separate out init_worker_pool() from init_workqueues()Tejun Heo1-16/+21