Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751804AbbLLQTJ (ORCPT ); Sat, 12 Dec 2015 11:19:09 -0500 Received: from mx2.parallels.com ([199.115.105.18]:34926 "EHLO mx2.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751185AbbLLQTH (ORCPT ); Sat, 12 Dec 2015 11:19:07 -0500 Date: Sat, 12 Dec 2015 19:18:56 +0300 From: Vladimir Davydov To: Johannes Weiner CC: Andrew Morton , Michal Hocko , , Subject: Re: [PATCH 6/7] mm: free swap cache aggressively if memcg swap is full Message-ID: <20151212161856.GA28521@esperanza> References: <2c7ac3a5c2a2fb9b1c5136d8409652ed7ecc260f.1449742561.git.vdavydov@virtuozzo.com> <20151211193358.GE3773@cmpxchg.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20151211193358.GE3773@cmpxchg.org> X-ClientProxiedBy: US-EXCH2.sw.swsoft.com (10.255.249.46) To US-EXCH.sw.swsoft.com (10.255.249.47) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1720 Lines: 46 On Fri, Dec 11, 2015 at 02:33:58PM -0500, Johannes Weiner wrote: > On Thu, Dec 10, 2015 at 02:39:19PM +0300, Vladimir Davydov wrote: > > Swap cache pages are freed aggressively if swap is nearly full (>50% > > currently), because otherwise we are likely to stop scanning anonymous > > when we near the swap limit even if there is plenty of freeable swap > > cache pages. We should follow the same trend in case of memory cgroup, > > which has its own swap limit. > > > > Signed-off-by: Vladimir Davydov > > Acked-by: Johannes Weiner > > One note: > > > @@ -5839,6 +5839,29 @@ long mem_cgroup_get_nr_swap_pages(struct mem_cgroup *memcg) > > return nr_swap_pages; > > } > > > > +bool mem_cgroup_swap_full(struct page *page) > > +{ > > + struct mem_cgroup *memcg; > > + > > + VM_BUG_ON_PAGE(!PageLocked(page), page); > > + > > + if (vm_swap_full()) > > + return true; > > + if (!do_swap_account || !PageSwapCache(page)) > > + return false; > > The callers establish PageSwapCache() under the page lock, which makes > sense since they only inquire about the swap state when deciding what > to do with a swapcache page at hand. So this check seems unnecessary. Yeah, you're right, we don't need it here. Will remove it in v2. Besides, I think I should have inserted cgroup_subsys_on_dflt check in this function so that it wouldn't check memcg->swap limit in case the legacy hierarchy is used. Will do. Thanks, Vladimir -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/