[PATCH 20/91] perf tools: Enable Hz/hz prinitg for --metric-only option
Arnaldo Carvalho de Melo
acme at kernel.org
Thu May 7 01:21:23 AEST 2020
From: Kajol Jain <kjain at linux.ibm.com>
Commit 54b5091606c18 ("perf stat: Implement --metric-only mode") added
function 'valid_only_metric()' which drops "Hz" or "hz", if it is part
of "ScaleUnit". This patch enable it since hv_24x7 supports couple of
frequency events.
Signed-off-by: Kajol Jain <kjain at linux.ibm.com>
Acked-by: Jiri Olsa <jolsa at redhat.com>
Cc: Alexander Shishkin <alexander.shishkin at linux.intel.com>
Cc: Andi Kleen <ak at linux.intel.com>
Cc: Anju T Sudhakar <anju at linux.vnet.ibm.com>
Cc: Benjamin Herrenschmidt <benh at kernel.crashing.org>
Cc: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
Cc: Jin Yao <yao.jin at linux.intel.com>
Cc: Joe Mario <jmario at redhat.com>
Cc: Kan Liang <kan.liang at linux.intel.com>
Cc: Madhavan Srinivasan <maddy at linux.vnet.ibm.com>
Cc: Mamatha Inamdar <mamatha4 at linux.vnet.ibm.com>
Cc: Mark Rutland <mark.rutland at arm.com>
Cc: Michael Ellerman <mpe at ellerman.id.au>
Cc: Michael Petlan <mpetlan at redhat.com>
Cc: Namhyung Kim <namhyung at kernel.org>
Cc: Paul Mackerras <paulus at ozlabs.org>
Cc: Peter Zijlstra <peterz at infradead.org>
Cc: Ravi Bangoria <ravi.bangoria at linux.ibm.com>
Cc: Sukadev Bhattiprolu <sukadev at linux.vnet.ibm.com>
Cc: Thomas Gleixner <tglx at linutronix.de>
Cc: linuxppc-dev at lists.ozlabs.org
Link: http://lore.kernel.org/lkml/20200401203340.31402-7-kjain@linux.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme at redhat.com>
---
tools/perf/util/stat-display.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/tools/perf/util/stat-display.c b/tools/perf/util/stat-display.c
index 9e757d18d713..679aaa655824 100644
--- a/tools/perf/util/stat-display.c
+++ b/tools/perf/util/stat-display.c
@@ -237,8 +237,6 @@ static bool valid_only_metric(const char *unit)
if (!unit)
return false;
if (strstr(unit, "/sec") ||
- strstr(unit, "hz") ||
- strstr(unit, "Hz") ||
strstr(unit, "CPUs utilized"))
return false;
return true;
--
2.21.1
More information about the Linuxppc-dev
mailing list