aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/kthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/kthread.c')
-rw-r--r--kernel/kthread.c17
1 files changed, 3 insertions, 14 deletions
diff --git a/kernel/kthread.c b/kernel/kthread.c
index 0eb0070a3c57..df8a8e8f6ca4 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -215,24 +215,13 @@ EXPORT_SYMBOL(kthread_stop);
215static __init void kthreadd_setup(void) 215static __init void kthreadd_setup(void)
216{ 216{
217 struct task_struct *tsk = current; 217 struct task_struct *tsk = current;
218 struct k_sigaction sa;
219 sigset_t blocked;
220 218
221 set_task_comm(tsk, "kthreadd"); 219 set_task_comm(tsk, "kthreadd");
222 220
223 /* Block and flush all signals */ 221 ignore_signals(tsk);
224 sigfillset(&blocked);
225 sigprocmask(SIG_BLOCK, &blocked, NULL);
226 flush_signals(tsk);
227 222
228 /* SIG_IGN makes children autoreap: see do_notify_parent(). */ 223 set_user_nice(tsk, -5);
229 sa.sa.sa_handler = SIG_IGN; 224 set_cpus_allowed(tsk, CPU_MASK_ALL);
230 sa.sa.sa_flags = 0;
231 siginitset(&sa.sa.sa_mask, sigmask(SIGCHLD));
232 do_sigaction(SIGCHLD, &sa, (struct k_sigaction *)0);
233
234 set_user_nice(current, -5);
235 set_cpus_allowed(current, CPU_MASK_ALL);
236} 225}
237 226
238int kthreadd(void *unused) 227int kthreadd(void *unused)