66 lines
2.3 KiB
Diff
66 lines
2.3 KiB
Diff
From 532f5ed5aae8917b9d538ecb91972df1b79c0226 Mon Sep 17 00:00:00 2001
|
|
From: John Garry <john.garry@huawei.com>
|
|
Date: Thu, 29 Jul 2021 21:56:25 +0800
|
|
Subject: [PATCH 180/201] perf jevents: Print SoC name per system event table
|
|
|
|
mainline inclusion
|
|
from mainline-v5.15-rc1
|
|
commit 5abd3988b0382d31a35600732a46fa7f90740658
|
|
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=5abd3988b0382d31a35600732a46fa7f90740658
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Print the SoC name per system event table, which will allow the test SoC be
|
|
identified by the pmu-events test.
|
|
|
|
Signed-off-by: John Garry <john.garry@huawei.com>
|
|
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
|
|
Cc: Ian Rogers <irogers@google.com>
|
|
Cc: Ingo Molnar <mingo@redhat.com>
|
|
Cc: Jin Yao <yao.jin@linux.intel.com>
|
|
Cc: Jiri Olsa <jolsa@redhat.com>
|
|
Cc: Mark Rutland <mark.rutland@arm.com>
|
|
Cc: Namhyung Kim <namhyung@kernel.org>
|
|
Cc: Peter Zijlstra <peterz@infradead.org>
|
|
Cc: linuxarm@huawei.com
|
|
Link: https //lore.kernel.org/r/1627566986-30605-11-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/pmu-events/jevents.c | 3 ++-
|
|
tools/perf/pmu-events/pmu-events.h | 1 +
|
|
2 files changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/tools/perf/pmu-events/jevents.c b/tools/perf/pmu-events/jevents.c
|
|
index 6768ac3832e0..cafab324a395 100644
|
|
--- a/tools/perf/pmu-events/jevents.c
|
|
+++ b/tools/perf/pmu-events/jevents.c
|
|
@@ -832,7 +832,8 @@ static int process_system_event_tables(FILE *outfp)
|
|
print_system_event_mapping_table_prefix(outfp);
|
|
|
|
list_for_each_entry(sys_event_table, &sys_event_tables, list) {
|
|
- fprintf(outfp, "\n\t{\n\t\t.table = %s,\n\t},",
|
|
+ fprintf(outfp, "\n\t{\n\t\t.table = %s,\n\t\t.name = \"%s\",\n\t},",
|
|
+ sys_event_table->soc_id,
|
|
sys_event_table->soc_id);
|
|
}
|
|
|
|
diff --git a/tools/perf/pmu-events/pmu-events.h b/tools/perf/pmu-events/pmu-events.h
|
|
index 70b9c37ed957..f30fe6236291 100644
|
|
--- a/tools/perf/pmu-events/pmu-events.h
|
|
+++ b/tools/perf/pmu-events/pmu-events.h
|
|
@@ -45,6 +45,7 @@ struct pmu_events_map {
|
|
};
|
|
|
|
struct pmu_sys_events {
|
|
+ const char *name;
|
|
struct pmu_event *table;
|
|
};
|
|
|
|
--
|
|
2.27.0
|
|
|