Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp1436509pxy; Fri, 23 Apr 2021 08:03:20 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyMjHV09BRUvRSxCEtMyF+ep6tSRQrzoHwGO5khj3L+iYlg+PaFA7zKhURl9dM6JcXRb58G X-Received: by 2002:a17:906:5619:: with SMTP id f25mr4563104ejq.393.1619190200026; Fri, 23 Apr 2021 08:03:20 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1619190200; cv=none; d=google.com; s=arc-20160816; b=yfJwRZEgerDpPT/pyCjgnNNtQWg4aWZPiEpOt9WbdjZxCyLfS012K2DVca4vZnija3 EZX0m3490LyTSk1vkNoduZmCMZaZ7Ji3DjBsVoReKvtr7pRUZ6Z1jcXStYsNw8GvSuYf lgO0DVfXrpnpjmA4LaMKVZHk5GK4OYF99BqA5FW48oF/Id3/f1neIEIuhLvwjx3ZS+MO pQibw+AXXljusr7e9L7sWHLHGayHyyr1hzVueYH4x6MXPens8XbZ0NmLodf6+ZtvhrOV bHNG0CYApD1MSOwbYTBBdhrXlDnhVlXMXCJUXC5OMHPck4GCgwQyjjECNAu/He9XOj27 7aMQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:content-language :in-reply-to:mime-version:user-agent:date:message-id:from:references :cc:to:subject; bh=WIcA110F4mB/CW40HXHPdWIw6FsfWImXJHw+J9hwS/I=; b=OZLRMSrnNnymPnBQXYZF0TxkXdF07JhmqPPfMHGuu0oQMpv6fc6UfBzmkoC1njBLOT Ivc/vztwmYC2c+E05Yvn3Q74Z4cxj2jHsUmYkIF9zc/k1+xhM5ybU1PMDXvjc8JpeHCG ZH+69wuiMt5H0JGa50bUfjNorE6JbBhTuRhnb8YownN1jDPc+5aWaLLaqMpA/jLyPB51 LwegY93No1oKsUngIfgZ8fjmdslnrnK+0XkVt4gisK945Iz1+7grSSUoXBk+/iFtbwLF 7QG55uW0Tv6aPI4fgwJBuJfy+1D9+b1VQM1cnkyYaRqiwolE9YuSyzamnj72WTASpoBz 4zeg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id f15si6026708edm.87.2021.04.23.08.02.56; Fri, 23 Apr 2021 08:03:20 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237082AbhDWPB3 (ORCPT + 99 others); Fri, 23 Apr 2021 11:01:29 -0400 Received: from mx2.suse.de ([195.135.220.15]:37432 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243260AbhDWPAf (ORCPT ); Fri, 23 Apr 2021 11:00:35 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 41720B151; Fri, 23 Apr 2021 14:59:58 +0000 (UTC) Subject: Re: [PATCH 5/6] mm: Constify get_pfnblock_flags_mask and get_pfnblock_migratetype To: "Matthew Wilcox (Oracle)" , linux-mm@kvack.org Cc: Andrew Morton , linux-kernel@vger.kernel.org References: <20210416231531.2521383-1-willy@infradead.org> <20210416231531.2521383-6-willy@infradead.org> From: Vlastimil Babka Message-ID: <5cb13e53-cd3f-a969-23c8-0e8a0788f242@suse.cz> Date: Fri, 23 Apr 2021 16:59:57 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.9.1 MIME-Version: 1.0 In-Reply-To: <20210416231531.2521383-6-willy@infradead.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 4/17/21 1:15 AM, Matthew Wilcox (Oracle) wrote: > The struct page is not modified by these routines, so it can be marked > const. > > Signed-off-by: Matthew Wilcox (Oracle) Reviewed-by: Vlastimil Babka > --- > include/linux/pageblock-flags.h | 2 +- > mm/page_alloc.c | 13 +++++++------ > 2 files changed, 8 insertions(+), 7 deletions(-) > > diff --git a/include/linux/pageblock-flags.h b/include/linux/pageblock-flags.h > index fff52ad370c1..973fd731a520 100644 > --- a/include/linux/pageblock-flags.h > +++ b/include/linux/pageblock-flags.h > @@ -54,7 +54,7 @@ extern unsigned int pageblock_order; > /* Forward declaration */ > struct page; > > -unsigned long get_pfnblock_flags_mask(struct page *page, > +unsigned long get_pfnblock_flags_mask(const struct page *page, > unsigned long pfn, > unsigned long mask); > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 0152670c6f04..4be2179eedd5 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -474,7 +474,7 @@ static inline bool defer_init(int nid, unsigned long pfn, unsigned long end_pfn) > #endif > > /* Return a pointer to the bitmap storing bits affecting a block of pages */ > -static inline unsigned long *get_pageblock_bitmap(struct page *page, > +static inline unsigned long *get_pageblock_bitmap(const struct page *page, > unsigned long pfn) > { > #ifdef CONFIG_SPARSEMEM > @@ -484,7 +484,7 @@ static inline unsigned long *get_pageblock_bitmap(struct page *page, > #endif /* CONFIG_SPARSEMEM */ > } > > -static inline int pfn_to_bitidx(struct page *page, unsigned long pfn) > +static inline int pfn_to_bitidx(const struct page *page, unsigned long pfn) > { > #ifdef CONFIG_SPARSEMEM > pfn &= (PAGES_PER_SECTION-1); > @@ -495,7 +495,7 @@ static inline int pfn_to_bitidx(struct page *page, unsigned long pfn) > } > > static __always_inline > -unsigned long __get_pfnblock_flags_mask(struct page *page, > +unsigned long __get_pfnblock_flags_mask(const struct page *page, > unsigned long pfn, > unsigned long mask) > { > @@ -520,13 +520,14 @@ unsigned long __get_pfnblock_flags_mask(struct page *page, > * > * Return: pageblock_bits flags > */ > -unsigned long get_pfnblock_flags_mask(struct page *page, unsigned long pfn, > - unsigned long mask) > +unsigned long get_pfnblock_flags_mask(const struct page *page, > + unsigned long pfn, unsigned long mask) > { > return __get_pfnblock_flags_mask(page, pfn, mask); > } > > -static __always_inline int get_pfnblock_migratetype(struct page *page, unsigned long pfn) > +static __always_inline int get_pfnblock_migratetype(const struct page *page, > + unsigned long pfn) > { > return __get_pfnblock_flags_mask(page, pfn, MIGRATETYPE_MASK); > } >