projects
/
kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a2b753
)
workqueue: fix comment typo for __queue_work()
author
Li Bin
<huawei.libin@huawei.com>
Mon, 9 Sep 2013 05:13:58 +0000
(13:13 +0800)
committer
Tejun Heo
<tj@kernel.org>
Fri, 22 Nov 2013 23:14:27 +0000
(18:14 -0500)
It seems the "dying" should be "draining" here.
Signed-off-by: Li Bin <huawei.libin@huawei.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c
patch
|
blob
|
history
diff --git
a/kernel/workqueue.c
b/kernel/workqueue.c
index bbb5e9832d85477e4189941226e2ea900958dd50..73bdf3c1f9b72eca5932c42a24a25ffe44c6b649 100644
(file)
--- a/
kernel/workqueue.c
+++ b/
kernel/workqueue.c
@@
-1323,7
+1323,7
@@
static void __queue_work(int cpu, struct workqueue_struct *wq,
debug_work_activate(work);
- /* if d
y
ing, only works from the same workqueue are allowed */
+ /* if d
rain
ing, only works from the same workqueue are allowed */
if (unlikely(wq->flags & __WQ_DRAINING) &&
WARN_ON_ONCE(!is_chained_work(wq)))
return;