Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757144AbbLAWZz (ORCPT ); Tue, 1 Dec 2015 17:25:55 -0500 Received: from mail-pa0-f47.google.com ([209.85.220.47]:35062 "EHLO mail-pa0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756322AbbLAWZy (ORCPT ); Tue, 1 Dec 2015 17:25:54 -0500 Date: Tue, 1 Dec 2015 14:25:50 -0800 (PST) From: David Rientjes X-X-Sender: rientjes@chino.kir.corp.google.com To: Naoya Horiguchi cc: Andrew Morton , Yaowei Bai , KAMEZAWA Hiroyuki , linux-mm@kvack.org, linux-kernel@vger.kernel.org, Naoya Horiguchi Subject: Re: [PATCH v1] mm: fix warning in comparing enumerator In-Reply-To: <1448959032-754-1-git-send-email-n-horiguchi@ah.jp.nec.com> Message-ID: References: <1448959032-754-1-git-send-email-n-horiguchi@ah.jp.nec.com> User-Agent: Alpine 2.10 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1465 Lines: 38 On Tue, 1 Dec 2015, Naoya Horiguchi wrote: > I saw the following warning when building mmotm-2015-11-25-17-08. > > mm/page_alloc.c:4185:16: warning: comparison between 'enum zone_type' and 'enum ' [-Wenum-compare] > for (i = 0; i < MAX_ZONELISTS; i++) { > ^ > > enum zone_type is named like ZONE_* which is different from ZONELIST_*, so > we are somehow doing incorrect comparison. Just fixes it. > > Signed-off-by: Naoya Horiguchi > --- > mm/page_alloc.c | 3 +-- > 1 files changed, 1 insertions(+), 2 deletions(-) > > diff --git mmotm-2015-11-25-17-08/mm/page_alloc.c mmotm-2015-11-25-17-08_patched/mm/page_alloc.c > index e267faa..b801e6f 100644 > --- mmotm-2015-11-25-17-08/mm/page_alloc.c > +++ mmotm-2015-11-25-17-08_patched/mm/page_alloc.c > @@ -4174,8 +4174,7 @@ static void set_zonelist_order(void) > > static void build_zonelists(pg_data_t *pgdat) > { > - int j, node, load; > - enum zone_type i; > + int i, j, node, load; > nodemask_t used_mask; > int local_node, prev_node; > struct zonelist *zonelist; Obviously correct, but I would have thought we could just remove 'j' and used 'i' as our iterator through the entire function. -- 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/