Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755396Ab3J1DQR (ORCPT ); Sun, 27 Oct 2013 23:16:17 -0400 Received: from mail-pa0-f50.google.com ([209.85.220.50]:50474 "EHLO mail-pa0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751869Ab3J1DQP (ORCPT ); Sun, 27 Oct 2013 23:16:15 -0400 Message-ID: <526DD6F5.70902@gmail.com> Date: Mon, 28 Oct 2013 11:16:05 +0800 From: Xiao Guangrong User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.0 MIME-Version: 1.0 To: Gleb Natapov CC: Xiao Guangrong , avi.kivity@gmail.com, mtosatti@redhat.com, pbonzini@redhat.com, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, aarcange@redhat.com Subject: Re: [PATCH v3 10/15] KVM: MMU: allocate shadow pages from slab References: <1382534973-13197-1-git-send-email-xiaoguangrong@linux.vnet.ibm.com> <1382534973-13197-11-git-send-email-xiaoguangrong@linux.vnet.ibm.com> <20131024091905.GB5289@redhat.com> <5268E888.7060608@linux.vnet.ibm.com> <20131024095204.GD5289@redhat.com> <5268F226.4030309@gmail.com> <20131024103925.GE5289@redhat.com> <5268FE1D.50809@gmail.com> <20131024123239.GA26465@redhat.com> In-Reply-To: <20131024123239.GA26465@redhat.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2717 Lines: 66 On 10/24/2013 08:32 PM, Gleb Natapov wrote: > On Thu, Oct 24, 2013 at 07:01:49PM +0800, Xiao Guangrong wrote: >> On 10/24/2013 06:39 PM, Gleb Natapov wrote: >>> On Thu, Oct 24, 2013 at 06:10:46PM +0800, Xiao Guangrong wrote: >>>> On 10/24/2013 05:52 PM, Gleb Natapov wrote: >>>>> On Thu, Oct 24, 2013 at 05:29:44PM +0800, Xiao Guangrong wrote: >>>>>> On 10/24/2013 05:19 PM, Gleb Natapov wrote: >>>>>> >>>>>>>> @@ -946,7 +947,7 @@ static inline struct kvm_mmu_page *page_header(hpa_t shadow_page) >>>>>>>> { >>>>>>>> struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT); >>>>>>>> >>>>>>>> - return (struct kvm_mmu_page *)page_private(page); >>>>>>>> + return (struct kvm_mmu_page *)(page->mapping); >>>>>>> Why? >>>>>> >>>>>> That's because page->private has been used by slab: >>>>>> >>>>> But does lockless path actually looks at it? >>>> >>>> Lockless path does not use it, however, it is used by kvm_mmu_page(): >>>> >>>> static inline struct kvm_mmu_page *page_header(hpa_t shadow_page) >>>> { >>>> struct page *page = pfn_to_page(shadow_page >> PAGE_SHIFT); >>>> >>>> return (struct kvm_mmu_page *)(page->mapping); >>>> } >>>> >>>> which is used in the common code. >>> Ah, so the pointer is not available even after object is allocated. >>> Make sense since we allocate object, not page here, but is it safe to >>> use mapping like that? >> >> The commens says: >> >> struct address_space *mapping; /* If low bit clear, points to >> * inode address_space, or NULL. >> * If page mapped as anonymous >> * memory, low bit is set, and >> * it points to anon_vma object: >> * see PAGE_MAPPING_ANON below. >> >> It seems mapping is used for address_space or anonymous memory, in >> our case, the page is used by slab, so I guess it is ok. And the bug >> i put in set_page_header() was not tiggered on both slab and slub. >> > Yeah, I also think so. I asked Andrea (copied) and he thinks that it is > safe too currently, but things changes fast in this area. Andrea? > Another option is too save slab_cache pointer and reset it before > freeing the object but it looks ugly. It's ugly but it isn't too bad. :) Since currently kvm is extensively used to test/measure linux kernel and the BUG_ON() in set_page_header() can help us to detect the potential issue, it is easy for us to fix the possible bug in the development-cycle if 'mapping' is used by slab. If that really happen, maybe we can switch it to your way instead. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/