From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vitaly Kuznetsov Subject: Re: [PATCH v6 06/13] KVM: nVMX: optimize prepare_vmcs02{,_full} for Enlightened VMCS case Date: Wed, 17 Oct 2018 16:47:27 +0200 Message-ID: <8736t4sk8w.fsf@vitty.brq.redhat.com> References: <20181016165011.6607-1-vkuznets@redhat.com> <20181016165011.6607-7-vkuznets@redhat.com> <2064be05-4286-e3d5-cd22-13fd957b7003@redhat.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Radim =?utf-8?B?S3LEjW3DocWZ?= , Roman Kagan , "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , "Michael Kelley \(EOSG\)" , linux-kernel@vger.kernel.org, Jim Mattson , Liran Alon , kvm@vger.kernel.org To: Paolo Bonzini Return-path: In-Reply-To: <2064be05-4286-e3d5-cd22-13fd957b7003@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Paolo Bonzini writes: > On 16/10/2018 18:50, Vitaly Kuznetsov wrote: >> + if (!hv_evmcs || !(hv_evmcs->hv_clean_fields & >> + HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP2)) { >> + vmcs_write16(GUEST_CS_SELECTOR, vmcs12->guest_cs_selector); >> + vmcs_write32(GUEST_CS_LIMIT, vmcs12->guest_cs_limit); >> + vmcs_write32(GUEST_CS_AR_BYTES, vmcs12->guest_cs_ar_bytes); >> + vmcs_writel(GUEST_ES_BASE, vmcs12->guest_es_base); >> + vmcs_writel(GUEST_CS_BASE, vmcs12->guest_cs_base); >> + } > > For what it's worth, I suspect that these can be moved to > prepare_vmcs02_full. The initial implementation of shadow VMCS did not > expose "unrestricted guest" to the L1 hypervisor, and emulation does a > lot of accesses to CS (of course). Not sure how ES base ended up in > there and not DS base, though... I tried unshadowing all these fields and at least Hyper-V on KVM (without using eVMCS of course) experiences a 1200-1300 cpu cycles regression during tight cpuid loop test. I checked and this happens because it likes vmreading GUEST_CS_AR_BYTES a lot. -- Vitaly