Re: [RFC 05/10] x86/traps: guard vmx specific functions with INTEL_VMX

2023-02-14 Thread Jan Beulich
On 13.02.2023 15:57, Xenia Ragiadakou wrote: > The functions vmx_vmcs_enter() and vmx_vmcs_exit() are VT-x specific. > Guard their calls with INTEL_VMX. > > No functional change intended. > > Signed-off-by: Xenia Ragiadakou With whatever the final name of the Kconfig control is going to be Acke

[RFC 05/10] x86/traps: guard vmx specific functions with INTEL_VMX

2023-02-13 Thread Xenia Ragiadakou
The functions vmx_vmcs_enter() and vmx_vmcs_exit() are VT-x specific. Guard their calls with INTEL_VMX. No functional change intended. Signed-off-by: Xenia Ragiadakou --- xen/arch/x86/traps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/traps.c b/xen/arch