Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751034AbdIRFGh (ORCPT ); Mon, 18 Sep 2017 01:06:37 -0400 Received: from mga05.intel.com ([192.55.52.43]:52210 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750710AbdIRFGg (ORCPT ); Mon, 18 Sep 2017 01:06:36 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,411,1500966000"; d="scan'208";a="901210704" Subject: Re: [PATCH 2/3] mm: Handle numa statistics distinctively based-on different VM stats modes To: Dave Hansen , Michal Hocko Cc: "Luis R . Rodriguez" , Kees Cook , Andrew Morton , Jonathan Corbet , Mel Gorman , Johannes Weiner , Christopher Lameter , Sebastian Andrzej Siewior , Vlastimil Babka , Tim Chen , Andi Kleen , Jesper Dangaard Brouer , Ying Huang , Aaron Lu , Proc sysctl , Linux MM , Linux Kernel References: <1505467406-9945-1-git-send-email-kemi.wang@intel.com> <1505467406-9945-3-git-send-email-kemi.wang@intel.com> <20170915115049.vqthfawg3y4r6ogh@dhcp22.suse.cz> <26bd25c8-294f-d3cc-8ba2-845a6da33fe5@intel.com> <1bd90605-c765-ca27-b8ee-ca803a8bcdea@linux.intel.com> From: kemi Message-ID: <21090d5e-f8be-731f-75bc-b01bf53409b2@intel.com> Date: Mon, 18 Sep 2017 13:05:17 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1bd90605-c765-ca27-b8ee-ca803a8bcdea@linux.intel.com> 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 Content-Length: 581 Lines: 25 On 2017年09月18日 12:13, Dave Hansen wrote: > On 09/17/2017 08:07 PM, kemi wrote: >>>> + if (vmstat_mode) { >>>> + if (vmstat_mode == VMSTAT_COARSE_MODE) >>>> + return; >>>> + } else if (disable_zone_statistics) >>>> + return; >>>> + >>>> if (z->node != numa_node_id()) >>>> local_stat = NUMA_OTHER; >>> >>> A jump label could make this completely out of the way for the case >>> where every single cycle matters. >> >> Could you be more explicit for how to implement it here. Thanks very much. > > Take a look at include/linux/jump_label.h. > > Sure, Thanks >