From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B4796C54E4A for ; Tue, 12 May 2020 15:32:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 91A5A206CC for ; Tue, 12 May 2020 15:32:17 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="iE1w5kIF" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730632AbgELPcQ (ORCPT ); Tue, 12 May 2020 11:32:16 -0400 Received: from us-smtp-2.mimecast.com ([205.139.110.61]:59055 "EHLO us-smtp-delivery-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726388AbgELPcQ (ORCPT ); Tue, 12 May 2020 11:32:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1589297534; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=3znfxGl3Y8dtZtdYEiFhfu/pKUx/1DihfE1tclQt+xI=; b=iE1w5kIFrZ8lziTDGQeWbNCfQZAvyEQvSSE/CVg3DLkOmNzmqRMAQl3iGLkRDsjGIaZ6lS 9f+o07Jw3d+Ch9B6IX/P/vVrj1B3FyS740jKAtZv+rfdKdKDJTMm+u6Aox6WX+FzMjKL3c 7OJ+QaqO0h7lqPyIAy6y6YbSTkpx3Fs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-370-_q3gu77AM26zTzK1ED8dgQ-1; Tue, 12 May 2020 11:32:13 -0400 X-MC-Unique: _q3gu77AM26zTzK1ED8dgQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3E5B419200C0; Tue, 12 May 2020 15:32:11 +0000 (UTC) Received: from horse.redhat.com (ovpn-116-85.rdu2.redhat.com [10.10.116.85]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2E5FE6E9E0; Tue, 12 May 2020 15:32:10 +0000 (UTC) Received: by horse.redhat.com (Postfix, from userid 10451) id AE9CE220C05; Tue, 12 May 2020 11:32:09 -0400 (EDT) Date: Tue, 12 May 2020 11:32:09 -0400 From: Vivek Goyal To: Vitaly Kuznetsov Cc: kvm@vger.kernel.org, x86@kernel.org, Paolo Bonzini , Andy Lutomirski , Thomas Gleixner , Borislav Petkov , "H. Peter Anvin" , Wanpeng Li , Sean Christopherson , Jim Mattson , Gavin Shan , Peter Zijlstra , linux-kernel@vger.kernel.org Subject: Re: [PATCH 0/8] KVM: x86: Interrupt-based mechanism for async_pf 'page present' notifications Message-ID: <20200512153209.GC138129@redhat.com> References: <20200511164752.2158645-1-vkuznets@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200511164752.2158645-1-vkuznets@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Vitaly, Are there any corresponding qemu patches as well to enable new functionality. Wanted to test it. Thanks Vivek On Mon, May 11, 2020 at 06:47:44PM +0200, Vitaly Kuznetsov wrote: > Concerns were expressed around (ab)using #PF for KVM's async_pf mechanism, > it seems that re-using #PF exception for a PV mechanism wasn't a great > idea after all. The Grand Plan is to switch to using e.g. #VE for 'page > not present' events and normal APIC interrupts for 'page ready' events. > This series does the later. > > Changes since RFC: > - Using #PF for 'page ready' is deprecated and removed [Paolo Bonzini] > - 'reason' field in 'struct kvm_vcpu_pv_apf_data' is not used for 'page ready' > notifications and 'pageready_token' is not used for 'page not present' events > [Paolo Bonzini] > - Renamed MSR_KVM_ASYNC_PF2 -> MSR_KVM_ASYNC_PF_INT [Peter Xu] > - Drop 'enabled' field from MSR_KVM_ASYNC_PF_INT [Peter Xu] > - Other minor changes supporting the above. > > Vitaly Kuznetsov (8): > Revert "KVM: async_pf: Fix #DF due to inject "Page not Present" and > "Page Ready" exceptions simultaneously" > KVM: x86: extend struct kvm_vcpu_pv_apf_data with token info > KVM: introduce kvm_read_guest_offset_cached() > KVM: x86: interrupt based APF page-ready event delivery > KVM: x86: acknowledgment mechanism for async pf page ready > notifications > KVM: x86: announce KVM_FEATURE_ASYNC_PF_INT > KVM: x86: Switch KVM guest to using interrupts for page ready APF > delivery > KVM: x86: drop KVM_PV_REASON_PAGE_READY case from > kvm_handle_page_fault() > > Documentation/virt/kvm/cpuid.rst | 6 ++ > Documentation/virt/kvm/msr.rst | 106 ++++++++++++++------ > arch/s390/include/asm/kvm_host.h | 2 + > arch/x86/entry/entry_32.S | 5 + > arch/x86/entry/entry_64.S | 5 + > arch/x86/include/asm/hardirq.h | 3 + > arch/x86/include/asm/irq_vectors.h | 6 +- > arch/x86/include/asm/kvm_host.h | 7 +- > arch/x86/include/asm/kvm_para.h | 6 ++ > arch/x86/include/uapi/asm/kvm_para.h | 11 ++- > arch/x86/kernel/irq.c | 9 ++ > arch/x86/kernel/kvm.c | 42 ++++++-- > arch/x86/kvm/cpuid.c | 3 +- > arch/x86/kvm/mmu/mmu.c | 10 +- > arch/x86/kvm/x86.c | 142 ++++++++++++++++++--------- > include/linux/kvm_host.h | 3 + > include/uapi/linux/kvm.h | 1 + > virt/kvm/async_pf.c | 10 ++ > virt/kvm/kvm_main.c | 19 +++- > 19 files changed, 295 insertions(+), 101 deletions(-) > > -- > 2.25.4 >