2013-09-09 05:14:15

by Li Bin

[permalink] [raw]
Subject: [PATCH] workqueue: fix comment typo for __queue_work()

From: Li Bin <[email protected]>

It seems the "dying" should be "draining" here.

Signed-off-by: Li Bin <[email protected]>
---
kernel/workqueue.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 987293d..e390f3a 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -1320,7 +1320,7 @@ static void __queue_work(int cpu, struct workqueue_struct *wq,

debug_work_activate(work);

- /* if dying, only works from the same workqueue are allowed */
+ /* if draining, only works from the same workqueue are allowed */
if (unlikely(wq->flags & __WQ_DRAINING) &&
WARN_ON_ONCE(!is_chained_work(wq)))
return;
--
1.8.2.1


2013-09-09 14:17:47

by Tejun Heo

[permalink] [raw]
Subject: Re: [PATCH] workqueue: fix comment typo for __queue_work()

On Mon, Sep 09, 2013 at 01:13:58PM +0800, Libin wrote:
> From: Li Bin <[email protected]>
>
> It seems the "dying" should be "draining" here.
>
> Signed-off-by: Li Bin <[email protected]>

Applied to wq/for-3.12-fixes.

Thanks.

--
tejun