Re: [PATCH 11/29] nVMX: Implement VMCLEAR

2011-01-30 Thread Avi Kivity
On 01/27/2011 10:35 AM, Nadav Har'El wrote: This patch implements the VMCLEAR instruction. +/* Emulate the VMCLEAR instruction */ +static int handle_vmclear(struct kvm_vcpu *vcpu) +{ + struct vcpu_vmx *vmx = to_vmx(vcpu); + gva_t gva; + gpa_t vmcs12_addr; + struct

[PATCH 11/29] nVMX: Implement VMCLEAR

2011-01-27 Thread Nadav Har'El
This patch implements the VMCLEAR instruction. Signed-off-by: Nadav Har'El n...@il.ibm.com --- arch/x86/kvm/vmx.c | 63 ++- 1 file changed, 62 insertions(+), 1 deletion(-) --- .before/arch/x86/kvm/vmx.c 2011-01-26 18:06:04.0 +0200 +++