diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-05-16 21:35:45 +0200 |
---|---|---|
committer | Dave Hansen <dave.hansen@linux.intel.com> | 2023-05-18 11:56:18 -0700 |
commit | 3e0bd4dd35406a130de02c1660e32f6c40121d35 (patch) | |
tree | 2c497fe9fb70aa50e8498c54e8a4b7b0551d86c0 /arch | |
parent | e9c2a283e7d9d4e207b5ab4aa1723d62ee2ecbee (diff) | |
download | linux-stable-3e0bd4dd35406a130de02c1660e32f6c40121d35.tar.gz linux-stable-3e0bd4dd35406a130de02c1660e32f6c40121d35.tar.bz2 linux-stable-3e0bd4dd35406a130de02c1660e32f6c40121d35.zip |
x86/vdso: Include vdso/processor.h
__vdso_getcpu is declared in a header but this is not included
before the definition, causing a W=1 warning:
arch/x86/entry/vdso/vgetcpu.c:13:1: error: no previous prototype for '__vdso_getcpu' [-Werror=missing-prototypes]
arch/x86/entry/vdso/vdso32/../vgetcpu.c:13:1: error: no previous prototype for '__vdso_getcpu' [-Werror=missing-prototypes]
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Reviewed-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Link: https://lore.kernel.org/all/20230516193549.544673-17-arnd%40kernel.org
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/entry/vdso/vgetcpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/entry/vdso/vgetcpu.c b/arch/x86/entry/vdso/vgetcpu.c index 0a9007c24056..e4640306b2e3 100644 --- a/arch/x86/entry/vdso/vgetcpu.c +++ b/arch/x86/entry/vdso/vgetcpu.c @@ -8,6 +8,7 @@ #include <linux/kernel.h> #include <linux/getcpu.h> #include <asm/segment.h> +#include <vdso/processor.h> notrace long __vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused) |