linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Vasily Gorbik <gor@linux.ibm.com>
To: David Hildenbrand <david@redhat.com>
Cc: Wei Yang <richard.weiyang@gmail.com>,
	agordeev@linux.ibm.com, gerald.schaefer@linux.ibm.com,
	hca@linux.ibm.com, borntraeger@linux.ibm.com,
	svens@linux.ibm.com, linux-s390@vger.kernel.org,
	linux-mm@kvack.org, Mike Rapoport <rppt@kernel.org>
Subject: Re: [PATCH] s390/mm: get total ram pages from memblock
Date: Thu, 20 Jun 2024 00:43:20 +0200	[thread overview]
Message-ID: <your-ad-here.call-01718837000-ext-1272@work.hours> (raw)
In-Reply-To: <75ee1ec6-12b0-461e-9dab-6fb6d5cc235f@redhat.com>

On Tue, Jun 18, 2024 at 11:57:19AM +0200, David Hildenbrand wrote:
> On 16.06.24 03:35, Wei Yang wrote:
> > On s390, zero page's size relies on total ram pages.
> > 
> > Since we plan to move the accounting into __free_pages_core(),
> > totalram_pages may not represent the total usable pages on system
> > at this point when defer_init is enabled.
> > 
> > We can get the total usable pages from memblock directly. The size maybe
> > not accurate due to the alignment, but enough for the calculation.
> > 
> > Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
> > CC: Mike Rapoport (IBM) <rppt@kernel.org>
> > CC: David Hildenbrand <david@redhat.com>
> > 
> > ---
> > Not tested on a machine, hope it is fine.
> > ---
> >   arch/s390/mm/init.c | 3 ++-
> >   1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/arch/s390/mm/init.c b/arch/s390/mm/init.c
> > index e769d2726f4e..d811ffa5e147 100644
> > --- a/arch/s390/mm/init.c
> > +++ b/arch/s390/mm/init.c
> > @@ -65,12 +65,13 @@ static void __init setup_zero_pages(void)
> >   	unsigned int order;
> >   	struct page *page;
> >   	int i;
> > +	unsigned long total_pages = PHYS_PFN(memblock_phys_mem_size() - memblock_reserved_size());
> >   	/* Latest machines require a mapping granularity of 512KB */
> >   	order = 7;
> >   	/* Limit number of empty zero pages for small memory sizes */
> > -	while (order > 2 && (totalram_pages() >> 10) < (1UL << order))
> > +	while (order > 2 && (total_pages >> 10) < (1UL << order))
> >   		order--;
> >   	empty_zero_page = __get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
> 
> I suspect that this is good enough as an approximation for that purpose.
> 
> Reviewed-by: David Hildenbrand <david@redhat.com>

Applied, thanks!


      reply	other threads:[~2024-06-19 22:43 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-16  1:35 Wei Yang
2024-06-18  9:57 ` David Hildenbrand
2024-06-19 22:43   ` Vasily Gorbik [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=your-ad-here.call-01718837000-ext-1272@work.hours \
    --to=gor@linux.ibm.com \
    --cc=agordeev@linux.ibm.com \
    --cc=borntraeger@linux.ibm.com \
    --cc=david@redhat.com \
    --cc=gerald.schaefer@linux.ibm.com \
    --cc=hca@linux.ibm.com \
    --cc=linux-mm@kvack.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=richard.weiyang@gmail.com \
    --cc=rppt@kernel.org \
    --cc=svens@linux.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox