|
@@ -295,6 +295,9 @@ struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p)
|
|
|
static struct mem_cgroup *try_get_mem_cgroup_from_mm(struct mm_struct *mm)
|
|
|
{
|
|
|
struct mem_cgroup *mem = NULL;
|
|
|
+
|
|
|
+ if (!mm)
|
|
|
+ return NULL;
|
|
|
/*
|
|
|
* Because we have no locks, mm->owner's may be being moved to other
|
|
|
* cgroup. We use css_tryget() here even if this looks
|
|
@@ -486,10 +489,20 @@ void mem_cgroup_move_lists(struct page *page,
|
|
|
int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem)
|
|
|
{
|
|
|
int ret;
|
|
|
+ struct mem_cgroup *curr = NULL;
|
|
|
|
|
|
task_lock(task);
|
|
|
- ret = task->mm && mm_match_cgroup(task->mm, mem);
|
|
|
+ rcu_read_lock();
|
|
|
+ curr = try_get_mem_cgroup_from_mm(task->mm);
|
|
|
+ rcu_read_unlock();
|
|
|
task_unlock(task);
|
|
|
+ if (!curr)
|
|
|
+ return 0;
|
|
|
+ if (curr->use_hierarchy)
|
|
|
+ ret = css_is_ancestor(&curr->css, &mem->css);
|
|
|
+ else
|
|
|
+ ret = (curr == mem);
|
|
|
+ css_put(&curr->css);
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
@@ -820,6 +833,19 @@ bool mem_cgroup_oom_called(struct task_struct *task)
|
|
|
rcu_read_unlock();
|
|
|
return ret;
|
|
|
}
|
|
|
+
|
|
|
+static int record_last_oom_cb(struct mem_cgroup *mem, void *data)
|
|
|
+{
|
|
|
+ mem->last_oom_jiffies = jiffies;
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static void record_last_oom(struct mem_cgroup *mem)
|
|
|
+{
|
|
|
+ mem_cgroup_walk_tree(mem, NULL, record_last_oom_cb);
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
/*
|
|
|
* Unlike exported interface, "oom" parameter is added. if oom==true,
|
|
|
* oom-killer can be invoked.
|
|
@@ -902,7 +928,7 @@ static int __mem_cgroup_try_charge(struct mm_struct *mm,
|
|
|
mutex_lock(&memcg_tasklist);
|
|
|
mem_cgroup_out_of_memory(mem_over_limit, gfp_mask);
|
|
|
mutex_unlock(&memcg_tasklist);
|
|
|
- mem_over_limit->last_oom_jiffies = jiffies;
|
|
|
+ record_last_oom(mem_over_limit);
|
|
|
}
|
|
|
goto nomem;
|
|
|
}
|