From: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
To: David Hildenbrand <david@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
"Borislav Petkov (AMD)" <bp@alien8.de>,
Mel Gorman <mgorman@suse.de>, Vlastimil Babka <vbabka@suse.cz>,
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 3/8] mm: Introduce PageUnaccepted() page type
Date: Fri, 9 Aug 2024 11:28:17 +0300 [thread overview]
Message-ID: <z5r4y4gb2ld2qa3moa33rzxyuzpzuim5ga6kk6oc4n6exdri7h@f6qbgdjhuu2z> (raw)
In-Reply-To: <56be9c2c-6f44-409f-bb66-3bb488f0d546@redhat.com>
On Tue, Aug 06, 2024 at 02:06:02PM +0200, David Hildenbrand wrote:
> On 05.08.24 16:59, Kirill A. Shutemov wrote:
> > The new page type allows physical memory scanners to detect unaccepted
> > memory and handle it accordingly.
> >
> > The page type is serialized with zone lock.
> >
> > Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
> > ---
> > include/linux/page-flags.h | 3 +++
> > mm/page_alloc.c | 2 ++
> > 2 files changed, 5 insertions(+)
> >
> > diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h
> > index 5769fe6e4950..e19eac9c2b5c 100644
> > --- a/include/linux/page-flags.h
> > +++ b/include/linux/page-flags.h
> > @@ -943,6 +943,7 @@ enum pagetype {
> > PG_hugetlb = 0x04000000,
> > PG_slab = 0x02000000,
> > PG_zsmalloc = 0x01000000,
> > + PG_unaccepted = 0x00800000,
> > PAGE_TYPE_BASE = 0x80000000,
> > @@ -1076,6 +1077,8 @@ FOLIO_TEST_FLAG_FALSE(hugetlb)
> > PAGE_TYPE_OPS(Zsmalloc, zsmalloc, zsmalloc)
> > +PAGE_TYPE_OPS(Unaccepted, unaccepted, unaccepted)
>
> I'm sure you're able to come up with some documentation ;)
Will do.
> > +
> > /**
> > * PageHuge - Determine if the page belongs to hugetlbfs
> > * @page: The page to test.
> > diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> > index 90a1f01d5996..a35efb114496 100644
> > --- a/mm/page_alloc.c
> > +++ b/mm/page_alloc.c
> > @@ -6972,6 +6972,7 @@ static bool try_to_accept_memory_one(struct zone *zone)
> > account_freepages(zone, -MAX_ORDER_NR_PAGES, MIGRATE_MOVABLE);
> > __mod_zone_page_state(zone, NR_UNACCEPTED, -MAX_ORDER_NR_PAGES);
> > + __ClearPageUnaccepted(page);
> > spin_unlock_irqrestore(&zone->lock, flags);
> > accept_page(page, MAX_PAGE_ORDER);
> > @@ -7030,6 +7031,7 @@ static bool __free_unaccepted(struct page *page)
> > list_add_tail(&page->lru, &zone->unaccepted_pages);
> > account_freepages(zone, MAX_ORDER_NR_PAGES, MIGRATE_MOVABLE);
> > __mod_zone_page_state(zone, NR_UNACCEPTED, MAX_ORDER_NR_PAGES);
> > + __SetPageUnaccepted(page);
> > spin_unlock_irqrestore(&zone->lock, flags);
> > if (first)
>
> At the point PG_unaccepted is set/cleared, we don't have another type set,
> right? (IOW, PG_buddy is only set after we cleared PG_unaccepted)
Right. PG_buddy is set after we clear PG_unaccepted.
There's brief period when the page is under accept when PG_unaccepted
already cleared, but PG_buddy is not yet set. But I don't think it can be
problematic.
--
Kiryl Shutsemau / Kirill A. Shutemov
next prev parent reply other threads:[~2024-08-09 8:28 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 [this message]
[not found] ` <20240805145940.2911011-5-kirill.shutemov@linux.intel.com>
2024-08-06 12:18 ` [PATCH 4/8] mm: Rename accept_page() to accept_page_memory() David Hildenbrand
[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=z5r4y4gb2ld2qa3moa33rzxyuzpzuim5ga6kk6oc4n6exdri7h@f6qbgdjhuu2z \
--to=kirill.shutemov@linux.intel.com \
--cc=akpm@linux-foundation.org \
--cc=bp@alien8.de \
--cc=david@redhat.com \
--cc=hannes@cmpxchg.org \
--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