diff options
author | Arnd Bergmann <arnd@arndb.de> | 2024-04-03 23:23:37 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2024-04-04 10:39:38 +0300 |
commit | 9852b1dc6a140365977d7bfb5fa03d413b3417ad (patch) | |
tree | 8305fa8f58160b5acfe1aaa26407136fd51a0495 /arch | |
parent | c3eeb1ffc6a88af9b002e22be0f70851759be03a (diff) | |
download | linux-9852b1dc6a140365977d7bfb5fa03d413b3417ad.tar.xz |
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
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/mm/numa_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
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" |