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