linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2] workqueue: jumps to use_dfl_pwq if the target cpumask is equal wq's
@ 2014-04-16  5:33 Daeseok Youn
  2014-04-16 17:38 ` Tejun Heo
  0 siblings, 1 reply; 3+ messages in thread
From: Daeseok Youn @ 2014-04-16  5:33 UTC (permalink / raw)
  To: tj; +Cc: laijs, linux-kernel


Replace blocks of code which checks whether pwq is defalut with
jump to use_dfl_pwq. It is same as before.

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
---
 kernel/workqueue.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 3150b21..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);
-- 
1.7.4.4



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

* Re: [PATCH 2/2] workqueue: jumps to use_dfl_pwq if the target cpumask is equal wq's
  2014-04-16  5:33 [PATCH 2/2] workqueue: jumps to use_dfl_pwq if the target cpumask is equal wq's Daeseok Youn
@ 2014-04-16 17:38 ` Tejun Heo
  2014-04-16 23:26   ` DaeSeok Youn
  0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2014-04-16 17:38 UTC (permalink / raw)
  To: Daeseok Youn; +Cc: laijs, linux-kernel

Hello,

On Wed, Apr 16, 2014 at 02:33:27PM +0900, Daeseok Youn wrote:
> 
> Replace blocks of code which checks whether pwq is defalut with
> jump to use_dfl_pwq. It is same as before.

A better wording would be sth like

 wq_update_unbound_numa(), when it's decided that the newly updated
 cpumask equals the default, looks at whether the current pwq is
 already the default one and skips setting pwq to the default one.
 This extra step is unnecessary and we can always jump to use_dfl_pwq
 instead.  Simplify the code by removing the conditional.  This
 doesn't make any functional difference.

> Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
> ---
>  kernel/workqueue.c |    5 +----
>  1 files changed, 1 insertions(+), 4 deletions(-)
> 
> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
> index 3150b21..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;

As I said before, please update the comment above to match the new
code.

Thanks.

-- 
tejun

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

* Re: [PATCH 2/2] workqueue: jumps to use_dfl_pwq if the target cpumask is equal wq's
  2014-04-16 17:38 ` Tejun Heo
@ 2014-04-16 23:26   ` DaeSeok Youn
  0 siblings, 0 replies; 3+ messages in thread
From: DaeSeok Youn @ 2014-04-16 23:26 UTC (permalink / raw)
  To: Tejun Heo; +Cc: 赖江山, linux-kernel

Hi,

Ok. I will update the comment in the code and patch description.

Thanks for review.

Regards,
Daeseok Youn.

2014-04-17 2:38 GMT+09:00 Tejun Heo <tj@kernel.org>:
> Hello,
>
> On Wed, Apr 16, 2014 at 02:33:27PM +0900, Daeseok Youn wrote:
>>
>> Replace blocks of code which checks whether pwq is defalut with
>> jump to use_dfl_pwq. It is same as before.
>
> A better wording would be sth like
>
>  wq_update_unbound_numa(), when it's decided that the newly updated
>  cpumask equals the default, looks at whether the current pwq is
>  already the default one and skips setting pwq to the default one.
>  This extra step is unnecessary and we can always jump to use_dfl_pwq
>  instead.  Simplify the code by removing the conditional.  This
>  doesn't make any functional difference.
>
>> Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
>> ---
>>  kernel/workqueue.c |    5 +----
>>  1 files changed, 1 insertions(+), 4 deletions(-)
>>
>> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
>> index 3150b21..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;
>
> As I said before, please update the comment above to match the new
> code.
>
> Thanks.
>
> --
> tejun

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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-16  5:33 [PATCH 2/2] workqueue: jumps to use_dfl_pwq if the target cpumask is equal wq's Daeseok Youn
2014-04-16 17:38 ` Tejun Heo
2014-04-16 23:26   ` DaeSeok Youn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).