diff options
author | Yanfei Xu <yanfei.xu@windriver.com> | 2021-01-11 11:48:07 +0100 |
---|---|---|
committer | Christian Brauner <christian.brauner@ubuntu.com> | 2021-01-11 15:11:56 +0100 |
commit | cb5021ca622fe83923e0789f99fe7227cbcd3f68 (patch) | |
tree | 6ab4e8e7a4dcc13e03bee9da77667640dbd8c559 | |
parent | Kernel: fork.c: Fix coding style: Do not use {} around single-line statements (diff) | |
download | linux-cb5021ca622fe83923e0789f99fe7227cbcd3f68.tar.xz linux-cb5021ca622fe83923e0789f99fe7227cbcd3f68.zip |
kthread: remove comments about old _do_fork() helper
The old _do_fork() helper has been removed in favor of kernel_clone().
Here correct some comments which still contain _do_fork()
Link: https://lore.kernel.org/r/20210111104807.18022-1-yanfei.xu@windriver.com
Cc: christian@brauner.io
Cc: linux-kernel@vger.kernel.org
Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
Signed-off-by: Yanfei Xu <yanfei.xu@windriver.com>
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
-rw-r--r-- | include/trace/events/sched.h | 2 | ||||
-rw-r--r-- | kernel/kthread.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h index 5039af667645..cbe3e152d24c 100644 --- a/include/trace/events/sched.h +++ b/include/trace/events/sched.h @@ -366,7 +366,7 @@ TRACE_EVENT(sched_process_wait, ); /* - * Tracepoint for do_fork: + * Tracepoint for kernel_clone: */ TRACE_EVENT(sched_process_fork, diff --git a/kernel/kthread.c b/kernel/kthread.c index a5eceecd4513..fb9c3dcbb68d 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c @@ -294,7 +294,7 @@ static int kthread(void *_create) do_exit(ret); } -/* called from do_fork() to get node information for about to be created task */ +/* called from kernel_clone() to get node information for about to be created task */ int tsk_fork_get_node(struct task_struct *tsk) { #ifdef CONFIG_NUMA |