[PATCH] x86: numa: include asm/pgtable_areas.h

From: Arnd Bergmann
Date: Wed Apr 03 2024 - 16:23:56 EST


From: Arnd Bergmann <arnd@xxxxxxxx>

The __vmalloc_start_set declaration is in a header that is not included
in numa_32.c in current linux-next:

arch/x86/mm/numa_32.c: In function 'initmem_init':
arch/x86/mm/numa_32.c:57:9: error: '__vmalloc_start_set' undeclared (first use in this function)
57 | __vmalloc_start_set = true;
| ^~~~~~~~~~~~~~~~~~~
arch/x86/mm/numa_32.c:57:9: note: each undeclared identifier is reported only once for each function it appears in

Add an explicit #include

Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx>
---
This showed up in linux-next after 6.8-rc1, but could not immediately see what changed.
---
arch/x86/mm/numa_32.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/x86/mm/numa_32.c b/arch/x86/mm/numa_32.c
index 104544359d69..025fd7ea5d69 100644
--- a/arch/x86/mm/numa_32.c
+++ b/arch/x86/mm/numa_32.c
@@ -24,6 +24,7 @@

#include <linux/memblock.h>
#include <linux/init.h>
+#include <asm/pgtable_areas.h>

#include "numa_internal.h"

--
2.39.2