Skip to content

Commit 9852b1d

Browse files
arndbingomolnar
authored andcommitted
x86/numa/32: Include missing <asm/pgtable_areas.h>
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@arndb.de> Signed-off-by: Ingo Molnar <mingo@kernel.org> Link: https://lore.kernel.org/r/20240403202344.3463169-1-arnd@kernel.org
1 parent c3eeb1f commit 9852b1d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/x86/mm/numa_32.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
#include <linux/memblock.h>
2626
#include <linux/init.h>
27+
#include <asm/pgtable_areas.h>
2728

2829
#include "numa_internal.h"
2930

0 commit comments

Comments
 (0)