From: Wei Liu Date: Fri, 10 Aug 2018 17:08:00 +0000 (+0100) Subject: x86: guard HAS_VPCI with CONFIG_HVM X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3404 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cc4e0524e0a3b475b929f68c4ff2fb893fe977fc;p=xen.git x86: guard HAS_VPCI with CONFIG_HVM VPCI is only useful for PVH / HVM guests. Ideally CONFIG_HVM should imply !PV_SHIM_EXCLUSIVE, but we still want to build PV_SHIM_EXCLUSIVE with CONFIG_HVM at this stage because a lot of things are still entangled. Signed-off-by: Wei Liu Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/Kconfig b/xen/arch/x86/Kconfig index ba5cb62bdd..73ab8f8f9f 100644 --- a/xen/arch/x86/Kconfig +++ b/xen/arch/x86/Kconfig @@ -23,7 +23,7 @@ config X86 select HAS_PCI select HAS_PDX select HAS_UBSAN - select HAS_VPCI if !PV_SHIM_EXCLUSIVE + select HAS_VPCI if !PV_SHIM_EXCLUSIVE && HVM select NEEDS_LIBELF select NUMA