From 5b291d2ae8d744c68216d088c3e0221e97f2a355 Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Wed, 5 Dec 2018 11:14:21 +1100 Subject: [PATCH] mm-convert-pg_balloon-to-pg_offline-fix-fix fix PAGE_TYPE_ALL Cc: Anthony Yznaga Cc: David Hildenbrand Signed-off-by: Andrew Morton Signed-off-by: Stephen Rothwell --- include/linux/page-flags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index b9efcfe33915..68b8495e2fbc 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h @@ -673,7 +673,7 @@ PAGEFLAG_FALSE(DoubleMap) #define PG_offline 0x00000100 #define PG_kmemcg 0x00000200 #define PG_table 0x00000400 -#define PAGE_TYPE_ALL (PG_buddy | PG_balloon | PG_kmemcg | PG_table) +#define PAGE_TYPE_ALL (PG_buddy | PG_offline | PG_kmemcg | PG_table) #define PageType(page, flag) \ ((page->page_type & (PAGE_TYPE_BASE | flag)) == PAGE_TYPE_BASE) -- 2.50.1