@@ -111,14 +111,6 @@
#include <asm/alternative.h>
#include <asm/prom.h>
-/*
- * max_pfn_mapped: highest direct mapped pfn
- *
- * The direct mapping only covers E820_RAM regions, so the ranges and gaps are
- * represented by pfn_mapped
- */
-unsigned long max_pfn_mapped;
-
#ifdef CONFIG_DMI
RESERVE_BRK(dmi_alloc, 65536);
#endif
@@ -24,6 +24,15 @@ static unsigned long __initdata pgt_buf_start;
static unsigned long __initdata pgt_buf_end;
static unsigned long __initdata pgt_buf_top;
+/*
+ * max_pfn_mapped: highest direct mapped pfn
+ * min_pfn_mapped: lowest direct mapped pfn
+ *
+ * The direct mapping only covers E820_RAM regions, so the ranges and gaps are
+ * represented by pfn_mapped
+ */
+
+unsigned long max_pfn_mapped;
static unsigned long min_pfn_mapped;
static bool __initdata can_use_brk_pgt = true;
min_pfn_mapped is defined in init.c, we can also define max_pfn_mapped here. Signed-off-by: Tang Chen <tangchen@cn.fujitsu.com> --- arch/x86/kernel/setup.c | 8 -------- arch/x86/mm/init.c | 9 +++++++++ 2 files changed, 9 insertions(+), 8 deletions(-)