Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp1890260pxk; Tue, 1 Sep 2020 10:07:06 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzUPzPDIJbuIeKwuTGwnY6BcI4u9OcprstmEsaBl5acPEsA6NJ71cCxGidUC84SWrEHDwT+ X-Received: by 2002:a17:906:7b83:: with SMTP id s3mr2394903ejo.2.1598980026680; Tue, 01 Sep 2020 10:07:06 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1598980026; cv=none; d=google.com; s=arc-20160816; b=ipdIhCVe5P+hZdkwGfXStqwilEdz0EkPJBDrat+YtMUKeMXFlQ91OTOg988jVNCraR i4eXQ2gMzJSzjPkhfdd3W9VuAqlOB+5EomLXKF8cJAvDbhtSENLaqk/lNoaVavgNQF77 fV18v8Cq3nVQiuluwMb4Y+XUVfCKLLcr7JbO3O9CR1kK8pRzOmPi+pYnDKOTQ0u+y18I Dw8OgdxyXTHjJlq4rfd6tqjkCTIJr87C+UHIeNWeaBvssnzv8c3iTu5qs9mwaOk385hA v1LYt8WqIAJpQvP+8IMlfv7BUSOZAlO4ssrVZLQp//axRGfyEUDAjnSMHah8C5CvjTDG /2sw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding :content-language:in-reply-to:mime-version:user-agent:date :message-id:from:references:cc:to:subject; bh=l/33lGsHfkQPAo4qAuGX6QS5JGrL+fKZr+nVJKy2SU4=; b=HPfKh32vZC/DRiSuzJQF9psRYd9/5h3tKx4dvTJd1xzqcvTiPffGJPguzFx5GYBn1h FPdlc58mx8qWiiWGGXGbVd00jRKvWTBJ71iiQ4Qo0IJtG0/h8amRj0Aiv9masGmmOfA1 ho8sLV6k39SYe7paxK9uYdhhFv7UeGmKg5C81vOR3ralwy0r0qKOHSamQ/Vxhuefahno 3Tn+9W6AlghO419qNIySoqwWH7GOIg0UuvuwBMXr6ptrtGtU2pcZotqKgWmYqo8OlZYm snAbjA+g4Mm2FRe3ikQODeqO0g48Jqs4B6ntfemnvohpbsaCeiL3sj9zdJ/EiLSEczcM IcTA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id n1si982224ejb.57.2020.09.01.10.06.42; Tue, 01 Sep 2020 10:07:06 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729742AbgIARGN (ORCPT + 99 others); Tue, 1 Sep 2020 13:06:13 -0400 Received: from mx2.suse.de ([195.135.220.15]:52894 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729600AbgIARGE (ORCPT ); Tue, 1 Sep 2020 13:06:04 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id D990FAC26; Tue, 1 Sep 2020 17:06:02 +0000 (UTC) Subject: Re: [PATCH v3 1/3] mm/pageblock: mitigation cmpxchg false sharing in pageblock flags To: Alex Shi , Anshuman Khandual , David Hildenbrand , Matthew Wilcox Cc: Andrew Morton , Mel Gorman , linux-mm@kvack.org, linux-kernel@vger.kernel.org References: <1598928612-68996-1-git-send-email-alex.shi@linux.alibaba.com> From: Vlastimil Babka Message-ID: Date: Tue, 1 Sep 2020 19:06:02 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 MIME-Version: 1.0 In-Reply-To: <1598928612-68996-1-git-send-email-alex.shi@linux.alibaba.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 9/1/20 4:50 AM, Alex Shi wrote: > pageblock_flags is used as long, since every pageblock_flags is just 4 > bits, 'long' size will include 8(32bit machine) or 16 pageblocks' flags, > that flag setting has to sync in cmpxchg with 7 or 15 other pageblock > flags. It would cause long waiting for sync. > > If we could change the pageblock_flags variable as char, we could use > char size cmpxchg, which just sync up with 2 pageblock flags. it could > relief much false sharing in cmpxchg. > > With this and next patch, we could see mmtests/thpscale get slight fast > on my 4 cores box, and cmpxchg retry times is reduced. > > pageblock pageblock pageblock rc2 rc2 rc2 > 16 16-2 16-3 a b c > Duration User 14.81 15.24 14.55 14.76 14.97 14.38 > Duration System 84.44 88.38 90.64 100.43 89.15 88.89 > Duration Elapsed 98.83 99.06 99.81 100.30 99.24 99.14 The large variance in these numbers suggest that 3 iterations are not enough to conclude a statistically significant difference. You'd need more iterations and calculate at least mean+variance. > rc2 is 5.9-rc2 kernel, pageblock is 5.9-rc2 + this patchset > > Signed-off-by: Alex Shi > Cc: Andrew Morton > Cc: Mel Gorman > Cc: linux-mm@kvack.org > Cc: linux-kernel@vger.kernel.org > --- > include/linux/mmzone.h | 6 +++--- > include/linux/pageblock-flags.h | 2 +- > mm/page_alloc.c | 38 +++++++++++++++++++------------------- > 3 files changed, 23 insertions(+), 23 deletions(-) > > diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h > index 8379432f4f2f..be676e659fb7 100644 > --- a/include/linux/mmzone.h > +++ b/include/linux/mmzone.h > @@ -437,7 +437,7 @@ struct zone { > * Flags for a pageblock_nr_pages block. See pageblock-flags.h. > * In SPARSEMEM, this map is stored in struct mem_section > */ > - unsigned long *pageblock_flags; > + unsigned char *pageblock_flags; > #endif /* CONFIG_SPARSEMEM */ > > /* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */ > @@ -1159,7 +1159,7 @@ struct mem_section_usage { > DECLARE_BITMAP(subsection_map, SUBSECTIONS_PER_SECTION); > #endif > /* See declaration of similar field in struct zone */ > - unsigned long pageblock_flags[0]; > + unsigned char pageblock_flags[0]; > }; > > void subsection_map_init(unsigned long pfn, unsigned long nr_pages); > @@ -1212,7 +1212,7 @@ struct mem_section { > extern struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT]; > #endif > > -static inline unsigned long *section_to_usemap(struct mem_section *ms) > +static inline unsigned char *section_to_usemap(struct mem_section *ms) > { > return ms->usage->pageblock_flags; > } > diff --git a/include/linux/pageblock-flags.h b/include/linux/pageblock-flags.h > index fff52ad370c1..d189441568eb 100644 > --- a/include/linux/pageblock-flags.h > +++ b/include/linux/pageblock-flags.h > @@ -54,7 +54,7 @@ enum pageblock_bits { > /* Forward declaration */ > struct page; > > -unsigned long get_pfnblock_flags_mask(struct page *page, > +unsigned char get_pfnblock_flags_mask(struct page *page, > unsigned long pfn, > unsigned long mask); > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index fab5e97dc9ca..81e96d4d9c42 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -445,7 +445,7 @@ static inline bool defer_init(int nid, unsigned long pfn, unsigned long end_pfn) > #endif > > /* Return a pointer to the bitmap storing bits affecting a block of pages */ > -static inline unsigned long *get_pageblock_bitmap(struct page *page, > +static inline unsigned char *get_pageblock_bitmap(struct page *page, > unsigned long pfn) > { > #ifdef CONFIG_SPARSEMEM > @@ -474,24 +474,24 @@ static inline int pfn_to_bitidx(struct page *page, unsigned long pfn) > * Return: pageblock_bits flags > */ > static __always_inline > -unsigned long __get_pfnblock_flags_mask(struct page *page, > +unsigned char __get_pfnblock_flags_mask(struct page *page, > unsigned long pfn, > unsigned long mask) > { > - unsigned long *bitmap; > - unsigned long bitidx, word_bitidx; > - unsigned long word; > + unsigned char *bitmap; > + unsigned long bitidx, byte_bitidx; > + unsigned char byte; > > bitmap = get_pageblock_bitmap(page, pfn); > bitidx = pfn_to_bitidx(page, pfn); > - word_bitidx = bitidx / BITS_PER_LONG; > - bitidx &= (BITS_PER_LONG-1); > + byte_bitidx = bitidx / BITS_PER_BYTE; > + bitidx &= (BITS_PER_BYTE-1); > > - word = bitmap[word_bitidx]; > - return (word >> bitidx) & mask; > + byte = bitmap[byte_bitidx]; > + return (byte >> bitidx) & mask; > } > > -unsigned long get_pfnblock_flags_mask(struct page *page, unsigned long pfn, > +unsigned char get_pfnblock_flags_mask(struct page *page, unsigned long pfn, > unsigned long mask) > { > return __get_pfnblock_flags_mask(page, pfn, mask); > @@ -513,29 +513,29 @@ void set_pfnblock_flags_mask(struct page *page, unsigned long flags, > unsigned long pfn, > unsigned long mask) > { > - unsigned long *bitmap; > - unsigned long bitidx, word_bitidx; > - unsigned long old_word, word; > + unsigned char *bitmap; > + unsigned long bitidx, byte_bitidx; > + unsigned char old_byte, byte; > > BUILD_BUG_ON(NR_PAGEBLOCK_BITS != 4); > BUILD_BUG_ON(MIGRATE_TYPES > (1 << PB_migratetype_bits)); > > bitmap = get_pageblock_bitmap(page, pfn); > bitidx = pfn_to_bitidx(page, pfn); > - word_bitidx = bitidx / BITS_PER_LONG; > - bitidx &= (BITS_PER_LONG-1); > + byte_bitidx = bitidx / BITS_PER_BYTE; > + bitidx &= (BITS_PER_BYTE-1); > > VM_BUG_ON_PAGE(!zone_spans_pfn(page_zone(page), pfn), page); > > mask <<= bitidx; > flags <<= bitidx; > > - word = READ_ONCE(bitmap[word_bitidx]); > + byte = READ_ONCE(bitmap[byte_bitidx]); > for (;;) { > - old_word = cmpxchg(&bitmap[word_bitidx], word, (word & ~mask) | flags); > - if (word == old_word) > + old_byte = cmpxchg(&bitmap[byte_bitidx], byte, (byte & ~mask) | flags); > + if (byte == old_byte) > break; > - word = old_word; > + byte = old_byte; > } > } > >