aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mm/oom_kill.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index f193d59d3..7923f10df 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -496,6 +496,24 @@ void oom_killer_enable(void)
oom_killer_disabled = false;
}
+/*
+ * task->mm can be NULL if the task is the exited group leader. So to
+ * determine whether the task is using a particular mm, we examine all the
+ * task's threads: if one of those is using this mm then this task was also
+ * using it.
+ */
+static bool process_shares_mm(struct task_struct *p, struct mm_struct *mm)
+{
+ struct task_struct *t;
+
+ for_each_thread(p, t) {
+ struct mm_struct *t_mm = READ_ONCE(t->mm);
+ if (t_mm)
+ return t_mm == mm;
+ }
+ return false;
+}
+
#define K(x) ((x) << (PAGE_SHIFT-10))
/*
* Must be called while holding a reference to p, which will be released upon
@@ -557,7 +575,7 @@ void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
return;
}
- if (child->mm == p->mm)
+ if (process_shares_mm(child, p->mm))
continue;
/* Make sure no objections to killing the child */
@@ -618,7 +636,7 @@ void oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
*/
rcu_read_lock();
for_each_process(p) {
- if (p->mm != mm)
+ if (!process_shares_mm(p, mm))
continue;
if (same_thread_group(p, victim))
continue;