From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755901AbaIIHMD (ORCPT ); Tue, 9 Sep 2014 03:12:03 -0400 Received: from cn.fujitsu.com ([59.151.112.132]:29015 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1755322AbaIIHMB (ORCPT ); Tue, 9 Sep 2014 03:12:01 -0400 X-IronPort-AV: E=Sophos;i="5.04,491,1406563200"; d="scan'208";a="35681097" Message-ID: <540EA883.9060206@cn.fujitsu.com> Date: Tue, 9 Sep 2014 15:13:07 +0800 From: tangchen User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Gleb Natapov CC: , , , , , , , , Subject: Re: [PATCH v4 4/6] kvm, mem-hotplug: Reload L1' apic access page on migration in vcpu_enter_guest(). References: <1409134661-27916-1-git-send-email-tangchen@cn.fujitsu.com> <1409134661-27916-5-git-send-email-tangchen@cn.fujitsu.com> <20140902160005.GA26540@minantech.com> <54067206.7050303@cn.fujitsu.com> <20140903150448.GJ18167@minantech.com> In-Reply-To: <20140903150448.GJ18167@minantech.com> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Gleb, On 09/03/2014 11:04 PM, Gleb Natapov wrote: > On Wed, Sep 03, 2014 at 09:42:30AM +0800, tangchen wrote: >> Hi Gleb, >> >> On 09/03/2014 12:00 AM, Gleb Natapov wrote: >>> ...... >>> +static void vcpu_reload_apic_access_page(struct kvm_vcpu *vcpu) >>> +{ >>> + /* >>> + * apic access page could be migrated. When the page is being migrated, >>> + * GUP will wait till the migrate entry is replaced with the new pte >>> + * entry pointing to the new page. >>> + */ >>> + vcpu->kvm->arch.apic_access_page = gfn_to_page(vcpu->kvm, >>> + APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT); >>> + kvm_x86_ops->set_apic_access_page_addr(vcpu->kvm, >>> + page_to_phys(vcpu->kvm->arch.apic_access_page)); >>> I am a little bit worried that here all vcpus write to vcpu->kvm->arch.apic_access_page >>> without any locking. It is probably benign since pointer write is atomic on x86. Paolo? >>> >>> Do we even need apic_access_page? Why not call >>> gfn_to_page(APIC_DEFAULT_PHYS_BASE >> PAGE_SHIFT) >>> put_page() >>> on rare occasions we need to know its address? >> Isn't it a necessary item defined in hardware spec ? >> > vcpu->kvm->arch.apic_access_page? No. This is internal kvm data structure. > >> I didn't read intel spec deeply, but according to the code, the page's >> address is >> written into vmcs. And it made me think that we cannnot remove it. >> > We cannot remove writing of apic page address into vmcs, but this is not done by > assigning to vcpu->kvm->arch.apic_access_page, but by vmwrite in set_apic_access_page_addr(). OK, I'll try to remove kvm->arch.apic_access_page and send a patch for it soon. BTW, if you don't have objection to the first two patches, would you please help to commit them first ? Thanks. > > -- > Gleb. > . >