diff options
Diffstat (limited to 'mm')
-rw-r--r-- | mm/memcontrol.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 1637575d3339..2ef214ed5cf8 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c | |||
@@ -420,6 +420,23 @@ void mem_cgroup_move_lists(struct page_cgroup *pc, bool active) | |||
420 | spin_unlock(&mem->lru_lock); | 420 | spin_unlock(&mem->lru_lock); |
421 | } | 421 | } |
422 | 422 | ||
423 | /* | ||
424 | * Calculate mapped_ratio under memory controller. This will be used in | ||
425 | * vmscan.c for deteremining we have to reclaim mapped pages. | ||
426 | */ | ||
427 | int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem) | ||
428 | { | ||
429 | long total, rss; | ||
430 | |||
431 | /* | ||
432 | * usage is recorded in bytes. But, here, we assume the number of | ||
433 | * physical pages can be represented by "long" on any arch. | ||
434 | */ | ||
435 | total = (long) (mem->res.usage >> PAGE_SHIFT) + 1L; | ||
436 | rss = (long)mem_cgroup_read_stat(&mem->stat, MEM_CGROUP_STAT_RSS); | ||
437 | return (int)((rss * 100L) / total); | ||
438 | } | ||
439 | |||
423 | unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, | 440 | unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, |
424 | struct list_head *dst, | 441 | struct list_head *dst, |
425 | unsigned long *scanned, int order, | 442 | unsigned long *scanned, int order, |