index
:
starfive-tech/linux.git
JH7100_VisionFive_OH_dev
JH7110_VisionFive2_510_devel
JH7110_VisionFive2_6.1.y_devel
JH7110_VisionFive2_6.6.y_devel
JH7110_VisionFive2_devel
JH7110_VisionFive2_upstream
beaglev-5.13.y
beaglev_fedora_devel
buildroot-upstream
esmil_starlight
fedora-vic-7100_5.10.6
master
openwrt-6.1.y
rt-ethercat-release
rt-linux-6.6.y-release
rt-linux-release
rtthread_AMP
starfive-5.13
starfive-5.15-dubhe
starfive-6.1-dubhe
starfive-6.1.65-dubhe
starfive-6.6.10-dubhe
starfive-6.6.31-dubhe
starfive-6.6.48-dubhe
starlight-5.14.y
visionfive
visionfive-5.13.y-devel
visionfive-5.15.y
visionfive-5.15.y-devel
visionfive-5.15.y_fedora_devel
visionfive-5.16.y
visionfive-5.17.y
visionfive-5.18.y
visionfive-5.19.y
visionfive-6.4.y
visionfive_fedora_devel
StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)
Andrey V.Kosteltsev
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
kernel
/
workqueue.c
Age
Commit message (
Expand
)
Author
Files
Lines
2013-01-24
workqueue: rename nr_running variables
Tejun Heo
1
-4
/
+5
2013-01-24
workqueue: remove global_cwq
Tejun Heo
1
-29
/
+17
2013-01-24
workqueue: remove worker_pool->gcwq
Tejun Heo
1
-7
/
+5
2013-01-24
workqueue: replace for_each_worker_pool() with for_each_std_worker_pool()
Tejun Heo
1
-22
/
+17
2013-01-24
workqueue: make freezing/thawing per-pool
Tejun Heo
1
-26
/
+20
2013-01-24
workqueue: make hotplug processing per-pool
Tejun Heo
1
-87
/
+62
2013-01-24
workqueue: move global_cwq->lock to worker_pool
Tejun Heo
1
-162
/
+154
2013-01-24
workqueue: move global_cwq->cpu to worker_pool
Tejun Heo
1
-21
/
+21
2013-01-24
workqueue: move busy_hash from global_cwq to worker_pool
Tejun Heo
1
-52
/
+59
2013-01-24
workqueue: record pool ID instead of CPU in work->data when off-queue
Tejun Heo
1
-44
/
+67
2013-01-24
workqueue: add worker_pool->id
Tejun Heo
1
-0
/
+21
2013-01-24
workqueue: introduce WORK_OFFQ_CPU_NONE
Tejun Heo
1
-2
/
+2
2013-01-24
workqueue: make GCWQ_FREEZING a pool flag
Tejun Heo
1
-13
/
+15
2013-01-24
workqueue: make GCWQ_DISASSOCIATED a pool flag
Tejun Heo
1
-31
/
+35
2013-01-24
workqueue: use std_ prefix for the standard per-cpu pools
Tejun Heo
1
-11
/
+11
2013-01-24
workqueue: unexport work_cpu()
Tejun Heo
1
-2
/
+2
2013-01-19
workqueue: move struct worker definition to workqueue_internal.h
Tejun Heo
1
-31
/
+1
2013-01-19
workqueue: rename kernel/workqueue_sched.h to kernel/workqueue_internal.h
Tejun Heo
1
-1
/
+1
2013-01-18
workqueue: set PF_WQ_WORKER on rescuers
Tejun Heo
1
-7
/
+28
2012-12-19
workqueue: fix find_worker_executing_work() brekage from hashtable conversion
Tejun Heo
1
-1
/
+1
2012-12-18
workqueue: consider work function when searching for busy work items
Tejun Heo
1
-8
/
+31
2012-12-18
workqueue: use new hashtable implementation
Sasha Levin
1
-71
/
+15
2012-12-12
Merge branch 'for-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Linus Torvalds
1
-2
/
+4
2012-12-04
workqueue: convert BUG_ON()s in __queue_delayed_work() to WARN_ON_ONCE()s
Tejun Heo
1
-2
/
+2
2012-12-02
workqueue: add WARN_ON_ONCE() on CPU number to wq_worker_waking_up()
Joonsoo Kim
1
-1
/
+3
2012-12-02
workqueue: trivial fix for return statement in work_busy()
Joonsoo Kim
1
-1
/
+1
2012-12-02
workqueue: mod_delayed_work_on() shouldn't queue timer on 0 delay
Tejun Heo
1
-3
/
+11
2012-12-02
workqueue: exit rescuer_thread() as TASK_RUNNING
Mike Galbraith
1
-1
/
+3
2012-10-24
workqueue: cancel_delayed_work() should return %false if work item is idle
Dan Magenheimer
1
-1
/
+1
2012-10-02
Merge branch 'for-3.7' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
Linus Torvalds
1
-578
/
+639
2012-09-20
workqueue: remove spurious WARN_ON_ONCE(in_irq()) from try_to_grab_pending()
Tejun Heo
1
-2
/
+0
2012-09-19
workqueue: use cwq_set_max_active() helper for workqueue_set_max_active()
Lai Jiangshan
1
-1
/
+1
2012-09-19
workqueue: introduce cwq_set_max_active() helper for thaw_workqueues()
Lai Jiangshan
1
-5
/
+21
2012-09-19
workqueue: reimplement work_on_cpu() using system_wq
Tejun Heo
1
-17
/
+8
2012-09-18
workqueue: remove @delayed from cwq_dec_nr_in_flight()
Lai Jiangshan
1
-13
/
+8
2012-09-18
workqueue: fix possible stall on try_to_grab_pending() of a delayed work item
Lai Jiangshan
1
-3
/
+22
2012-09-18
workqueue: use hotcpu_notifier() for workqueue_cpu_down_callback()
Lai Jiangshan
1
-1
/
+1
2012-09-18
workqueue: use __cpuinit instead of __devinit for cpu callbacks
Lai Jiangshan
1
-2
/
+2
2012-09-18
workqueue: rename manager_mutex to assoc_mutex
Lai Jiangshan
1
-19
/
+19
2012-09-18
workqueue: WORKER_REBIND is no longer necessary for idle rebinding
Lai Jiangshan
1
-26
/
+15
2012-09-18
workqueue: WORKER_REBIND is no longer necessary for busy rebinding
Lai Jiangshan
1
-16
/
+2
2012-09-18
workqueue: reimplement idle worker rebinding
Lai Jiangshan
1
-99
/
+42
2012-09-18
Merge branch 'for-3.6-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git...
Tejun Heo
1
-23
/
+99
2012-09-18
workqueue: always clear WORKER_REBIND in busy_worker_rebind_fn()
Lai Jiangshan
1
-2
/
+10
2012-09-10
workqueue: fix possible idle worker depletion across CPU hotplug
Lai Jiangshan
1
-1
/
+36
2012-09-10
workqueue: restore POOL_MANAGING_WORKERS
Lai Jiangshan
1
-1
/
+4
2012-09-06
workqueue: fix possible deadlock in idle worker rebinding
Tejun Heo
1
-2
/
+27
2012-09-06
workqueue: move WORKER_REBIND clearing in rebind_workers() to the end of the ...
Tejun Heo
1
-13
/
+13
2012-09-05
workqueue: UNBOUND -> REBIND morphing in rebind_workers() should be atomic
Lai Jiangshan
1
-6
/
+11
2012-08-22
workqueue: reimplement cancel_delayed_work() using try_to_grab_pending()
Tejun Heo
1
-0
/
+30
[next]