diff options
Diffstat (limited to 'mm/memcontrol.c')
-rw-r--r-- | mm/memcontrol.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mm/memcontrol.c b/mm/memcontrol.c index a83e0395444b..6ceb6f2dbac2 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c | |||
@@ -177,6 +177,9 @@ struct mem_cgroup { | |||
177 | 177 | ||
178 | unsigned int swappiness; | 178 | unsigned int swappiness; |
179 | 179 | ||
180 | /* set when res.limit == memsw.limit */ | ||
181 | bool memsw_is_minimum; | ||
182 | |||
180 | /* | 183 | /* |
181 | * statistics. This must be placed at the end of memcg. | 184 | * statistics. This must be placed at the end of memcg. |
182 | */ | 185 | */ |
@@ -847,6 +850,10 @@ static int mem_cgroup_hierarchical_reclaim(struct mem_cgroup *root_mem, | |||
847 | int ret, total = 0; | 850 | int ret, total = 0; |
848 | int loop = 0; | 851 | int loop = 0; |
849 | 852 | ||
853 | /* If memsw_is_minimum==1, swap-out is of-no-use. */ | ||
854 | if (root_mem->memsw_is_minimum) | ||
855 | noswap = true; | ||
856 | |||
850 | while (loop < 2) { | 857 | while (loop < 2) { |
851 | victim = mem_cgroup_select_victim(root_mem); | 858 | victim = mem_cgroup_select_victim(root_mem); |
852 | if (victim == root_mem) | 859 | if (victim == root_mem) |
@@ -1752,6 +1759,12 @@ static int mem_cgroup_resize_limit(struct mem_cgroup *memcg, | |||
1752 | break; | 1759 | break; |
1753 | } | 1760 | } |
1754 | ret = res_counter_set_limit(&memcg->res, val); | 1761 | ret = res_counter_set_limit(&memcg->res, val); |
1762 | if (!ret) { | ||
1763 | if (memswlimit == val) | ||
1764 | memcg->memsw_is_minimum = true; | ||
1765 | else | ||
1766 | memcg->memsw_is_minimum = false; | ||
1767 | } | ||
1755 | mutex_unlock(&set_limit_mutex); | 1768 | mutex_unlock(&set_limit_mutex); |
1756 | 1769 | ||
1757 | if (!ret) | 1770 | if (!ret) |
@@ -1799,6 +1812,12 @@ static int mem_cgroup_resize_memsw_limit(struct mem_cgroup *memcg, | |||
1799 | break; | 1812 | break; |
1800 | } | 1813 | } |
1801 | ret = res_counter_set_limit(&memcg->memsw, val); | 1814 | ret = res_counter_set_limit(&memcg->memsw, val); |
1815 | if (!ret) { | ||
1816 | if (memlimit == val) | ||
1817 | memcg->memsw_is_minimum = true; | ||
1818 | else | ||
1819 | memcg->memsw_is_minimum = false; | ||
1820 | } | ||
1802 | mutex_unlock(&set_limit_mutex); | 1821 | mutex_unlock(&set_limit_mutex); |
1803 | 1822 | ||
1804 | if (!ret) | 1823 | if (!ret) |