From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756184AbbIUH7P (ORCPT ); Mon, 21 Sep 2015 03:59:15 -0400 Received: from mx2.parallels.com ([199.115.105.18]:53567 "EHLO mx2.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755989AbbIUH7M (ORCPT ); Mon, 21 Sep 2015 03:59:12 -0400 Date: Mon, 21 Sep 2015 10:58:59 +0300 From: Vladimir Davydov To: Stephen Rothwell CC: Andrew Morton , Tejun Heo , , Subject: Re: linux-next: build failure after merge of the akpm-current tree Message-ID: <20150921075859.GB4995@esperanza> References: <20150921141039.5bfbb9ca@canb.auug.org.au> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20150921141039.5bfbb9ca@canb.auug.org.au> X-ClientProxiedBy: US-EXCH2.sw.swsoft.com (10.255.249.46) To US-EXCH2.sw.swsoft.com (10.255.249.46) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 21, 2015 at 02:10:39PM +1000, Stephen Rothwell wrote: > After merging the akpm-current tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > mm/vmscan.c: In function 'sane_reclaim': > mm/vmscan.c:178:2: error: implicit declaration of function 'cgroup_on_dfl' [-Werror=implicit-function-declaration] > if (cgroup_on_dfl(memcg->css.cgroup)) > ^ > > Caused by commit > > d08255ab4d66 ("vmscan: fix sane_reclaim helper for legacy memcg") > > interacting with commit > > 9e10a130d9b6 ("cgroup: replace cgroup_on_dfl() tests in controllers with cgroup_subsys_on_dfl()") > > from the cgroup tree. > > I don't know what the correct firx is here (help, please) so I have just > open coded the cgroup_on_dfl() call for now: Quoting Tejun (http://www.spinics.net/lists/linux-mm/msg94556.html): : Just a heads-up. I'm applying a patch which replaces cgroup_on_dfl() : with cgroup_subsys_on_dfl() to cgroup/for-4.4, so this patch would : need to be adjusted to do cgroup_subsys_on_dfl(memory_cgrp_subsys) : instead. Thanks, Vladimir