diff --git a/mm/oom_kill.c b/mm/oom_kill.c index f1aba7e7b760b0a8533ef39d11897a29d2523165..12cd4735dc2935afda3b60f0753b0ec5ce212b2d 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -207,6 +207,9 @@ static struct task_struct *select_bad_process(unsigned long *ppoints) unsigned long points; int releasing; + /* skip kernel threads */ + if (!p->mm) + continue; /* skip the init task with pid == 1 */ if (p->pid == 1) continue;