Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754528AbdHUQEB (ORCPT ); Mon, 21 Aug 2017 12:04:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33124 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754389AbdHUQDV (ORCPT ); Mon, 21 Aug 2017 12:03:21 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 3CA4080472 Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=rkrcmar@redhat.com Date: Mon, 21 Aug 2017 18:03:14 +0200 From: Radim =?utf-8?B?S3LEjW3DocWZ?= To: Jason Wang Cc: "Michael S. Tsirkin" , Paolo Bonzini , linux-kernel@vger.kernel.org, kvm@vger.kernel.org, stable@vger.kernel.org Subject: Re: [PATCH] kvm: VMX: do not use vm-exit instruction length for fast MMIO Message-ID: <20170821160314.GB17079@flask> References: <1502890494-35208-1-git-send-email-pbonzini@redhat.com> <20170816170843-mutt-send-email-mst@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Mon, 21 Aug 2017 16:03:21 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2795 Lines: 59 2017-08-18 16:46+0800, Jason Wang: > > > On 2017年08月16日 22:10, Michael S. Tsirkin wrote: > > On Wed, Aug 16, 2017 at 03:34:54PM +0200, Paolo Bonzini wrote: > > > Microsoft pointed out privately to me that KVM's handling of > > > KVM_FAST_MMIO_BUS is invalid. Using skip_emulation_instruction is invalid > > > in EPT misconfiguration vmexit handlers, because neither EPT violations > > > nor misconfigurations are listed in the manual among the VM exits that > > > set the VM-exit instruction length field. > > > > > > While physical processors seem to set the field, this is not architectural > > > and is just a side effect of the implementation. I couldn't convince > > > myself of any condition on the exit qualification where VM-exit > > > instruction length "has" to be defined; there are no trap-like VM-exits > > > that can be repurposed; and fault-like VM-exits such as descriptor-table > > > exits provide no decoding information. So I don't really see any way > > > to keep the full speedup. > > > > > > What we can do is use EMULTYPE_SKIP; it only saves 200 clock cycles > > > because computing the physical RIP and reading the instruction is > > > expensive, but at least the eventfd is signaled before entering the > > > emulator. This saves on latency. While at it, don't check breakpoints > > > when skipping the instruction, as presumably any side effect has been > > > exposed already. > > > > > > Adding a hypercall or MSR write that does a fast MMIO write to a physical > > > address would do it, but it adds hypervisor knowledge in virtio, including > > > CPUID handling. So it would be pretty ugly in the guest-side implementation, > > > but if somebody wants to do it and the virtio side is acceptable to the > > > virtio maintainers, I am okay with it. > > > > > > Cc: Michael S. Tsirkin > > > Cc:stable@vger.kernel.org > > > Fixes: 68c3b4d1676d870f0453c31d5a52e7e65c7448ae > > > Suggested-by: Radim Krčmář > > > Signed-off-by: Paolo Bonzini > > Jason (cc) who worked on the original optimization said he can > > work to test the performance impact. > > I see regressions on both latency and cpu utilization through netperf TCP_RR > test: > > pkt_size/sessions/+transaction_rate%/+per_cpu_transaction_rate% > 1/ 1/ +0%/ -5% > 1/ 25/ -1%/ -2% > 1/ 50/ -9%/ -10% > 64/ 1/ -3%/ -9% > 64/ 25/ 0%/ -2% > 64/ 50/ -10%/ -11% > 256/ 1/ -10%/ -17% > 256/ 25/ -11%/ -12% > 256/ 50/ -9%/ -11% Might be noticeable ... I'm ok with the hypervisor detection workaround. Still, we will need a replacement mechanism for virtio if Intel doesn't change SDM. And drop this workaround after a solution has been implemented.