summaryrefslogtreecommitdiff
path: root/include/linux/kthread.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-08-10 13:10:19 +0300
committerIngo Molnar <mingo@kernel.org>2017-08-10 13:10:19 +0300
commitfc33a8943efb25bc025750c7f4ea643fae526860 (patch)
treea3af3a1d5d83b7f9721405e79dc89bba1a6c27ad /include/linux/kthread.h
parentdbe04493eddfaa89756ec9af8dde56206290182a (diff)
parent8d31f80eb38819e4f2905ad21c0e8998382a08f7 (diff)
downloadlinux-fc33a8943efb25bc025750c7f4ea643fae526860.tar.xz
Merge branch 'linus' into sched/core, to pick up fixes
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux/kthread.h')
-rw-r--r--include/linux/kthread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/kthread.h b/include/linux/kthread.h
index 4fec8b775895..82e197eeac91 100644
--- a/include/linux/kthread.h
+++ b/include/linux/kthread.h
@@ -15,7 +15,7 @@ struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
* @threadfn: the function to run in the thread
* @data: data pointer for @threadfn()
* @namefmt: printf-style format string for the thread name
- * @...: arguments for @namefmt.
+ * @arg...: arguments for @namefmt.
*
* This macro will create a kthread on the current node, leaving it in
* the stopped state. This is just a helper for kthread_create_on_node();