diff options
author | Borislav Petkov <bp@suse.de> | 2020-10-07 19:55:35 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-10-08 11:39:21 +0300 |
commit | b3149ffcdb31a8eb854cc442a389ae0b539bf28a (patch) | |
tree | 5d903596210e6eaed823317fdb36c9db51c8f2b5 /arch | |
parent | 300638101329e8f1569115f3d7197ef5ef754a3a (diff) | |
download | linux-b3149ffcdb31a8eb854cc442a389ae0b539bf28a.tar.xz |
x86/mce: Allow for copy_mc_fragile symbol checksum to be generated
Add asm/mce.h to asm/asm-prototypes.h so that that asm symbol's checksum
can be generated in order to support CONFIG_MODVERSIONS with it and fix:
WARNING: modpost: EXPORT symbol "copy_mc_fragile" [vmlinux] version \
generation failed, symbol will not be versioned.
For reference see:
4efca4ed05cb ("kbuild: modversions for EXPORT_SYMBOL() for asm")
334bb7738764 ("x86/kbuild: enable modversions for symbols exported from asm")
Fixes: ec6347bb4339 ("x86, powerpc: Rename memcpy_mcsafe() to copy_mc_to_{user, kernel}()")
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20201007111447.GA23257@zn.tnic
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/asm-prototypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/asm-prototypes.h b/arch/x86/include/asm/asm-prototypes.h index 5a42f9206138..51e2bf27cc9b 100644 --- a/arch/x86/include/asm/asm-prototypes.h +++ b/arch/x86/include/asm/asm-prototypes.h @@ -5,6 +5,7 @@ #include <asm/string.h> #include <asm/page.h> #include <asm/checksum.h> +#include <asm/mce.h> #include <asm-generic/asm-prototypes.h> |