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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B6212C433EF for ; Wed, 23 Feb 2022 12:16:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240384AbiBWMRW (ORCPT ); Wed, 23 Feb 2022 07:17:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49960 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240293AbiBWMRS (ORCPT ); Wed, 23 Feb 2022 07:17:18 -0500 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id D641337A3C for ; Wed, 23 Feb 2022 04:16:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1645618609; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=5pyhUtjUxxFByO5rd0EUPIBmodpcPeTSbHUbynU6E6g=; b=HaYw0u8J6LzfdhxCmk/t4mecR90WQhu0fNlTXps8cmJ4fz69FvcM2JBIUPYECvKVz4qZX7 TeOX5QyTZqZy57p6CfnCdN3y2OavrOn4f2p5CG2Vi1L/GkH2JEh8ucmmlxQQ27qPUd85Pb aOnUAJmKbqYnrpIRbG4oKBNMDtF6jOg= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-292-uO7Z76d7Nz2fgSwrTmAQTA-1; Wed, 23 Feb 2022 07:16:47 -0500 X-MC-Unique: uO7Z76d7Nz2fgSwrTmAQTA-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id E99581854E21; Wed, 23 Feb 2022 12:16:46 +0000 (UTC) Received: from starship (unknown [10.40.195.190]) by smtp.corp.redhat.com (Postfix) with ESMTP id B5FDB7835F; Wed, 23 Feb 2022 12:16:45 +0000 (UTC) Message-ID: Subject: Re: [PATCH 0/3] KVM: SVM: fix race between interrupt delivery and AVIC inhibition From: Maxim Levitsky To: Paolo Bonzini , linux-kernel@vger.kernel.org, kvm@vger.kernel.org Date: Wed, 23 Feb 2022 14:16:44 +0200 In-Reply-To: <20220211110117.2764381-1-pbonzini@redhat.com> References: <20220211110117.2764381-1-pbonzini@redhat.com> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.36.5 (3.36.5-2.fc32) MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2022-02-11 at 06:01 -0500, Paolo Bonzini wrote: > This is a split and cleaned-up version of Maxim's patch to fix the > SVM race between interrupt delivery and AVIC inhibition. The final > difference is just code movement and formatting. > > Maxim Levitsky (2): > KVM: SVM: extract avic_ring_doorbell > KVM: SVM: fix race between interrupt delivery and AVIC inhibition > > Paolo Bonzini (1): > KVM: SVM: set IRR in svm_deliver_interrupt > > arch/x86/kvm/svm/avic.c | 73 ++++++++++++++--------------------------- > arch/x86/kvm/svm/svm.c | 48 +++++++++++++++++++++++---- > arch/x86/kvm/svm/svm.h | 4 ++- > arch/x86/kvm/x86.c | 4 ++- > 4 files changed, 72 insertions(+), 57 deletions(-) > I know I am beeing late as these patches are already merged, but as far as I can see, they all look fine. Thanks! Best regards, Maxim Levitsky