linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] workqueue: reimplement work_on_cpu() using system_wq
@ 2012-09-18 19:57 Tejun Heo
  2012-09-19 11:32 ` Jiri Kosina
  0 siblings, 1 reply; 2+ messages in thread
From: Tejun Heo @ 2012-09-18 19:57 UTC (permalink / raw)
  To: linux-kernel
  Cc: Linus Torvalds, Jiri Kosina, Bjorn Helgaas, Len Brown, Rafael J. Wysocki

>From 760824d48d8a1f302b80367681ada19836d93521 Mon Sep 17 00:00:00 2001
From: Tejun Heo <tj@kernel.org>
Date: Tue, 18 Sep 2012 12:48:43 -0700

The existing work_on_cpu() implementation is hugely inefficient.  It
creates a new kthread, execute that single function and then let the
kthread die on each invocation.

Now that system_wq can handle concurrent executions, there's no
advantage of doing this.  Reimplement work_on_cpu() using system_wq
which makes it simpler and way more efficient.

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Len Brown <lenb@kernel.org>
Cc: Rafael J. Wysocki <rjw@sisk.pl>
---
Applying to wq/for-3.7.

Thanks.

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

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 3e324aa..737ab01 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -3624,18 +3624,17 @@ static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
 #ifdef CONFIG_SMP
 
 struct work_for_cpu {
-	struct completion completion;
+	struct work_struct work;
 	long (*fn)(void *);
 	void *arg;
 	long ret;
 };
 
-static int do_work_for_cpu(void *_wfc)
+static void work_for_cpu_fn(struct work_struct *work)
 {
-	struct work_for_cpu *wfc = _wfc;
+	struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
+
 	wfc->ret = wfc->fn(wfc->arg);
-	complete(&wfc->completion);
-	return 0;
 }
 
 /**
@@ -3650,19 +3649,11 @@ static int do_work_for_cpu(void *_wfc)
  */
 long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
 {
-	struct task_struct *sub_thread;
-	struct work_for_cpu wfc = {
-		.completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
-		.fn = fn,
-		.arg = arg,
-	};
+	struct work_for_cpu wfc = { .fn = fn, .arg = arg };
 
-	sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
-	if (IS_ERR(sub_thread))
-		return PTR_ERR(sub_thread);
-	kthread_bind(sub_thread, cpu);
-	wake_up_process(sub_thread);
-	wait_for_completion(&wfc.completion);
+	INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
+	schedule_work_on(cpu, &wfc.work);
+	flush_work(&wfc.work);
 	return wfc.ret;
 }
 EXPORT_SYMBOL_GPL(work_on_cpu);
-- 
1.7.7.3


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

* Re: [PATCH] workqueue: reimplement work_on_cpu() using system_wq
  2012-09-18 19:57 [PATCH] workqueue: reimplement work_on_cpu() using system_wq Tejun Heo
@ 2012-09-19 11:32 ` Jiri Kosina
  0 siblings, 0 replies; 2+ messages in thread
From: Jiri Kosina @ 2012-09-19 11:32 UTC (permalink / raw)
  To: Tejun Heo
  Cc: linux-kernel, Linus Torvalds, Bjorn Helgaas, Len Brown,
	Rafael J. Wysocki

On Tue, 18 Sep 2012, Tejun Heo wrote:

> >From 760824d48d8a1f302b80367681ada19836d93521 Mon Sep 17 00:00:00 2001
> From: Tejun Heo <tj@kernel.org>
> Date: Tue, 18 Sep 2012 12:48:43 -0700
> 
> The existing work_on_cpu() implementation is hugely inefficient.  It
> creates a new kthread, execute that single function and then let the
> kthread die on each invocation.
> 
> Now that system_wq can handle concurrent executions, there's no
> advantage of doing this.  Reimplement work_on_cpu() using system_wq
> which makes it simpler and way more efficient.

Makes sense. I have tested that after dropping your conversion of APM 
on_cpu0() and using this one instead, everything works.

> Signed-off-by: Tejun Heo <tj@kernel.org>
> Cc: Linus Torvalds <torvalds@linux-foundation.org>
> Cc: Jiri Kosina <jkosina@suse.cz>

Acked-by: Jiri Kosina <jkosina@suse.cz>

> Cc: Bjorn Helgaas <bhelgaas@google.com>
> Cc: Len Brown <lenb@kernel.org>
> Cc: Rafael J. Wysocki <rjw@sisk.pl>
> ---
> Applying to wq/for-3.7.
> 
> Thanks.
> 
>  kernel/workqueue.c |   25 ++++++++-----------------
>  1 files changed, 8 insertions(+), 17 deletions(-)
> 
> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
> index 3e324aa..737ab01 100644
> --- a/kernel/workqueue.c
> +++ b/kernel/workqueue.c
> @@ -3624,18 +3624,17 @@ static int __cpuinit workqueue_cpu_down_callback(struct notifier_block *nfb,
>  #ifdef CONFIG_SMP
>  
>  struct work_for_cpu {
> -	struct completion completion;
> +	struct work_struct work;
>  	long (*fn)(void *);
>  	void *arg;
>  	long ret;
>  };
>  
> -static int do_work_for_cpu(void *_wfc)
> +static void work_for_cpu_fn(struct work_struct *work)
>  {
> -	struct work_for_cpu *wfc = _wfc;
> +	struct work_for_cpu *wfc = container_of(work, struct work_for_cpu, work);
> +
>  	wfc->ret = wfc->fn(wfc->arg);
> -	complete(&wfc->completion);
> -	return 0;
>  }
>  
>  /**
> @@ -3650,19 +3649,11 @@ static int do_work_for_cpu(void *_wfc)
>   */
>  long work_on_cpu(unsigned int cpu, long (*fn)(void *), void *arg)
>  {
> -	struct task_struct *sub_thread;
> -	struct work_for_cpu wfc = {
> -		.completion = COMPLETION_INITIALIZER_ONSTACK(wfc.completion),
> -		.fn = fn,
> -		.arg = arg,
> -	};
> +	struct work_for_cpu wfc = { .fn = fn, .arg = arg };
>  
> -	sub_thread = kthread_create(do_work_for_cpu, &wfc, "work_for_cpu");
> -	if (IS_ERR(sub_thread))
> -		return PTR_ERR(sub_thread);
> -	kthread_bind(sub_thread, cpu);
> -	wake_up_process(sub_thread);
> -	wait_for_completion(&wfc.completion);
> +	INIT_WORK_ONSTACK(&wfc.work, work_for_cpu_fn);
> +	schedule_work_on(cpu, &wfc.work);
> +	flush_work(&wfc.work);
>  	return wfc.ret;
>  }
>  EXPORT_SYMBOL_GPL(work_on_cpu);
> -- 
> 1.7.7.3
> 

-- 
Jiri Kosina
SUSE Labs

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

end of thread, other threads:[~2012-09-19 11:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-18 19:57 [PATCH] workqueue: reimplement work_on_cpu() using system_wq Tejun Heo
2012-09-19 11:32 ` Jiri Kosina

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).