From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751705AbdLLCHc (ORCPT ); Mon, 11 Dec 2017 21:07:32 -0500 Received: from mga04.intel.com ([192.55.52.120]:62503 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751281AbdLLCH2 (ORCPT ); Mon, 11 Dec 2017 21:07:28 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,393,1508828400"; d="scan'208";a="11745148" Subject: Re: [PATCH 1/2] mm: NUMA stats code cleanup and enhancement To: Michal Hocko Cc: Greg Kroah-Hartman , Andrew Morton , Vlastimil Babka , Mel Gorman , Johannes Weiner , Christopher Lameter , YASUAKI ISHIMATSU , Andrey Ryabinin , Nikolay Borisov , Pavel Tatashin , David Rientjes , Sebastian Andrzej Siewior , Dave , Andi Kleen , Tim Chen , Jesper Dangaard Brouer , Ying Huang , Aaron Lu , Aubrey Li , Linux MM , Linux Kernel References: <1511848824-18709-1-git-send-email-kemi.wang@intel.com> <20171129121740.f6drkbktc43l5ib6@dhcp22.suse.cz> <4b840074-cb5f-3c10-d65b-916bc02fb1ee@intel.com> <20171130085322.tyys6xbzzvui7ogz@dhcp22.suse.cz> <0f039a89-5500-1bf5-c013-d39ba3bf62bd@intel.com> <20171130094523.vvcljyfqjpbloe5e@dhcp22.suse.cz> <9cd6cc9f-252a-3c6f-2f1f-e39d4ec0457b@intel.com> <20171208084755.GS20234@dhcp22.suse.cz> From: kemi Message-ID: Date: Tue, 12 Dec 2017 10:05:26 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20171208084755.GS20234@dhcp22.suse.cz> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2017年12月08日 16:47, Michal Hocko wrote: > On Fri 08-12-17 16:38:46, kemi wrote: >> >> >> On 2017年11月30日 17:45, Michal Hocko wrote: >>> On Thu 30-11-17 17:32:08, kemi wrote: >> >> After thinking about how to optimize our per-node stats more gracefully, >> we may add u64 vm_numa_stat_diff[] in struct per_cpu_nodestat, thus, >> we can keep everything in per cpu counter and sum them up when read /proc >> or /sys for numa stats. >> What's your idea for that? thanks > > I would like to see a strong argument why we cannot make it a _standard_ > node counter. > all right. This issue is first reported and discussed in 2017 MM summit, referred to the topic "Provoking and fixing memory bottlenecks -Focused on the page allocator presentation" presented by Jesper. http://people.netfilter.org/hawk/presentations/MM-summit2017/MM-summit 2017-JesperBrouer.pdf (slide 15/16) As you know, page allocator is too slow and has becomes a bottleneck in high-speed network. Jesper also showed some data in that presentation: with micro benchmark stresses order-0 fast path(per CPU pages), *32%* extra CPU cycles cost (143->97) comes from CONFIG_NUMA. When I took a look at this issue, I reproduced this issue and got a similar result to Jesper's. Furthermore, with the help from Jesper, the overhead is root caused and the real cause of this overhead comes from an extra level of function calls such as zone_statistics() (*10%*, nearly 1/3, including __inc_numa_state), policy_zonelist, get_task_policy(), policy_nodemask and etc (perf profiling cpu cycles). zone_statistics() is the biggest one introduced by CONFIG_NUMA in fast path that we can do something for optimizing page allocator. Plus, the overhead of zone_statistics() significantly increase with more and more cpu cores and nodes due to cache bouncing. Therefore, we submitted a patch before to mitigate the overhead of zone_statistics() by reducing global NUMA counter update frequency (enlarge threshold size, as suggested by Dave Hansen). I also would like to have an implementation of a "_standard_node counter" for NUMA stats, but I wonder how we can keep the performance gain at the same time.