public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Remove reference to kthread_create_on_cpu
@ 2010-02-09  4:07 Anton Blanchard
  2010-02-09  5:34 ` Rusty Russell
  2010-02-09 10:52 ` [tip:sched/core] kthread, sched: " tip-bot for Anton Blanchard
  0 siblings, 2 replies; 4+ messages in thread
From: Anton Blanchard @ 2010-02-09  4:07 UTC (permalink / raw)
  To: Rusty Russell, Andrew Morton, Ingo Molnar; +Cc: linux-kernel


kthread_create_on_cpu doesn't exist so update a comment in kthread.c to
reflect this.

Signed-off-by: Anton Blanchard <anton@samba.org>
---

Index: linux.trees.git/kernel/kthread.c
===================================================================
--- linux.trees.git.orig/kernel/kthread.c	2010-01-12 12:26:56.000000000 +1100
+++ linux.trees.git/kernel/kthread.c	2010-02-09 15:05:59.000000000 +1100
@@ -101,7 +101,7 @@ static void create_kthread(struct kthrea
  *
  * Description: This helper function creates and names a kernel
  * thread.  The thread will be stopped: use wake_up_process() to start
- * it.  See also kthread_run(), kthread_create_on_cpu().
+ * it.  See also kthread_run().
  *
  * When woken, the thread will run @threadfn() with @data as its
  * argument. @threadfn() can either call do_exit() directly if it is a

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

* Re: [PATCH] Remove reference to kthread_create_on_cpu
  2010-02-09  4:07 [PATCH] Remove reference to kthread_create_on_cpu Anton Blanchard
@ 2010-02-09  5:34 ` Rusty Russell
  2010-02-09 10:23   ` Jiri Kosina
  2010-02-09 10:52 ` [tip:sched/core] kthread, sched: " tip-bot for Anton Blanchard
  1 sibling, 1 reply; 4+ messages in thread
From: Rusty Russell @ 2010-02-09  5:34 UTC (permalink / raw)
  To: Anton Blanchard; +Cc: Andrew Morton, Ingo Molnar, linux-kernel, trivial

On Tue, 9 Feb 2010 02:37:40 pm Anton Blanchard wrote:
> 
> kthread_create_on_cpu doesn't exist so update a comment in kthread.c to
> reflect this.
> 
> Signed-off-by: Anton Blanchard <anton@samba.org>

Acked-by: Rusty Russell <rusty@rustcorp.com.au>

Thanks!
Rusty.

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

* Re: [PATCH] Remove reference to kthread_create_on_cpu
  2010-02-09  5:34 ` Rusty Russell
@ 2010-02-09 10:23   ` Jiri Kosina
  0 siblings, 0 replies; 4+ messages in thread
From: Jiri Kosina @ 2010-02-09 10:23 UTC (permalink / raw)
  To: Rusty Russell; +Cc: Anton Blanchard, Andrew Morton, Ingo Molnar, linux-kernel

On Tue, 9 Feb 2010, Rusty Russell wrote:

> > kthread_create_on_cpu doesn't exist so update a comment in kthread.c to
> > reflect this.
> > 
> > Signed-off-by: Anton Blanchard <anton@samba.org>
> 
> Acked-by: Rusty Russell <rusty@rustcorp.com.au>

Applied, thanks.

-- 
Jiri Kosina
SUSE Labs, Novell Inc.

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

* [tip:sched/core] kthread, sched: Remove reference to kthread_create_on_cpu
  2010-02-09  4:07 [PATCH] Remove reference to kthread_create_on_cpu Anton Blanchard
  2010-02-09  5:34 ` Rusty Russell
@ 2010-02-09 10:52 ` tip-bot for Anton Blanchard
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Anton Blanchard @ 2010-02-09 10:52 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, anton, hpa, mingo, a.p.zijlstra, rusty, tglx, mingo

Commit-ID:  301ba0457f1ed853fc08e57785f8c87fe7e49c68
Gitweb:     http://git.kernel.org/tip/301ba0457f1ed853fc08e57785f8c87fe7e49c68
Author:     Anton Blanchard <anton@samba.org>
AuthorDate: Tue, 9 Feb 2010 15:07:40 +1100
Committer:  Ingo Molnar <mingo@elte.hu>
CommitDate: Tue, 9 Feb 2010 11:47:39 +0100

kthread, sched: Remove reference to kthread_create_on_cpu

kthread_create_on_cpu doesn't exist so update a comment in
kthread.c to reflect this.

Signed-off-by: Anton Blanchard <anton@samba.org>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <20100209040740.GB3702@kryten>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
 kernel/kthread.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/kthread.c b/kernel/kthread.c
index fbb6222..82ed0ea 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -101,7 +101,7 @@ static void create_kthread(struct kthread_create_info *create)
  *
  * Description: This helper function creates and names a kernel
  * thread.  The thread will be stopped: use wake_up_process() to start
- * it.  See also kthread_run(), kthread_create_on_cpu().
+ * it.  See also kthread_run().
  *
  * When woken, the thread will run @threadfn() with @data as its
  * argument. @threadfn() can either call do_exit() directly if it is a

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

end of thread, other threads:[~2010-02-09 10:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-09  4:07 [PATCH] Remove reference to kthread_create_on_cpu Anton Blanchard
2010-02-09  5:34 ` Rusty Russell
2010-02-09 10:23   ` Jiri Kosina
2010-02-09 10:52 ` [tip:sched/core] kthread, sched: " tip-bot for Anton Blanchard

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