From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg0-f69.google.com (mail-pg0-f69.google.com [74.125.83.69]) by kanga.kvack.org (Postfix) with ESMTP id BBF086B0038 for ; Fri, 19 Jan 2018 08:25:52 -0500 (EST) Received: by mail-pg0-f69.google.com with SMTP id x4so1839668pgv.2 for ; Fri, 19 Jan 2018 05:25:52 -0800 (PST) Received: from EUR01-DB5-obe.outbound.protection.outlook.com (mail-eopbgr60103.outbound.protection.outlook.com. [40.107.6.103]) by mx.google.com with ESMTPS id s12si8251577pgc.746.2018.01.19.05.25.50 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 19 Jan 2018 05:25:51 -0800 (PST) From: Andrey Ryabinin Subject: [PATCH v5 2/2] mm/memcontrol.c: Reduce reclaim retries in mem_cgroup_resize_limit() Date: Fri, 19 Jan 2018 16:25:44 +0300 Message-Id: <20180119132544.19569-2-aryabinin@virtuozzo.com> In-Reply-To: <20180119132544.19569-1-aryabinin@virtuozzo.com> References: <20171220102429.31601-1-aryabinin@virtuozzo.com> <20180119132544.19569-1-aryabinin@virtuozzo.com> MIME-Version: 1.0 Content-Type: text/plain Sender: owner-linux-mm@kvack.org List-ID: To: Andrew Morton Cc: cgroups@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Andrey Ryabinin , Shakeel Butt , Michal Hocko , Johannes Weiner , Vladimir Davydov Currently mem_cgroup_resize_limit() retries to set limit after reclaiming 32 pages. It makes more sense to reclaim needed amount of pages right away. This works noticeably faster, especially if 'usage - limit' big. E.g. bringing down limit from 4G to 50M: Before: # perf stat echo 50M > memory.limit_in_bytes Performance counter stats for 'echo 50M': 386.582382 task-clock (msec) # 0.835 CPUs utilized 2,502 context-switches # 0.006 M/sec 0.463244382 seconds time elapsed After: # perf stat echo 50M > memory.limit_in_bytes Performance counter stats for 'echo 50M': 169.403906 task-clock (msec) # 0.849 CPUs utilized 14 context-switches # 0.083 K/sec 0.199536900 seconds time elapsed Signed-off-by: Andrey Ryabinin Cc: Shakeel Butt Cc: Michal Hocko Cc: Johannes Weiner Cc: Vladimir Davydov --- mm/memcontrol.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mm/memcontrol.c b/mm/memcontrol.c index 9d987f3e79dc..09bac2df2f12 100644 --- a/mm/memcontrol.c +++ b/mm/memcontrol.c @@ -2448,6 +2448,7 @@ static DEFINE_MUTEX(memcg_limit_mutex); static int mem_cgroup_resize_limit(struct mem_cgroup *memcg, unsigned long limit, bool memsw) { + unsigned long nr_pages; bool enlarge = false; int ret; bool limits_invariant; @@ -2479,8 +2480,9 @@ static int mem_cgroup_resize_limit(struct mem_cgroup *memcg, if (!ret) break; - if (!try_to_free_mem_cgroup_pages(memcg, 1, - GFP_KERNEL, !memsw)) { + nr_pages = max_t(long, 1, page_counter_read(counter) - limit); + if (!try_to_free_mem_cgroup_pages(memcg, nr_pages, + GFP_KERNEL, !memsw)) { ret = -EBUSY; break; } -- 2.13.6 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org