From: David Hildenbrand <david@redhat.com>
To: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
Andrew Morton <akpm@linux-foundation.org>,
"Borislav Petkov (AMD)" <bp@alien8.de>,
Mel Gorman <mgorman@suse.de>, Vlastimil Babka <vbabka@suse.cz>
Cc: Tom Lendacky <thomas.lendacky@amd.com>,
Mike Rapoport <rppt@kernel.org>,
"Matthew Wilcox (Oracle)" <willy@infradead.org>,
Johannes Weiner <hannes@cmpxchg.org>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 4/8] mm: Rename accept_page() to accept_page_memory()
Date: Tue, 6 Aug 2024 14:18:24 +0200 [thread overview]
Message-ID: <4220779f-1037-444b-b835-1732d497b9a2@redhat.com> (raw)
In-Reply-To: <20240805145940.2911011-5-kirill.shutemov@linux.intel.com>
On 05.08.24 16:59, Kirill A. Shutemov wrote:
> Rename the helper. The accept_page() name is going to be used for
> different function.
>
> Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> ---
> mm/page_alloc.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index a35efb114496..34718852d576 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -286,7 +286,7 @@ EXPORT_SYMBOL(nr_online_nodes);
> #endif
>
> static bool page_contains_unaccepted(struct page *page, unsigned int order);
> -static void accept_page(struct page *page, unsigned int order);
> +static void accept_page_memory(struct page *page, unsigned int order);
> static bool cond_accept_memory(struct zone *zone, unsigned int order);
> static inline bool has_unaccepted_memory(void);
> static bool __free_unaccepted(struct page *page);
> @@ -1263,7 +1263,7 @@ void __meminit __free_pages_core(struct page *page, unsigned int order,
> if (order == MAX_PAGE_ORDER && __free_unaccepted(page))
> return;
>
> - accept_page(page, order);
> + accept_page_memory(page, order);
I wonder if we can do better at naming.
Naming them accept_page1 and accept_page2 might be just as confusing as what you use here.
And I think we better just don't have this "page" wrapper here at all and just move to
memory ranges.
After all, the page contains no information we need here besides the PFN.
What about:
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 7a8bdfa742e1..5dc4066f35b3 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -286,7 +286,6 @@ EXPORT_SYMBOL(nr_online_nodes);
#endif
static bool page_contains_unaccepted(struct page *page, unsigned int order);
-static void accept_page(struct page *page, unsigned int order);
static inline bool has_unaccepted_memory(void);
static bool __free_unaccepted(struct page *page);
@@ -1262,7 +1261,7 @@ void __meminit __free_pages_core(struct page *page, unsigned int order,
if (order == MAX_PAGE_ORDER && __free_unaccepted(page))
return;
- accept_page(page, order);
+ __accept_memory(page_to_phys(page), PAGE_SIZE << order);
}
/*
@@ -6975,11 +6974,9 @@ static bool page_contains_unaccepted(struct page *page, unsigned int order)
return range_contains_unaccepted_memory(start, end);
}
-static void accept_page(struct page *page, unsigned int order)
+static void __accept_memory(phys_addr_t start, phys_addr_t size)
{
- phys_addr_t start = page_to_phys(page);
-
- accept_memory(start, start + (PAGE_SIZE << order));
+ accept_memory(start, start + size);
}
static bool try_to_accept_memory_one(struct zone *zone)
@@ -7006,7 +7003,7 @@ static bool try_to_accept_memory_one(struct zone *zone)
__mod_zone_page_state(zone, NR_UNACCEPTED, -MAX_ORDER_NR_PAGES);
spin_unlock_irqrestore(&zone->lock, flags);
- accept_page(page, MAX_PAGE_ORDER);
+ __accept_memory(page_to_phys(page), PAGE_SIZE << MAX_PAGE_ORDER);
__free_pages_ok(page, MAX_PAGE_ORDER, FPI_TO_TAIL);
@@ -7071,7 +7068,7 @@ static bool page_contains_unaccepted(struct page *page, unsigned int order)
return false;
}
-static void accept_page(struct page *page, unsigned int order)
+static void __accept_memory(phys_addr_t start, phys_addr_t size)
{
}
It would be even easier if accept_memory() would just accept start+size.
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2024-08-06 12:18 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20240805145940.2911011-1-kirill.shutemov@linux.intel.com>
[not found] ` <20240805145940.2911011-8-kirill.shutemov@linux.intel.com>
2024-08-05 17:04 ` [PATCH 7/8] mm: Introduce promo_wmark_pages() Johannes Weiner
2024-08-06 7:19 ` Kirill A. Shutemov
[not found] ` <20240805145940.2911011-3-kirill.shutemov@linux.intel.com>
2024-08-06 7:52 ` [PATCH 2/8] mm: Accept memory in __alloc_pages_bulk() Mike Rapoport
2024-08-06 12:02 ` David Hildenbrand
[not found] ` <20240805145940.2911011-2-kirill.shutemov@linux.intel.com>
2024-08-06 12:00 ` [PATCH 1/8] mm: Fix endless reclaim on machines with unaccepted memory David Hildenbrand
[not found] ` <20240805145940.2911011-4-kirill.shutemov@linux.intel.com>
2024-08-06 12:06 ` [PATCH 3/8] mm: Introduce PageUnaccepted() page type David Hildenbrand
2024-08-09 8:28 ` Kirill A. Shutemov
[not found] ` <20240805145940.2911011-5-kirill.shutemov@linux.intel.com>
2024-08-06 12:18 ` David Hildenbrand [this message]
[not found] ` <20240805145940.2911011-6-kirill.shutemov@linux.intel.com>
2024-08-06 12:20 ` [PATCH 5/8] mm: Add a helper to accept page David Hildenbrand
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=4220779f-1037-444b-b835-1732d497b9a2@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=bp@alien8.de \
--cc=hannes@cmpxchg.org \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mgorman@suse.de \
--cc=rppt@kernel.org \
--cc=thomas.lendacky@amd.com \
--cc=vbabka@suse.cz \
--cc=willy@infradead.org \
/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