From: Anton Blanchard Date: Tue, 9 Feb 2010 04:07:40 +0000 (+1100) Subject: kthread, sched: Remove reference to kthread_create_on_cpu X-Git-Tag: v2.6.34-rc1~260^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=301ba0457f1ed853fc08e57785f8c87fe7e49c68;p=karo-tx-linux.git 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 Acked-by: Rusty Russell Cc: Peter Zijlstra LKML-Reference: <20100209040740.GB3702@kryten> Signed-off-by: Ingo Molnar --- diff --git a/kernel/kthread.c b/kernel/kthread.c index fbb6222fe7e0..82ed0ea15194 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