Skip to content

Commit 3e0bd4d

Browse files
arndbhansendc
authored andcommitted
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
1 parent e9c2a28 commit 3e0bd4d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/x86/entry/vdso/vgetcpu.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#include <linux/kernel.h>
99
#include <linux/getcpu.h>
1010
#include <asm/segment.h>
11+
#include <vdso/processor.h>
1112

1213
notrace long
1314
__vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused)

0 commit comments

Comments
 (0)