From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f70.google.com (mail-wm0-f70.google.com [74.125.82.70]) by kanga.kvack.org (Postfix) with ESMTP id 2C3D26B0038 for ; Wed, 24 Aug 2016 08:16:34 -0400 (EDT) Received: by mail-wm0-f70.google.com with SMTP id l4so12019561wml.0 for ; Wed, 24 Aug 2016 05:16:34 -0700 (PDT) Received: from mail-wm0-f65.google.com (mail-wm0-f65.google.com. [74.125.82.65]) by mx.google.com with ESMTPS id 16si26160823wmb.72.2016.08.24.05.16.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 24 Aug 2016 05:16:33 -0700 (PDT) Received: by mail-wm0-f65.google.com with SMTP id i138so2383166wmf.3 for ; Wed, 24 Aug 2016 05:16:32 -0700 (PDT) Date: Wed, 24 Aug 2016 14:16:31 +0200 From: Michal Hocko Subject: Re: [PATCH v2] mm: memcontrol: avoid unused function warning Message-ID: <20160824121630.GG31179@dhcp22.suse.cz> References: <20160824113733.2776701-1-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160824113733.2776701-1-arnd@arndb.de> Sender: owner-linux-mm@kvack.org List-ID: To: Arnd Bergmann Cc: Vladimir Davydov , Johannes Weiner , Andrew Morton , Tejun Heo , Mel Gorman , cgroups@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org On Wed 24-08-16 12:23:00, Arnd Bergmann wrote: > A bugfix in v4.8-rc2 introduced a harmless warning when CONFIG_MEMCG_SWAP > is disabled but CONFIG_MEMCG is enabled: > > mm/memcontrol.c:4085:27: error: 'mem_cgroup_id_get_online' defined but not used [-Werror=unused-function] > static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg) > > This moves the function inside of the #ifdef block that hides the > calling function, to avoid the warning. > > Signed-off-by: Arnd Bergmann > Fixes: 1f47b61fb407 ("mm: memcontrol: fix swap counter leak on swapout from offline cgroup") > Acked-by: Michal Hocko > Acked-by: Vladimir Davydov Thanks a lot for respinning this Arnd! > --- > mm/memcontrol.c | 36 ++++++++++++++++++------------------ > 1 file changed, 18 insertions(+), 18 deletions(-) > > This is the alternative to the original patch, as suggested by Michal Hocko. > Andrew, please pick whichever version you like better. > > diff --git a/mm/memcontrol.c b/mm/memcontrol.c > index 2ff0289ad061..9a6a51a7c416 100644 > --- a/mm/memcontrol.c > +++ b/mm/memcontrol.c > @@ -4082,24 +4082,6 @@ static void mem_cgroup_id_get_many(struct mem_cgroup *memcg, unsigned int n) > atomic_add(n, &memcg->id.ref); > } > > -static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg) > -{ > - while (!atomic_inc_not_zero(&memcg->id.ref)) { > - /* > - * The root cgroup cannot be destroyed, so it's refcount must > - * always be >= 1. > - */ > - if (WARN_ON_ONCE(memcg == root_mem_cgroup)) { > - VM_BUG_ON(1); > - break; > - } > - memcg = parent_mem_cgroup(memcg); > - if (!memcg) > - memcg = root_mem_cgroup; > - } > - return memcg; > -} > - > static void mem_cgroup_id_put_many(struct mem_cgroup *memcg, unsigned int n) > { > if (atomic_sub_and_test(n, &memcg->id.ref)) { > @@ -5821,6 +5803,24 @@ static int __init mem_cgroup_init(void) > subsys_initcall(mem_cgroup_init); > > #ifdef CONFIG_MEMCG_SWAP > +static struct mem_cgroup *mem_cgroup_id_get_online(struct mem_cgroup *memcg) > +{ > + while (!atomic_inc_not_zero(&memcg->id.ref)) { > + /* > + * The root cgroup cannot be destroyed, so it's refcount must > + * always be >= 1. > + */ > + if (WARN_ON_ONCE(memcg == root_mem_cgroup)) { > + VM_BUG_ON(1); > + break; > + } > + memcg = parent_mem_cgroup(memcg); > + if (!memcg) > + memcg = root_mem_cgroup; > + } > + return memcg; > +} > + > /** > * mem_cgroup_swapout - transfer a memsw charge to swap > * @page: page whose memsw charge to transfer > -- > 2.9.0 -- Michal Hocko SUSE Labs -- 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