linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations
@ 2022-03-10  9:24 Mel Gorman
  2022-03-11  2:02 ` Shakeel Butt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mel Gorman @ 2022-03-10  9:24 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Eric Dumazet, Eric Dumazet, linux-kernel, linux-mm,
	Vlastimil Babka, Michal Hocko, Shakeel Butt, Wei Xu, Greg Thelen,
	Hugh Dickins, David Rientjes

Eric Dumazet pointed out that commit 44042b449872 ("mm/page_alloc: allow
high-order pages to be stored on the per-cpu lists") only checks the head
page during PCP refill and allocation operations. This was an oversight
and all pages should be checked. This will incur a small performance
penalty but it's necessary for correctness.

Fixes: 44042b449872 ("mm/page_alloc: allow high-order pages to be stored on the per-cpu lists")
Reported-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
Acked-by: Eric Dumazet <edumazet@google.com>
---
 mm/page_alloc.c | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 3589febc6d31..2920344fa887 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -2342,23 +2342,36 @@ static inline int check_new_page(struct page *page)
 	return 1;
 }
 
+static bool check_new_pages(struct page *page, unsigned int order)
+{
+	int i;
+	for (i = 0; i < (1 << order); i++) {
+		struct page *p = page + i;
+
+		if (unlikely(check_new_page(p)))
+			return true;
+	}
+
+	return false;
+}
+
 #ifdef CONFIG_DEBUG_VM
 /*
  * With DEBUG_VM enabled, order-0 pages are checked for expected state when
  * being allocated from pcp lists. With debug_pagealloc also enabled, they are
  * also checked when pcp lists are refilled from the free lists.
  */
-static inline bool check_pcp_refill(struct page *page)
+static inline bool check_pcp_refill(struct page *page, unsigned int order)
 {
 	if (debug_pagealloc_enabled_static())
-		return check_new_page(page);
+		return check_new_pages(page, order);
 	else
 		return false;
 }
 
-static inline bool check_new_pcp(struct page *page)
+static inline bool check_new_pcp(struct page *page, unsigned int order)
 {
-	return check_new_page(page);
+	return check_new_pages(page, order);
 }
 #else
 /*
@@ -2366,32 +2379,19 @@ static inline bool check_new_pcp(struct page *page)
  * when pcp lists are being refilled from the free lists. With debug_pagealloc
  * enabled, they are also checked when being allocated from the pcp lists.
  */
-static inline bool check_pcp_refill(struct page *page)
+static inline bool check_pcp_refill(struct page *page, unsigned int order)
 {
-	return check_new_page(page);
+	return check_new_pages(page, order);
 }
-static inline bool check_new_pcp(struct page *page)
+static inline bool check_new_pcp(struct page *page, unsigned int order)
 {
 	if (debug_pagealloc_enabled_static())
-		return check_new_page(page);
+		return check_new_pages(page, order);
 	else
 		return false;
 }
 #endif /* CONFIG_DEBUG_VM */
 
-static bool check_new_pages(struct page *page, unsigned int order)
-{
-	int i;
-	for (i = 0; i < (1 << order); i++) {
-		struct page *p = page + i;
-
-		if (unlikely(check_new_page(p)))
-			return true;
-	}
-
-	return false;
-}
-
 inline void post_alloc_hook(struct page *page, unsigned int order,
 				gfp_t gfp_flags)
 {
@@ -3037,7 +3037,7 @@ static int rmqueue_bulk(struct zone *zone, unsigned int order,
 		if (unlikely(page == NULL))
 			break;
 
-		if (unlikely(check_pcp_refill(page)))
+		if (unlikely(check_pcp_refill(page, order)))
 			continue;
 
 		/*
@@ -3641,7 +3641,7 @@ struct page *__rmqueue_pcplist(struct zone *zone, unsigned int order,
 		page = list_first_entry(list, struct page, lru);
 		list_del(&page->lru);
 		pcp->count -= 1 << order;
-	} while (check_new_pcp(page));
+	} while (check_new_pcp(page, order));
 
 	return page;
 }

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations
  2022-03-10  9:24 [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations Mel Gorman
@ 2022-03-11  2:02 ` Shakeel Butt
  2022-03-11 16:57 ` Vlastimil Babka
  2022-03-13 20:09 ` David Rientjes
  2 siblings, 0 replies; 4+ messages in thread
From: Shakeel Butt @ 2022-03-11  2:02 UTC (permalink / raw)
  To: Mel Gorman
  Cc: Andrew Morton, Eric Dumazet, Eric Dumazet, linux-kernel,
	linux-mm, Vlastimil Babka, Michal Hocko, Wei Xu, Greg Thelen,
	Hugh Dickins, David Rientjes

On Thu, Mar 10, 2022 at 09:24:56AM +0000, Mel Gorman wrote:
> Eric Dumazet pointed out that commit 44042b449872 ("mm/page_alloc: allow
> high-order pages to be stored on the per-cpu lists") only checks the head
> page during PCP refill and allocation operations. This was an oversight
> and all pages should be checked. This will incur a small performance
> penalty but it's necessary for correctness.

> Fixes: 44042b449872 ("mm/page_alloc: allow high-order pages to be stored  
> on the per-cpu lists")
> Reported-by: Eric Dumazet <edumazet@google.com>
> Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
> Acked-by: Eric Dumazet <edumazet@google.com>

Reviewed-by: Shakeel Butt <shakeelb@google.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations
  2022-03-10  9:24 [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations Mel Gorman
  2022-03-11  2:02 ` Shakeel Butt
@ 2022-03-11 16:57 ` Vlastimil Babka
  2022-03-13 20:09 ` David Rientjes
  2 siblings, 0 replies; 4+ messages in thread
From: Vlastimil Babka @ 2022-03-11 16:57 UTC (permalink / raw)
  To: Mel Gorman, Andrew Morton
  Cc: Eric Dumazet, Eric Dumazet, linux-kernel, linux-mm, Michal Hocko,
	Shakeel Butt, Wei Xu, Greg Thelen, Hugh Dickins, David Rientjes

On 3/10/22 10:24, Mel Gorman wrote:
> Eric Dumazet pointed out that commit 44042b449872 ("mm/page_alloc: allow
> high-order pages to be stored on the per-cpu lists") only checks the head
> page during PCP refill and allocation operations. This was an oversight
> and all pages should be checked. This will incur a small performance
> penalty but it's necessary for correctness.
> 
> Fixes: 44042b449872 ("mm/page_alloc: allow high-order pages to be stored on the per-cpu lists")
> Reported-by: Eric Dumazet <edumazet@google.com>
> Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
> Acked-by: Eric Dumazet <edumazet@google.com>

Acked-by: Vlastimil Babka <vbabka@suse.cz>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations
  2022-03-10  9:24 [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations Mel Gorman
  2022-03-11  2:02 ` Shakeel Butt
  2022-03-11 16:57 ` Vlastimil Babka
@ 2022-03-13 20:09 ` David Rientjes
  2 siblings, 0 replies; 4+ messages in thread
From: David Rientjes @ 2022-03-13 20:09 UTC (permalink / raw)
  To: Mel Gorman
  Cc: Andrew Morton, Eric Dumazet, Eric Dumazet, linux-kernel,
	linux-mm, Vlastimil Babka, Michal Hocko, Shakeel Butt, Wei Xu,
	Greg Thelen, Hugh Dickins

On Thu, 10 Mar 2022, Mel Gorman wrote:

> Eric Dumazet pointed out that commit 44042b449872 ("mm/page_alloc: allow
> high-order pages to be stored on the per-cpu lists") only checks the head
> page during PCP refill and allocation operations. This was an oversight
> and all pages should be checked. This will incur a small performance
> penalty but it's necessary for correctness.
> 
> Fixes: 44042b449872 ("mm/page_alloc: allow high-order pages to be stored on the per-cpu lists")
> Reported-by: Eric Dumazet <edumazet@google.com>
> Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
> Acked-by: Eric Dumazet <edumazet@google.com>

Acked-by: David Rientjes <rientjes@google.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-03-13 20:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-10  9:24 [PATCH] mm/page_alloc: check high-order pages for corruption during PCP operations Mel Gorman
2022-03-11  2:02 ` Shakeel Butt
2022-03-11 16:57 ` Vlastimil Babka
2022-03-13 20:09 ` David Rientjes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).