From 6a8f6cd8d788fc424cb2e2f426223d95da9c9898 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Tue, 5 May 2020 11:17:32 +0100 Subject: [PATCH] x86/pv: Compile out emul-gate-op in !CONFIG_PV32 builds MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The caller is already guarded by is_pv_32bit_vcpu(). Signed-off-by: Andrew Cooper Reviewed-by: Roger Pau Monné Reviewed-by: Jan Beulich --- xen/arch/x86/pv/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/pv/Makefile b/xen/arch/x86/pv/Makefile index cf28434ba9..75b01b0062 100644 --- a/xen/arch/x86/pv/Makefile +++ b/xen/arch/x86/pv/Makefile @@ -2,7 +2,7 @@ obj-y += callback.o obj-y += descriptor-tables.o obj-y += domain.o obj-y += emulate.o -obj-y += emul-gate-op.o +obj-$(CONFIG_PV32) += emul-gate-op.o obj-y += emul-inv-op.o obj-y += emul-priv-op.o obj-$(CONFIG_GRANT_TABLE) += grant_table.o -- 2.30.2