mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 06:33:34 +00:00
mm/page_alloc: clear PageBuddy using __ClearPageBuddy() for bad pages
Let's stop using page_mapcount_reset() and clear PageBuddy using __ClearPageBuddy() instead. Link: https://lkml.kernel.org/r/20240529111904.2069608-5-david@redhat.com Signed-off-by: David Hildenbrand <david@redhat.com> Tested-by: Sergey Senozhatsky <senozhatsky@chromium.org> [zram/zsmalloc workloads] Cc: Hyeonggon Yoo <42.hyeyoo@gmail.com> Cc: Matthew Wilcox (Oracle) <willy@infradead.org> Cc: Mike Rapoport (IBM) <rppt@kernel.org> Cc: Minchan Kim <minchan@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
43d746dc49
commit
e4d970acfb
@ -498,7 +498,8 @@ static void bad_page(struct page *page, const char *reason)
|
||||
dump_stack();
|
||||
out:
|
||||
/* Leave bad fields for debug, except PageBuddy could make trouble */
|
||||
page_mapcount_reset(page); /* remove PageBuddy */
|
||||
if (PageBuddy(page))
|
||||
__ClearPageBuddy(page);
|
||||
add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
|
||||
}
|
||||
|
||||
@ -1351,7 +1352,8 @@ static void check_new_page_bad(struct page *page)
|
||||
{
|
||||
if (unlikely(page->flags & __PG_HWPOISON)) {
|
||||
/* Don't complain about hwpoisoned pages */
|
||||
page_mapcount_reset(page); /* remove PageBuddy */
|
||||
if (PageBuddy(page))
|
||||
__ClearPageBuddy(page);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user