diff options
Diffstat (limited to 'mm/memcontrol.c')
-rw-r--r-- | mm/memcontrol.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index a61706193c31..f46b8615de6c 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c | |||
@@ -781,6 +781,32 @@ void mem_cgroup_end_migration(struct page *newpage) | |||
781 | } | 781 | } |
782 | 782 | ||
783 | /* | 783 | /* |
784 | * A call to try to shrink memory usage under specified resource controller. | ||
785 | * This is typically used for page reclaiming for shmem for reducing side | ||
786 | * effect of page allocation from shmem, which is used by some mem_cgroup. | ||
787 | */ | ||
788 | int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask) | ||
789 | { | ||
790 | struct mem_cgroup *mem; | ||
791 | int progress = 0; | ||
792 | int retry = MEM_CGROUP_RECLAIM_RETRIES; | ||
793 | |||
794 | rcu_read_lock(); | ||
795 | mem = mem_cgroup_from_task(rcu_dereference(mm->owner)); | ||
796 | css_get(&mem->css); | ||
797 | rcu_read_unlock(); | ||
798 | |||
799 | do { | ||
800 | progress = try_to_free_mem_cgroup_pages(mem, gfp_mask); | ||
801 | } while (!progress && --retry); | ||
802 | |||
803 | css_put(&mem->css); | ||
804 | if (!retry) | ||
805 | return -ENOMEM; | ||
806 | return 0; | ||
807 | } | ||
808 | |||
809 | /* | ||
784 | * This routine traverse page_cgroup in given list and drop them all. | 810 | * This routine traverse page_cgroup in given list and drop them all. |
785 | * *And* this routine doesn't reclaim page itself, just removes page_cgroup. | 811 | * *And* this routine doesn't reclaim page itself, just removes page_cgroup. |
786 | */ | 812 | */ |