public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH V3] workqueue: fix double unlock bug
@ 2014-04-14 23:17 Daeseok Youn
  2014-04-15  3:33 ` Lai Jiangshan
  2014-04-15 14:43 ` Tejun Heo
  0 siblings, 2 replies; 4+ messages in thread
From: Daeseok Youn @ 2014-04-14 23:17 UTC (permalink / raw)
  To: tj, laijs; +Cc: linux-kernel


Use default pwq when alloc_unbound_pwq() is failed.

And remove "if" condition for whether "pwq" is same as "wq->dfl_pwq"
when wq_calc_node_cpumask() returns false and just use "goto use_dfl_pwq"

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
---
V2: replace "if condition" with "goto" as Lai's comment.
V3: Use default pwq when alloc_unbound_pwq() is failed.

 kernel/workqueue.c |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 0ee63af..0679854 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -4087,10 +4087,7 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
 		if (cpumask_equal(cpumask, pwq->pool->attrs->cpumask))
 			goto out_unlock;
 	} else {
-		if (pwq == wq->dfl_pwq)
-			goto out_unlock;
-		else
-			goto use_dfl_pwq;
+		goto use_dfl_pwq;
 	}
 
 	mutex_unlock(&wq->mutex);
@@ -4100,7 +4097,8 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
 	if (!pwq) {
 		pr_warning("workqueue: allocation failed while updating NUMA affinity of \"%s\"\n",
 			   wq->name);
-		goto out_unlock;
+		mutex_lock(&wq->mutex);
+		goto use_dfl_pwq;
 	}
 
 	/*
-- 
1.7.4.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH V3] workqueue: fix double unlock bug
  2014-04-14 23:17 [PATCH V3] workqueue: fix double unlock bug Daeseok Youn
@ 2014-04-15  3:33 ` Lai Jiangshan
  2014-04-15 14:43 ` Tejun Heo
  1 sibling, 0 replies; 4+ messages in thread
From: Lai Jiangshan @ 2014-04-15  3:33 UTC (permalink / raw)
  To: Daeseok Youn; +Cc: tj, linux-kernel

Hi, Tejun

Acked-by: Lai Jiangshan <laijs@cn.fujitsu.com>
CC: stable@kernel.org

Thanks,
Lai

On 04/15/2014 07:17 AM, Daeseok Youn wrote:
> 
> Use default pwq when alloc_unbound_pwq() is failed.
> 
> And remove "if" condition for whether "pwq" is same as "wq->dfl_pwq"
> when wq_calc_node_cpumask() returns false and just use "goto use_dfl_pwq"
> 
> Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
> ---
> V2: replace "if condition" with "goto" as Lai's comment.
> V3: Use default pwq when alloc_unbound_pwq() is failed.
> 
>  kernel/workqueue.c |    8 +++-----
>  1 files changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
> index 0ee63af..0679854 100644
> --- a/kernel/workqueue.c
> +++ b/kernel/workqueue.c
> @@ -4087,10 +4087,7 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
>  		if (cpumask_equal(cpumask, pwq->pool->attrs->cpumask))
>  			goto out_unlock;
>  	} else {
> -		if (pwq == wq->dfl_pwq)
> -			goto out_unlock;
> -		else
> -			goto use_dfl_pwq;
> +		goto use_dfl_pwq;
>  	}
>  
>  	mutex_unlock(&wq->mutex);
> @@ -4100,7 +4097,8 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
>  	if (!pwq) {
>  		pr_warning("workqueue: allocation failed while updating NUMA affinity of \"%s\"\n",
>  			   wq->name);
> -		goto out_unlock;
> +		mutex_lock(&wq->mutex);
> +		goto use_dfl_pwq;
>  	}
>  
>  	/*


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V3] workqueue: fix double unlock bug
  2014-04-14 23:17 [PATCH V3] workqueue: fix double unlock bug Daeseok Youn
  2014-04-15  3:33 ` Lai Jiangshan
@ 2014-04-15 14:43 ` Tejun Heo
  2014-04-15 23:01   ` DaeSeok Youn
  1 sibling, 1 reply; 4+ messages in thread
From: Tejun Heo @ 2014-04-15 14:43 UTC (permalink / raw)
  To: Daeseok Youn; +Cc: laijs, linux-kernel

On Tue, Apr 15, 2014 at 08:17:43AM +0900, Daeseok Youn wrote:
> 
> Use default pwq when alloc_unbound_pwq() is failed.
> 
> And remove "if" condition for whether "pwq" is same as "wq->dfl_pwq"
> when wq_calc_node_cpumask() returns false and just use "goto use_dfl_pwq"
> 
> Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>

This is an awfully inadequate patch description.  Can you change it to
something like the following?

  workqueue: fix bugs in wq_update_unbound_numa() failure path

  wq_update_unbound_numa() failure path has the following two bugs.

  * alloc_unbound_pwq() is called without holding wq->mutex; however, if
    the allocation fails, it jumps to out_unlock which tries to unlock
    wq->mutex.

  * The function should switch to dfl_pwq on failure but didn't do so
    after alloc_unbound_pwq() failure.

  Fix it by regrabbing wq->mutex and jumping to use_dfl_pwq on
  alloc_unbound_pwq() failure.
      

> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
> index 0ee63af..0679854 100644
> --- a/kernel/workqueue.c
> +++ b/kernel/workqueue.c
> @@ -4087,10 +4087,7 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
>  		if (cpumask_equal(cpumask, pwq->pool->attrs->cpumask))
>  			goto out_unlock;
>  	} else {
> -		if (pwq == wq->dfl_pwq)
> -			goto out_unlock;
> -		else
> -			goto use_dfl_pwq;
> +		goto use_dfl_pwq;

And please put this in a separate patch.  Patches which are to be
backported through -stable should be minimal.  Also, please update the
comment above to reflect the change.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V3] workqueue: fix double unlock bug
  2014-04-15 14:43 ` Tejun Heo
@ 2014-04-15 23:01   ` DaeSeok Youn
  0 siblings, 0 replies; 4+ messages in thread
From: DaeSeok Youn @ 2014-04-15 23:01 UTC (permalink / raw)
  To: Tejun Heo; +Cc: 赖江山, linux-kernel

Hi, Tejun.

2014-04-15 23:43 GMT+09:00 Tejun Heo <tj@kernel.org>:
> On Tue, Apr 15, 2014 at 08:17:43AM +0900, Daeseok Youn wrote:
>>
>> Use default pwq when alloc_unbound_pwq() is failed.
>>
>> And remove "if" condition for whether "pwq" is same as "wq->dfl_pwq"
>> when wq_calc_node_cpumask() returns false and just use "goto use_dfl_pwq"
>>
>> Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
>
> This is an awfully inadequate patch description.  Can you change it to
> something like the following?
OK. I will change the patch description as your comment.

>
>   workqueue: fix bugs in wq_update_unbound_numa() failure path
>
>   wq_update_unbound_numa() failure path has the following two bugs.
>
>   * alloc_unbound_pwq() is called without holding wq->mutex; however, if
>     the allocation fails, it jumps to out_unlock which tries to unlock
>     wq->mutex.
>
>   * The function should switch to dfl_pwq on failure but didn't do so
>     after alloc_unbound_pwq() failure.
>
>   Fix it by regrabbing wq->mutex and jumping to use_dfl_pwq on
>   alloc_unbound_pwq() failure.
>
>
>> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
>> index 0ee63af..0679854 100644
>> --- a/kernel/workqueue.c
>> +++ b/kernel/workqueue.c
>> @@ -4087,10 +4087,7 @@ static void wq_update_unbound_numa(struct workqueue_struct *wq, int cpu,
>>               if (cpumask_equal(cpumask, pwq->pool->attrs->cpumask))
>>                       goto out_unlock;
>>       } else {
>> -             if (pwq == wq->dfl_pwq)
>> -                     goto out_unlock;
>> -             else
>> -                     goto use_dfl_pwq;
>> +             goto use_dfl_pwq;
>
> And please put this in a separate patch.  Patches which are to be
> backported through -stable should be minimal.  Also, please update the
> comment above to reflect the change.
Yes, I will do.

Thanks for review.

Regards,
Daeseok Youn.
>
> Thanks.
>
> --
> tejun

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-04-15 23:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-14 23:17 [PATCH V3] workqueue: fix double unlock bug Daeseok Youn
2014-04-15  3:33 ` Lai Jiangshan
2014-04-15 14:43 ` Tejun Heo
2014-04-15 23:01   ` DaeSeok Youn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox