diff options
Diffstat (limited to 'kernel/kthread.c')
-rw-r--r-- | kernel/kthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kthread.c b/kernel/kthread.c index ac72eea48339..bd1b9ea024e1 100644 --- a/kernel/kthread.c +++ b/kernel/kthread.c | |||
@@ -98,7 +98,7 @@ static void create_kthread(struct kthread_create_info *create) | |||
98 | struct sched_param param = { .sched_priority = 0 }; | 98 | struct sched_param param = { .sched_priority = 0 }; |
99 | wait_for_completion(&create->started); | 99 | wait_for_completion(&create->started); |
100 | read_lock(&tasklist_lock); | 100 | read_lock(&tasklist_lock); |
101 | create->result = find_task_by_pid(pid); | 101 | create->result = find_task_by_pid_ns(pid, &init_pid_ns); |
102 | read_unlock(&tasklist_lock); | 102 | read_unlock(&tasklist_lock); |
103 | /* | 103 | /* |
104 | * root may have changed our (kthreadd's) priority or CPU mask. | 104 | * root may have changed our (kthreadd's) priority or CPU mask. |