diff options
Diffstat (limited to 'mm')
-rw-r--r-- | mm/memcontrol.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 11b23f203d68..31c4f0cefdee 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c | |||
@@ -86,6 +86,7 @@ struct page_cgroup { | |||
86 | int flags; | 86 | int flags; |
87 | }; | 87 | }; |
88 | #define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */ | 88 | #define PAGE_CGROUP_FLAG_CACHE (0x1) /* charged as cache */ |
89 | #define PAGE_CGROUP_FLAG_ACTIVE (0x2) /* page is active in this cgroup */ | ||
89 | 90 | ||
90 | enum { | 91 | enum { |
91 | MEM_CGROUP_TYPE_UNSPEC = 0, | 92 | MEM_CGROUP_TYPE_UNSPEC = 0, |
@@ -213,10 +214,13 @@ clear_page_cgroup(struct page *page, struct page_cgroup *pc) | |||
213 | 214 | ||
214 | static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active) | 215 | static void __mem_cgroup_move_lists(struct page_cgroup *pc, bool active) |
215 | { | 216 | { |
216 | if (active) | 217 | if (active) { |
218 | pc->flags |= PAGE_CGROUP_FLAG_ACTIVE; | ||
217 | list_move(&pc->lru, &pc->mem_cgroup->active_list); | 219 | list_move(&pc->lru, &pc->mem_cgroup->active_list); |
218 | else | 220 | } else { |
221 | pc->flags &= ~PAGE_CGROUP_FLAG_ACTIVE; | ||
219 | list_move(&pc->lru, &pc->mem_cgroup->inactive_list); | 222 | list_move(&pc->lru, &pc->mem_cgroup->inactive_list); |
223 | } | ||
220 | } | 224 | } |
221 | 225 | ||
222 | int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem) | 226 | int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem) |
@@ -403,7 +407,7 @@ retry: | |||
403 | atomic_set(&pc->ref_cnt, 1); | 407 | atomic_set(&pc->ref_cnt, 1); |
404 | pc->mem_cgroup = mem; | 408 | pc->mem_cgroup = mem; |
405 | pc->page = page; | 409 | pc->page = page; |
406 | pc->flags = 0; | 410 | pc->flags = PAGE_CGROUP_FLAG_ACTIVE; |
407 | if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE) | 411 | if (ctype == MEM_CGROUP_CHARGE_TYPE_CACHE) |
408 | pc->flags |= PAGE_CGROUP_FLAG_CACHE; | 412 | pc->flags |= PAGE_CGROUP_FLAG_CACHE; |
409 | 413 | ||