aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/workqueue.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2012-12-12Merge branch 'for-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-2/+4
2012-12-04workqueue: convert BUG_ON()s in __queue_delayed_work() to WARN_ON_ONCE()sTejun Heo1-2/+2
2012-12-01workqueue: add WARN_ON_ONCE() on CPU number to wq_worker_waking_up()Joonsoo Kim1-1/+3
2012-12-01workqueue: trivial fix for return statement in work_busy()Joonsoo Kim1-1/+1
2012-12-01workqueue: mod_delayed_work_on() shouldn't queue timer on 0 delayTejun Heo1-3/+11
2012-12-01workqueue: exit rescuer_thread() as TASK_RUNNINGMike Galbraith1-1/+3
2012-10-24workqueue: cancel_delayed_work() should return %false if work item is idleDan Magenheimer1-1/+1
2012-10-02Merge branch 'for-3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqLinus Torvalds1-578/+639
2012-09-20workqueue: remove spurious WARN_ON_ONCE(in_irq()) from try_to_grab_pending()Tejun Heo1-2/+0
2012-09-19workqueue: use cwq_set_max_active() helper for workqueue_set_max_active()Lai Jiangshan1-1/+1
2012-09-19workqueue: introduce cwq_set_max_active() helper for thaw_workqueues()Lai Jiangshan1-5/+21
2012-09-19workqueue: reimplement work_on_cpu() using system_wqTejun Heo1-17/+8
2012-09-18workqueue: remove @delayed from cwq_dec_nr_in_flight()Lai Jiangshan1-13/+8
2012-09-18workqueue: fix possible stall on try_to_grab_pending() of a delayed work itemLai Jiangshan1-3/+22
2012-09-18workqueue: use hotcpu_notifier() for workqueue_cpu_down_callback()Lai Jiangshan1-1/+1
2012-09-18workqueue: use __cpuinit instead of __devinit for cpu callbacksLai Jiangshan1-2/+2
2012-09-18workqueue: rename manager_mutex to assoc_mutexLai Jiangshan1-19/+19
2012-09-18workqueue: WORKER_REBIND is no longer necessary for idle rebindingLai Jiangshan1-26/+15
2012-09-18workqueue: WORKER_REBIND is no longer necessary for busy rebindingLai Jiangshan1-16/+2
2012-09-18workqueue: reimplement idle worker rebindingLai Jiangshan1-99/+42
2012-09-17Merge branch 'for-3.6-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq into for-3.7Tejun Heo1-23/+99
2012-09-17workqueue: always clear WORKER_REBIND in busy_worker_rebind_fn()Lai Jiangshan1-2/+10
2012-09-10workqueue: fix possible idle worker depletion across CPU hotplugLai Jiangshan1-1/+36
2012-09-10workqueue: restore POOL_MANAGING_WORKERSLai Jiangshan1-1/+4
2012-09-05workqueue: fix possible deadlock in idle worker rebindingTejun Heo1-2/+27
2012-09-05workqueue: move WORKER_REBIND clearing in rebind_workers() to the end of the functionTejun Heo1-13/+13
2012-09-04workqueue: UNBOUND -> REBIND morphing in rebind_workers() should be atomicLai Jiangshan1-6/+11
2012-08-21workqueue: reimplement cancel_delayed_work() using try_to_grab_pending()Tejun Heo1-0/+30
2012-08-21workqueue: use irqsafe timer for delayed_workTejun Heo1-9/+11
2012-08-20workqueue: gut system_nrt[_freezable]_wq()Tejun Heo1-9/+1
2012-08-20workqueue: gut flush[_delayed]_work_sync()Tejun Heo1-112/+10
2012-08-20workqueue: make all workqueues non-reentrantTejun Heo1-6/+7
2012-08-20workqueue: fix checkpatch issuesValentin Ilie1-16/+13
2012-08-16workqueue: use system_highpri_wq for unbind_workJoonsoo Kim1-1/+1
2012-08-16workqueue: use system_highpri_wq for highpri workers in rebind_workers()Joonsoo Kim1-4/+14
2012-08-16workqueue: introduce system_highpri_wqJoonsoo Kim1-3/+6
2012-08-16workqueue: change value of lcpu in __queue_delayed_work_on()Joonsoo Kim1-2/+8
2012-08-16workqueue: correct req_cpu in trace_workqueue_queue_work()Joonsoo Kim1-1/+2
2012-08-16workqueue: use enum value to set array size of pools in gcwqJoonsoo Kim1-1/+2
2012-08-13workqueue: add missing wmb() in clear_work_data()Tejun Heo1-7/+12
2012-08-13workqueue: fix CPU binding of flush_delayed_work[_sync]()Tejun Heo1-3/+4
2012-08-03workqueue: implement mod_delayed_work[_on]()Tejun Heo1-0/+53
2012-08-03workqueue: mark a work item being canceled as suchTejun Heo1-18/+72
2012-08-03workqueue: reorganize try_to_grab_pending() and __cancel_timer_work()Tejun Heo1-15/+32
2012-08-03workqueue: factor out __queue_delayed_work() from queue_delayed_work_on()Tejun Heo1-33/+41
2012-08-03workqueue: introduce WORK_OFFQ_FLAG_*Tejun Heo1-5/+9
2012-08-03workqueue: move try_to_grab_pending() upwardsTejun Heo1-143/+143
2012-08-03workqueue: fix zero @delay handling of queue_delayed_work_on()Tejun Heo1-5/+7
2012-08-03workqueue: unify local CPU queueing handlingTejun Heo1-12/+7
2012-08-03workqueue: set delayed_work->timer function on initializationTejun Heo1-3/+4