diff options
author | Borislav Petkov (AMD) <bp@alien8.de> | 2024-03-26 12:47:14 +0300 |
---|---|---|
committer | Borislav Petkov (AMD) <bp@alien8.de> | 2024-03-26 12:47:14 +0300 |
commit | 4969d75dd9077e19e175e60f3c5a6c7653252e63 (patch) | |
tree | 489512b7833e20a5bac8f726c1d0f373207059be /arch | |
parent | 3186b61812c007179f1852d8e63a0f0f7dd7c783 (diff) | |
download | linux-4969d75dd9077e19e175e60f3c5a6c7653252e63.tar.xz |
x86/vdso: Fix rethunk patching for vdso-image-x32.o too
In a similar fashion to
b388e57d4628 ("x86/vdso: Fix rethunk patching for vdso-image-{32,64}.o")
annotate vdso-image-x32.o too for objtool so that it gets annotated
properly and the unused return thunk warning doesn't fire.
Reported-by: kernel test robot <oliver.sang@intel.com>
Closes: https://lore.kernel.org/oe-lkp/202403251454.23df6278-lkp@intel.com
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/202403251454.23df6278-lkp@intel.com
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/entry/vdso/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/entry/vdso/Makefile b/arch/x86/entry/vdso/Makefile index fd63051bbbbb..3d64bcc403cf 100644 --- a/arch/x86/entry/vdso/Makefile +++ b/arch/x86/entry/vdso/Makefile @@ -41,6 +41,7 @@ obj-$(CONFIG_X86_X32_ABI) += vdso-image-x32.o obj-$(CONFIG_COMPAT_32) += vdso-image-32.o vdso32-setup.o OBJECT_FILES_NON_STANDARD_vdso-image-32.o := n +OBJECT_FILES_NON_STANDARD_vdso-image-x32.o := n OBJECT_FILES_NON_STANDARD_vdso-image-64.o := n OBJECT_FILES_NON_STANDARD_vdso32-setup.o := n |