[PATCHv5 02/19] mm/zsmalloc: Prepare to variable MAX_PHYSMEM_BITS

From: Kirill A. Shutemov
Date: Mon Aug 21 2017 - 11:34:08 EST


With boot-time switching between paging mode we will have variable
MAX_PHYSMEM_BITS.

Let's use the maximum varible possible for CONFIG_X86_5LEVEL=y
configuration to define zsmalloc data structures.

Signed-off-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx>
Cc: Minchan Kim <minchan@xxxxxxxxxx>
Cc: Nitin Gupta <ngupta@xxxxxxxxxx>
Cc: Sergey Senozhatsky <sergey.senozhatsky.work@xxxxxxxxx>
---
mm/zsmalloc.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c
index 013eea76685e..468879915d3d 100644
--- a/mm/zsmalloc.c
+++ b/mm/zsmalloc.c
@@ -93,7 +93,13 @@
#define MAX_PHYSMEM_BITS BITS_PER_LONG
#endif
#endif
+
+#ifdef CONFIG_X86_5LEVEL
+/* MAX_PHYSMEM_BITS is variable, use maximum value here */
+#define _PFN_BITS (52 - PAGE_SHIFT)
+#else
#define _PFN_BITS (MAX_PHYSMEM_BITS - PAGE_SHIFT)
+#endif

/*
* Memory for allocating for handle keeps object position by
--
2.14.1