aboutsummaryrefslogtreecommitdiff
path: root/kernel/workqueue.c
AgeCommit message (Expand)AuthorFilesLines
2011-09-14workqueue: lock cwq access in drain_workqueueGravatar Thomas Tuttle 1-1/+6
2011-07-22Merge branch 'for-3.1' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-28/+53
2011-05-24Merge branch 'for-2.6.40' of git://git.kernel.org/pub/scm/linux/kernel/git/tj...Gravatar Linus Torvalds 1-3/+1
2011-05-20workqueue: separate out drain_workqueue() from destroy_workqueue()Gravatar Tejun Heo 1-28/+53
2011-04-29workqueue: fix deadlock in worker_maybe_bind_and_lock()Gravatar Tejun Heo 1-1/+7
2011-03-24percpu: Always align percpu output section to PAGE_SIZEGravatar Tejun Heo 1-3/+1
2011-03-22kthread: use kthread_create_on_node()Gravatar Eric Dumazet 1-2/+4
2011-03-16Merge branch 'for-2.6.39' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-1/+5
2011-03-08debugobjects: Add hint for better object identificationGravatar Stanislaw Gruszka 1-0/+6
2011-02-21workqueue: fix build failure introduced by s/freezeable/freezable/Gravatar Tejun Heo 1-5/+5
2011-02-21Merge branch 'master' into for-2.6.39Gravatar Tejun Heo 1-13/+24
2011-02-16workqueue: make sure MAYDAY_INITIAL_TIMEOUT is at least 2 jiffies longGravatar Tejun Heo 1-1/+3
2011-02-16workqueue, freezer: unify spelling of 'freeze' + 'able' to 'freezable'Gravatar Tejun Heo 1-12/+12
2011-02-14workqueue: wake up a worker when a rescuer is leaving a gcwqGravatar Tejun Heo 1-0/+9
2011-02-09workqueue: add system_freezeable_wqGravatar Tejun Heo 1-1/+5
2011-01-11workqueue: note the nested NOT_RUNNING test in worker_clr_flags() isn't a noopGravatar Tejun Heo 1-1/+5
2011-01-11workqueue: relax lockdep annotation on flush_work()Gravatar Tejun Heo 1-2/+12
2010-12-20workqueue: allow chained queueing during destructionGravatar Tejun Heo 1-1/+59
2010-12-14workqueue: It is likely that WORKER_NOT_RUNNING is trueGravatar Steven Rostedt 1-2/+2
2010-11-26workqueue: check the allocation of system_unbound_wqGravatar Hitoshi Mitake 1-1/+2
2010-10-26workqueues: s/ON_STACK/ONSTACK/Gravatar Andrew Morton 1-1/+1
2010-10-25MN10300: Fix the PERCPU() alignment to allow for workqueuesGravatar David Howells 1-1/+3
2010-10-19workqueue: remove in_workqueue_context()Gravatar Tejun Heo 1-15/+0
2010-10-19workqueue: Clarify that schedule_on_each_cpu is synchronousGravatar Tejun Heo 1-4/+6
2010-10-11workqueue: add and use WQ_MEM_RECLAIM flagGravatar Tejun Heo 1-0/+7
2010-10-11workqueue: fix HIGHPRI handling in keep_working()Gravatar Tejun Heo 1-1/+3
2010-10-05workqueue: add queue_work and activate_work trace pointsGravatar Tejun Heo 1-0/+3
2010-10-05workqueue: prepare for more tracepointsGravatar Tejun Heo 1-3/+3
2010-09-19workqueue: implement flush[_delayed]_work_sync()Gravatar Tejun Heo 1-0/+56
2010-09-19workqueue: factor out start_flush_work()Gravatar Tejun Heo 1-27/+37
2010-09-19workqueue: cleanup flush/cancel functionsGravatar Tejun Heo 1-81/+94
2010-09-13workqueue: add documentationGravatar Tejun Heo 1-10/+17
2010-09-07Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-15/+38
2010-08-31workqueue: use zalloc_cpumask_var() for gcwq->mayday_maskGravatar Tejun Heo 1-1/+1
2010-08-31workqueue: fix GCWQ_DISASSOCIATED initializationGravatar Tejun Heo 1-2/+3
2010-08-25workqueue: fix cwq->nr_active underflowGravatar Tejun Heo 1-10/+20
2010-08-24workqueue: improve destroy_workqueue() debuggabilityGravatar Tejun Heo 1-1/+6
2010-08-23workqueue: mark lock acquisition on worker_maybe_bind_and_lock()Gravatar Namhyung Kim 1-0/+1
2010-08-23workqueue: annotate lock context changeGravatar Namhyung Kim 1-0/+6
2010-08-21workqueue: Add basic tracepoints to track workqueue executionGravatar Arjan van de Ven 1-0/+9
2010-08-16workqueue: free rescuer on destroy_workqueueGravatar Xiaotian Feng 1-1/+1
2010-08-09workqueue: workqueue_cpu_callback() should be cpu_notifier instead of hotcpu_...Gravatar Tejun Heo 1-1/+1
2010-08-08workqueue: add missing __percpu markup in kernel/workqueue.cGravatar Namhyung Kim 1-1/+1
2010-08-07Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wqGravatar Linus Torvalds 1-405/+2755
2010-08-01workqueue: mark init_workqueues() as early_initcall()Gravatar Suresh Siddha 1-1/+3
2010-08-01workqueue: explain for_each_*cwq_cpu() iteratorsGravatar Tejun Heo 1-0/+13
2010-07-22workqueue: fix how cpu number is stored in work->dataGravatar Tejun Heo 1-23/+13
2010-07-20workqueue: fix mayday_mask handling on UPGravatar Tejun Heo 1-7/+28
2010-07-20workqueue: fix build problem on !CONFIG_SMPGravatar Tejun Heo 1-4/+14
2010-07-14workqueue: fix locking in retry path of maybe_create_worker()Gravatar Tejun Heo 1-5/+3