File perf-list-allow-plurals-for-metric-metricgroup.patch of Package perf
88
1
From: Kim Phillips <kim.phillips@amd.com>
2
Date: Thu, 19 Sep 2019 15:43:05 -0500
3
Subject: perf list: Allow plurals for metric, metricgroup
4
MIME-Version: 1.0
5
Content-Type: text/plain; charset=UTF-8
6
Content-Transfer-Encoding: 8bit
7
Git-commit: 8788d36950dae26074dc63b46eab3debb4b210b4
8
Patch-mainline: v5.4-rc1
9
References: git-fixes
10
11
Enhance usability by allowing the same plurality used in the output
12
title, for the command line parameter.
13
14
BEFORE, perf deceitfully acts as if there are no metrics to be had:
15
16
$ perf list metrics
17
18
List of pre-defined events (to be used in -e):
19
20
Metric Groups:
21
22
$
23
24
But singular 'metric' shows a list of metrics:
25
26
$ perf list metric
27
28
List of pre-defined events (to be used in -e):
29
30
Metrics:
31
32
IPC
33
[Instructions Per Cycle (per logical thread)]
34
UPI
35
[Uops Per Instruction]
36
37
AFTER, when asking for 'metrics', we actually see the metrics get listed:
38
39
$ perf list metrics
40
41
List of pre-defined events (to be used in -e):
42
43
Metrics:
44
45
IPC
46
[Instructions Per Cycle (per logical thread)]
47
UPI
48
[Uops Per Instruction]
49
50
Fixes: 71b0acce78d1 ("perf list: Add metric groups to perf list")
51
Signed-off-by: Kim Phillips <kim.phillips@amd.com>
52
Reviewed-by: Andi Kleen <ak@linux.intel.com>
53
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
54
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
55
Cc: Borislav Petkov <bp@suse.de>
56
Cc: Janakarajan Natarajan <janakarajan.natarajan@amd.com>
57
Cc: Jin Yao <yao.jin@linux.intel.com>
58
Cc: Jiri Olsa <jolsa@redhat.com>
59
Cc: Kan Liang <kan.liang@linux.intel.com>
60
Cc: Luke Mujica <lukemujica@google.com>
61
Cc: Martin Liška <mliska@suse.cz>
62
Cc: Namhyung Kim <namhyung@kernel.org>
63
Cc: Peter Zijlstra <peterz@infradead.org>
64
Link: http://lore.kernel.org/lkml/20190919204306.12598-4-kim.phillips@amd.com
65
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
66
Signed-off-by: Tony Jones <tonyj@suse.de>
67
---
68
tools/perf/builtin-list.c | 4 ++--
69
1 file changed, 2 insertions(+), 2 deletions(-)
70
71
diff --git a/tools/perf/builtin-list.c b/tools/perf/builtin-list.c
72
index e290f6b348d8..08e62ae9d37e 100644
73
--- a/tools/perf/builtin-list.c
74
+++ b/tools/perf/builtin-list.c
75
76
long_desc_flag, details_flag);
77
else if (strcmp(argv[i], "sdt") == 0)
78
print_sdt_events(NULL, NULL, raw_dump);
79
- else if (strcmp(argv[i], "metric") == 0)
80
+ else if (strcmp(argv[i], "metric") == 0 || strcmp(argv[i], "metrics") == 0)
81
metricgroup__print(true, false, NULL, raw_dump, details_flag);
82
- else if (strcmp(argv[i], "metricgroup") == 0)
83
+ else if (strcmp(argv[i], "metricgroup") == 0 || strcmp(argv[i], "metricgroups") == 0)
84
metricgroup__print(false, true, NULL, raw_dump, details_flag);
85
else if ((sep = strchr(argv[i], ':')) != NULL) {
86
int sep_idx;
87
88