From: David Hildenbrand <david@redhat.com>
To: Wei Yang <richard.weiyang@gmail.com>,
agordeev@linux.ibm.com, gerald.schaefer@linux.ibm.com,
hca@linux.ibm.com, gor@linux.ibm.com, borntraeger@linux.ibm.com,
svens@linux.ibm.com
Cc: 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: Tue, 18 Jun 2024 11:57:19 +0200 [thread overview]
Message-ID: <75ee1ec6-12b0-461e-9dab-6fb6d5cc235f@redhat.com> (raw)
In-Reply-To: <20240616013537.20338-1-richard.weiyang@gmail.com>
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>
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2024-06-18 9:57 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 [this message]
2024-06-19 22:43 ` Vasily Gorbik
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=75ee1ec6-12b0-461e-9dab-6fb6d5cc235f@redhat.com \
--to=david@redhat.com \
--cc=agordeev@linux.ibm.com \
--cc=borntraeger@linux.ibm.com \
--cc=gerald.schaefer@linux.ibm.com \
--cc=gor@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