From: "J. Bruce Fields" <bfields@xxxxxxxxxx> This will also simplify a following patch that allows multiple kthreadd's. Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxx> --- init/init_task.c | 3 +++ kernel/fork.c | 4 ++++ kernel/kthread.c | 3 +-- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/init/init_task.c b/init/init_task.c index 5aebe3be4d7c..47e4829ec53f 100644 --- a/init/init_task.c +++ b/init/init_task.c @@ -153,6 +153,9 @@ struct task_struct init_task .vtime.starttime = 0, .vtime.state = VTIME_SYS, #endif +#ifdef CONFIG_NUMA + .pref_node_fork = NUMA_NO_NODE, +#endif #ifdef CONFIG_NUMA_BALANCING .numa_preferred_nid = -1, .numa_group = NULL, diff --git a/kernel/fork.c b/kernel/fork.c index b69248e6f0e0..c5b5629de2a9 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -912,6 +912,10 @@ static struct task_struct *dup_task_struct(struct task_struct *orig, int node) tsk->fail_nth = 0; #endif +#ifdef CONFIG_NUMA + tsk->pref_node_fork = NUMA_NO_NODE; +#endif + #ifdef CONFIG_BLK_CGROUP tsk->throttle_queue = NULL; tsk->use_memdelay = 0; diff --git a/kernel/kthread.c b/kernel/kthread.c index 672f0bbf4d89..4428fd586cd8 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c @@ -252,8 +252,7 @@ static int kthread(void *_create) int tsk_fork_get_node(struct task_struct *tsk) { #ifdef CONFIG_NUMA - if (tsk == kthreadd_task) - return tsk->pref_node_fork; + return tsk->pref_node_fork; #endif return NUMA_NO_NODE; } -- 2.20.1