]> xenbits.xensource.com Git - xen.git/commitdiff
xen/x86: prevent addition of .note.gnu.property if livepatch is enabled
authorRoger Pau Monné <roger.pau@citrix.com>
Tue, 12 Nov 2024 12:43:23 +0000 (13:43 +0100)
committerJan Beulich <jbeulich@suse.com>
Tue, 12 Nov 2024 12:43:23 +0000 (13:43 +0100)
GNU assembly that supports such feature will unconditionally add a
.note.gnu.property section to object files.  The content of that section can
change depending on the generated instructions.  The current logic in
livepatch-build-tools doesn't know how to deal with such section changing
as a result of applying a patch and rebuilding.

Since .note.gnu.property is not consumed by the Xen build, suppress its
addition when livepatch support is enabled.

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
master commit: 718400a54dcfcc8a11958a6d953168f50944f002
master date: 2024-11-11 13:19:45 +0100

xen/arch/x86/arch.mk

index 4f6c086988dd0b8a6bde9f5f6751fde801b409c7..a683d4bedc5278bbb7931254cfcdfd0b8abb1b8e 100644 (file)
@@ -46,6 +46,12 @@ CFLAGS-$(CONFIG_CC_IS_GCC) += -fno-jump-tables
 CFLAGS-$(CONFIG_CC_IS_CLANG) += -mretpoline-external-thunk
 endif
 
+# Disable the addition of a .note.gnu.property section to object files when
+# livepatch support is enabled.  The contents of that section can change
+# depending on the instructions used, and livepatch-build-tools doesn't know
+# how to deal with such changes.
+$(call cc-option-add,CFLAGS-$(CONFIG_LIVEPATCH),CC,-Wa$$(comma)-mx86-used-note=no)
+
 ifdef CONFIG_XEN_IBT
 # Force -fno-jump-tables to work around
 #   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104816