Re: [PATCH v1 3/7] x86/vmx: add ipt_state as part of vCPU state

2020-06-16 Thread Roger Pau Monné
On Tue, Jun 16, 2020 at 05:21:20PM +0200, Michał Leszczyński wrote: > Guest IPT state will be preserved across vmentry/vmexit using > this structure. I think you should squash this patch with a patch where the structure it's actually used. > Signed-off-by: Michal Leszczynski > --- > xen/arch/x8

[PATCH v1 3/7] x86/vmx: add ipt_state as part of vCPU state

2020-06-16 Thread Michał Leszczyński
Guest IPT state will be preserved across vmentry/vmexit using this structure. Signed-off-by: Michal Leszczynski --- xen/arch/x86/hvm/vmx/vmx.c | 2 ++ xen/include/asm-x86/hvm/vmx/vmcs.h | 10 ++ 2 files changed, 12 insertions(+) diff --git a/xen/arch/x86/hvm/vmx/vmx.c b/xen/arc