85 lines
3.1 KiB
Diff
85 lines
3.1 KiB
Diff
From 5df8ed259257857d75454161bfaa79c315674747 Mon Sep 17 00:00:00 2001
|
|
From: John Garry <john.garry@huawei.com>
|
|
Date: Wed, 7 Apr 2021 18:32:45 +0800
|
|
Subject: [PATCH 145/201] perf metricgroup: Make find_metric() public with name
|
|
change
|
|
|
|
mainline inclusion
|
|
from mainline-v5.13-rc1
|
|
commit dedb76d3598618e67b3a9af89bf4f418430acbe4
|
|
category: feature
|
|
bugzilla: https://gitee.com/openeuler/kernel/issues/I8C0CX
|
|
|
|
Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=dedb76d3598618e67b3a9af89bf4f418430acbe4
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Function find_metric() is required for the metric processing in the
|
|
pmu-events testcase, so make it public. Also change the name to include
|
|
"metricgroup".
|
|
|
|
Tested-by: Paul A. Clarke <pc@us.ibm.com>
|
|
Reviewed-by: Kajol Jain <kjain@linux.ibm.com>
|
|
Signed-off-by: John Garry <john.garry@huawei.com>
|
|
Acked-by: Jiri Olsa <jolsa@redhat.com>
|
|
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
|
|
Cc: Ian Rogers <irogers@google.com>
|
|
Cc: Ingo Molnar <mingo@redhat.com>
|
|
Cc: Kan Liang <kan.liang@linux.intel.com>
|
|
Cc: Leo Yan <leo.yan@linaro.org>
|
|
Cc: Mark Rutland <mark.rutland@arm.com>
|
|
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
|
|
Cc: Namhyung Kim <namhyung@kernel.org>
|
|
Cc: Peter Zijlstra <peterz@infradead.org>
|
|
Cc: Shaokun Zhang <zhangshaokun@hisilicon.com>
|
|
Cc: Will Deacon <will@kernel.org>
|
|
Cc: linuxarm@huawei.com
|
|
Cc: linux-arm-kernel@lists.infradead.org
|
|
Link: https://lore.kernel.org/r/1617791570-165223-2-git-send-email-john.garry@huawei.com
|
|
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
|
|
Signed-off-by: hongrongxuan <hongrongxuan@huawei.com>
|
|
---
|
|
tools/perf/util/metricgroup.c | 5 +++--
|
|
tools/perf/util/metricgroup.h | 2 ++
|
|
2 files changed, 5 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/tools/perf/util/metricgroup.c b/tools/perf/util/metricgroup.c
|
|
index 10b5f92ccad8..21418ad88cb5 100644
|
|
--- a/tools/perf/util/metricgroup.c
|
|
+++ b/tools/perf/util/metricgroup.c
|
|
@@ -809,7 +809,8 @@ static int __add_metric(struct list_head *metric_list,
|
|
(match_metric(__pe->metric_group, __metric) || \
|
|
match_metric(__pe->metric_name, __metric)))
|
|
|
|
-static struct pmu_event *find_metric(const char *metric, struct pmu_events_map *map)
|
|
+struct pmu_event *metricgroup__find_metric(const char *metric,
|
|
+ struct pmu_events_map *map)
|
|
{
|
|
struct pmu_event *pe;
|
|
int i;
|
|
@@ -894,7 +895,7 @@ static int __resolve_metric(struct metric *m,
|
|
struct expr_id *parent;
|
|
struct pmu_event *pe;
|
|
|
|
- pe = find_metric(cur->key, map);
|
|
+ pe = metricgroup__find_metric(cur->key, map);
|
|
if (!pe)
|
|
continue;
|
|
|
|
diff --git a/tools/perf/util/metricgroup.h b/tools/perf/util/metricgroup.h
|
|
index 3670a8528ca5..75266dcd8830 100644
|
|
--- a/tools/perf/util/metricgroup.h
|
|
+++ b/tools/perf/util/metricgroup.h
|
|
@@ -43,6 +43,8 @@ int metricgroup__parse_groups(const struct option *opt,
|
|
bool metric_no_merge,
|
|
struct rblist *metric_events);
|
|
|
|
+struct pmu_event *metricgroup__find_metric(const char *metric,
|
|
+ struct pmu_events_map *map);
|
|
int metricgroup__parse_groups_test(struct perf_evlist *evlist,
|
|
struct pmu_events_map *map,
|
|
const char *str,
|
|
--
|
|
2.27.0
|
|
|