Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753000AbdLMNHT (ORCPT ); Wed, 13 Dec 2017 08:07:19 -0500 Received: from 5751f4a1.skybroadband.com ([87.81.244.161]:62974 "EHLO dan.rpsys.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752584AbdLMNHO (ORCPT ); Wed, 13 Dec 2017 08:07:14 -0500 X-Greylist: delayed 742 seconds by postgrey-1.27 at vger.kernel.org; Wed, 13 Dec 2017 08:07:14 EST Message-ID: <1513169674.19417.188.camel@linuxfoundation.org> Subject: Re: [PATCH 1/2] KVM: x86: fix APIC page invalidation From: Richard Purdie To: Radim =?UTF-8?Q?Kr=C4=8Dm=C3=A1=C5=99?= , Fabian =?ISO-8859-1?Q?Gr=FCnbichler?= Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, kvm@vger.kernel.org, Paolo Bonzini , Andrea Arcangeli , =?ISO-8859-1?Q?J=E9r=F4me?= Glisse , stable Date: Wed, 13 Dec 2017 12:54:34 +0000 In-Reply-To: <20171130180546.4331-1-rkrcmar@redhat.com> References: <20171130161933.GB1606@flask> <20171130180546.4331-1-rkrcmar@redhat.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3.2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1172 Lines: 34 On Thu, 2017-11-30 at 19:05 +0100, Radim Krčmář wrote: > Implementation of the unpinned APIC page didn't update the VMCS > address > cache when invalidation was done through range mmu notifiers. > This became a problem when the page notifier was removed. > > Re-introduce the arch-specific helper and call it from > ...range_start. > > Fixes: 38b9917350cb ("kvm: vmx: Implement set_apic_access_page_addr") > Fixes: 369ea8242c0f ("mm/rmap: update to new mmu_notifier semantic > v2") > Signed-off-by: Radim Krčmář > --- >  arch/x86/include/asm/kvm_host.h |  3 +++ >  arch/x86/kvm/x86.c              | 14 ++++++++++++++ >  virt/kvm/kvm_main.c             |  8 ++++++++ >  3 files changed, 25 insertions(+) Thanks for this. I've been chasing APIC related hangs booting images with qemu-system-x86_64 on 4.13 and 4.14 host kernels where the guest doesn't have x2apic enabled. I can confirm this fixes issues the Yocto Project automated testing infrastructure was seeing. I'd like to add support for backporting this in stable. Tested-by: Richard Purdie Cheers, Richard