From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752645AbdIVQm2 (ORCPT ); Fri, 22 Sep 2017 12:42:28 -0400 Received: from terminus.zytor.com ([65.50.211.136]:58711 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751898AbdIVQmV (ORCPT ); Fri, 22 Sep 2017 12:42:21 -0400 Date: Fri, 22 Sep 2017 09:41:14 -0700 From: tip-bot for Andi Kleen Message-ID: Cc: tglx@linutronix.de, hpa@zytor.com, acme@redhat.com, mingo@kernel.org, jolsa@redhat.com, ak@linux.intel.com, linux-kernel@vger.kernel.org Reply-To: linux-kernel@vger.kernel.org, hpa@zytor.com, tglx@linutronix.de, jolsa@redhat.com, mingo@kernel.org, acme@redhat.com, ak@linux.intel.com In-Reply-To: <20170908180133.GA20128@tassilo.jf.intel.com> References: <20170908180133.GA20128@tassilo.jf.intel.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf vendor events: Add JSON metrics for Broadwell Server Git-Commit-ID: 6d75abd3e84596933aa2ca91751744271cfec6cb X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 6d75abd3e84596933aa2ca91751744271cfec6cb Gitweb: http://git.kernel.org/tip/6d75abd3e84596933aa2ca91751744271cfec6cb Author: Andi Kleen AuthorDate: Sun, 23 Jul 2017 21:55:59 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 13 Sep 2017 09:49:18 -0300 perf vendor events: Add JSON metrics for Broadwell Server Add JSON metrics for Broadwell Server. Signed-off-by: Andi Kleen Cc: Jiri Olsa Link: http://lkml.kernel.org/r/20170908180133.GA20128@tassilo.jf.intel.com Signed-off-by: Arnaldo Carvalho de Melo --- .../x86/{broadwell/bdw-metrics.json => broadwellx/bdx-metrics.json} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/pmu-events/arch/x86/broadwell/bdw-metrics.json b/tools/perf/pmu-events/arch/x86/broadwellx/bdx-metrics.json similarity index 95% copy from tools/perf/pmu-events/arch/x86/broadwell/bdw-metrics.json copy to tools/perf/pmu-events/arch/x86/broadwellx/bdx-metrics.json index 49c5f12..4248b02 100644 --- a/tools/perf/pmu-events/arch/x86/broadwell/bdw-metrics.json +++ b/tools/perf/pmu-events/arch/x86/broadwellx/bdx-metrics.json @@ -85,7 +85,7 @@ }, { "BriefDescription": "Utilization of the core's Page Walker(s) serving STLB misses triggered by instruction/Load/Store accesses", - "MetricExpr": "( cpu@ITLB_MISSES.WALK_DURATION\\,cmask\\=1@ + cpu@DTLB_LOAD_MISSES.WALK_DURATION\\,cmask\\=1@ + cpu@DTLB_STORE_MISSES.WALK_DURATION\\,cmask\\=1@ + 7*(DTLB_STORE_MISSES.WALK_COMPLETED+DTLB_LOAD_MISSES.WALK_COMPLETED+ITLB_MISSES.WALK_COMPLETED)) / ( CPU_CLK_UNHALTED.THREAD_ANY / 2 ) if #SMT_on else cycles", + "MetricExpr": "( ITLB_MISSES.WALK_DURATION + DTLB_LOAD_MISSES.WALK_DURATION + DTLB_STORE_MISSES.WALK_DURATION + 7*(DTLB_STORE_MISSES.WALK_COMPLETED+DTLB_LOAD_MISSES.WALK_COMPLETED+ITLB_MISSES.WALK_COMPLETED) ) / (2*( CPU_CLK_UNHALTED.THREAD_ANY / 2 ) if #SMT_on else cycles)", "MetricGroup": "TLB", "MetricName": "Page_Walks_Utilization" },