linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/page_isolation: do not isolate the max order page
@ 2020-12-02 12:21 Muchun Song
  2020-12-03  0:03 ` Vlastimil Babka
  2020-12-03 16:27 ` David Hildenbrand
  0 siblings, 2 replies; 9+ messages in thread
From: Muchun Song @ 2020-12-02 12:21 UTC (permalink / raw)
  To: akpm; +Cc: linux-mm, linux-kernel, Muchun Song

The max order page has no buddy page and never merge to other order.
So isolating and then freeing it is pointless.

Signed-off-by: Muchun Song <songmuchun@bytedance.com>
---
 mm/page_isolation.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/page_isolation.c b/mm/page_isolation.c
index a254e1f370a3..bddf788f45bf 100644
--- a/mm/page_isolation.c
+++ b/mm/page_isolation.c
@@ -88,7 +88,7 @@ static void unset_migratetype_isolate(struct page *page, unsigned migratetype)
 	 */
 	if (PageBuddy(page)) {
 		order = buddy_order(page);
-		if (order >= pageblock_order) {
+		if (order >= pageblock_order && order < MAX_ORDER - 1) {
 			pfn = page_to_pfn(page);
 			buddy_pfn = __find_buddy_pfn(pfn, order);
 			buddy = page + (buddy_pfn - pfn);
-- 
2.11.0


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

end of thread, other threads:[~2020-12-03 19:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-02 12:21 [PATCH] mm/page_isolation: do not isolate the max order page Muchun Song
2020-12-03  0:03 ` Vlastimil Babka
2020-12-03  2:43   ` [External] " Muchun Song
2020-12-03 15:49     ` Vlastimil Babka
2020-12-03 16:26   ` David Hildenbrand
2020-12-03 17:15     ` Vlastimil Babka
2020-12-03 17:48       ` David Hildenbrand
2020-12-03 19:24         ` David Hildenbrand
2020-12-03 16:27 ` David Hildenbrand

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).