summaryrefslogtreecommitdiffstats
path: root/kernel/include/linux/kthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include/linux/kthread.h')
-rw-r--r--kernel/include/linux/kthread.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/include/linux/kthread.h b/kernel/include/linux/kthread.h
index 13d55206c..e691b6a23 100644
--- a/kernel/include/linux/kthread.h
+++ b/kernel/include/linux/kthread.h
@@ -11,7 +11,7 @@ struct task_struct *kthread_create_on_node(int (*threadfn)(void *data),
const char namefmt[], ...);
#define kthread_create(threadfn, data, namefmt, arg...) \
- kthread_create_on_node(threadfn, data, -1, namefmt, ##arg)
+ kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg)
struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
@@ -38,6 +38,7 @@ struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
})
void kthread_bind(struct task_struct *k, unsigned int cpu);
+void kthread_bind_mask(struct task_struct *k, const struct cpumask *mask);
int kthread_stop(struct task_struct *k);
bool kthread_should_stop(void);
bool kthread_should_park(void);