From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vitaly Kuznetsov Subject: Re: [RFC 0/6] Enlightened VMCS support for KVM on Hyper-V Date: Tue, 16 Jan 2018 14:58:50 +0100 Message-ID: <87tvvlhplx.fsf@vitty.brq.redhat.com> References: <20180115173105.31845-1-vkuznets@redhat.com> <87inc2huux.fsf@vitty.brq.redhat.com> Mime-Version: 1.0 Content-Type: text/plain Cc: Wanpeng Li , kvm , the arch/x86 maintainers , Paolo Bonzini , Radim =?utf-8?B?S3LEjW3DocWZ?= , "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , "Michael Kelley \(EOSG\)" , Mohammed Gamal , Cathy Avery , Bandan Das , linux-kernel@vger.kernel.org To: David Hildenbrand Return-path: In-Reply-To: (David Hildenbrand's message of "Tue, 16 Jan 2018 14:39:09 +0100") Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org David Hildenbrand writes: > On 16.01.2018 13:05, Vitaly Kuznetsov wrote: >> Wanpeng Li writes: >> >>> 2018-01-16 1:30 GMT+08:00 Vitaly Kuznetsov : >>>> Early RFC. I'll refer to this patchset in my DevConf/FOSDEM >>>> presentations. >>>> >>>> When running nested KVM on Hyper-V it's possible to use so called >>>> 'Enlightened VMCS' and do normal memory reads/writes instead of >>>> doing VMWRITE/VMREAD instructions. Tests show that this speeds up >>>> tight CPUID loop almost 3 times: >>>> >>>> Before: >>>> ./cpuid_tight >>>> 20459 >>>> >>>> After: >>>> ./cpuid_tight >>>> 7698 >>> >>> Maybe you can apply a similar idea to kvm nested on kvm. >>> >> >> Yes we can. Basically, that would mean directly accessing 'struct >> vmcs12' from L1 hypervisor. >> > > Haven't looked into the details, but we have to watch out for other > VCPUs trying to modify that vmcs12. > > Basically because other VCPUs could try to modify values in vmcs12 while > we are currently building vmcs02. Nasty races could result in us copying > stuff (probably unchecked) into vmcs02 and therefore running something > that was not intended. > I don't think we share VMCS among vCPUs, do we? -- Vitaly