From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S937756AbdLSMoE (ORCPT ); Tue, 19 Dec 2017 07:44:04 -0500 Received: from mx2.suse.de ([195.135.220.15]:35779 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934444AbdLSMoD (ORCPT ); Tue, 19 Dec 2017 07:44:03 -0500 Date: Tue, 19 Dec 2017 13:44:01 +0100 From: Michal Hocko To: Kemi Wang Cc: Greg Kroah-Hartman , Andrew Morton , Vlastimil Babka , Mel Gorman , Johannes Weiner , Christopher Lameter , YASUAKI ISHIMATSU , Andrey Ryabinin , Nikolay Borisov , Pavel Tatashin , David Rientjes , Sebastian Andrzej Siewior , Dave , Andi Kleen , Tim Chen , Jesper Dangaard Brouer , Ying Huang , Aaron Lu , Aubrey Li , Linux MM , Linux Kernel Subject: Re: [PATCH v2 5/5] mm: Rename zone_statistics() to numa_statistics() Message-ID: <20171219124401.GQ2787@dhcp22.suse.cz> References: <1513665566-4465-1-git-send-email-kemi.wang@intel.com> <1513665566-4465-6-git-send-email-kemi.wang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1513665566-4465-6-git-send-email-kemi.wang@intel.com> User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue 19-12-17 14:39:26, Kemi Wang wrote: > Since the functionality of zone_statistics() updates numa counters, but > numa statistics has been separated from zone statistics framework. Thus, > the function name makes people confused. So, change the name to > numa_statistics() as well as its call sites accordingly. > > Signed-off-by: Kemi Wang Acked-by: Michal Hocko > --- > mm/page_alloc.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 81e8d8f..f7583de 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -2790,7 +2790,7 @@ int __isolate_free_page(struct page *page, unsigned int order) > * > * Must be called with interrupts disabled. > */ > -static inline void zone_statistics(struct zone *preferred_zone, struct zone *z) > +static inline void numa_statistics(struct zone *preferred_zone, struct zone *z) > { > #ifdef CONFIG_NUMA > int preferred_nid = preferred_zone->node; > @@ -2854,7 +2854,7 @@ static struct page *rmqueue_pcplist(struct zone *preferred_zone, > page = __rmqueue_pcplist(zone, migratetype, pcp, list); > if (page) { > __count_zid_vm_events(PGALLOC, page_zonenum(page), 1 << order); > - zone_statistics(preferred_zone, zone); > + numa_statistics(preferred_zone, zone); > } > local_irq_restore(flags); > return page; > @@ -2902,7 +2902,7 @@ struct page *rmqueue(struct zone *preferred_zone, > get_pcppage_migratetype(page)); > > __count_zid_vm_events(PGALLOC, page_zonenum(page), 1 << order); > - zone_statistics(preferred_zone, zone); > + numa_statistics(preferred_zone, zone); > local_irq_restore(flags); > > out: > -- > 2.7.4 > -- Michal Hocko SUSE Labs