@@ -14,7 +14,7 @@
#undef CONFIG_KASAN
/* cpu_feature_enabled() cannot be used this early */
-#define USE_EARLY_PGTABLE_L5
+#define USE_EARLY_PGTABLE
#include <linux/linkage.h>
#include <linux/screen_info.h>
@@ -23,7 +23,7 @@ typedef struct { pteval_t pte; } pte_t;
#ifdef CONFIG_X86_5LEVEL
extern unsigned int __pgtable_l5_enabled;
-#ifdef USE_EARLY_PGTABLE_L5
+#ifdef USE_EARLY_PGTABLE
/*
* cpu_feature_enabled() is not available in early boot code.
* Use variable instead.
@@ -34,7 +34,7 @@ static inline bool pgtable_l5_enabled(void)
}
#else
#define pgtable_l5_enabled() cpu_feature_enabled(X86_FEATURE_LA57)
-#endif /* USE_EARLY_PGTABLE_L5 */
+#endif /* USE_EARLY_PGTABLE */
#else
#define pgtable_l5_enabled() 0
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
/* cpu_feature_enabled() cannot be used this early */
-#define USE_EARLY_PGTABLE_L5
+#define USE_EARLY_PGTABLE
#include <linux/memblock.h>
#include <linux/linkage.h>
@@ -8,7 +8,7 @@
#define DISABLE_BRANCH_PROFILING
/* cpu_feature_enabled() cannot be used this early */
-#define USE_EARLY_PGTABLE_L5
+#define USE_EARLY_PGTABLE
#include <linux/init.h>
#include <linux/linkage.h>
@@ -3,7 +3,7 @@
#define pr_fmt(fmt) "kasan: " fmt
/* cpu_feature_enabled() cannot be used this early */
-#define USE_EARLY_PGTABLE_L5
+#define USE_EARLY_PGTABLE
#include <linux/memblock.h>
#include <linux/kasan.h>
Rename USE_EARLY_PGTABLE_L5 to USE_EARLY_PGTABLE so that it can be used by other early boot detectable page table features. Signed-off-by: Rick Edgecombe <rick.p.edgecombe@intel.com> --- arch/x86/boot/compressed/misc.h | 2 +- arch/x86/include/asm/pgtable_64_types.h | 4 ++-- arch/x86/kernel/cpu/common.c | 2 +- arch/x86/kernel/head64.c | 2 +- arch/x86/mm/kasan_init_64.c | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-)