summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJames Cowgill <James.Cowgill@imgtec.com>2017-04-11 13:51:08 +0100
committerRalf Baechle <ralf@linux-mips.org>2017-04-12 15:13:53 +0200
commite0211327f068901ce654ba78951c35bc69fdc1de (patch)
treeb789145c66e8d89131cd328faf8baa2f61f17468 /arch
parent337b775b6cf5d093295961c1aa6ac76693b5f847 (diff)
downloadlinux-0-day-e0211327f068901ce654ba78951c35bc69fdc1de.tar.gz
linux-0-day-e0211327f068901ce654ba78951c35bc69fdc1de.tar.xz
MIPS: Fix modversioning of _mcount symbol
In commit 827456e71036 ("MIPS: Export _mcount alongside its definition") the EXPORT_SYMBOL macro exporting _mcount was moved from C code into assembly. Unlike C, exported assembly symbols need to have a function prototype in asm/asm-prototypes.h for modversions to work properly. Without this, modpost prints out this warning: WARNING: EXPORT symbol "_mcount" [vmlinux] version generation failed, symbol will not be versioned. Fix by including asm/ftrace.h (where _mcount is declared) in asm/asm-prototypes.h. Fixes: 827456e71036 ("MIPS: Export _mcount alongside its definition") Signed-off-by: James Cowgill <James.Cowgill@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/15952/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/include/asm/asm-prototypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/asm-prototypes.h b/arch/mips/include/asm/asm-prototypes.h
index a160cf69bb92d..6e28971fe73ad 100644
--- a/arch/mips/include/asm/asm-prototypes.h
+++ b/arch/mips/include/asm/asm-prototypes.h
@@ -3,3 +3,4 @@
#include <asm/fpu.h>
#include <asm-generic/asm-prototypes.h>
#include <asm/uaccess.h>
+#include <asm/ftrace.h>