Commit e45ad701 authored by John Garry's avatar John Garry Committed by Arnaldo Carvalho de Melo

perf pmu: Refactor pmu_add_cpu_aliases()

Create pmu_add_cpu_aliases_map() from pmu_add_cpu_aliases(), so the caller
can pass the map; the pmu-events test would use this since there would
be no CPUID matching to a mapfile there.
Signed-off-by: default avatarJohn Garry <john.garry@huawei.com>
Acked-by: default avatarJiri Olsa <jolsa@redhat.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: James Clark <james.clark@arm.com>
Cc: Joakim Zhang <qiangqing.zhang@nxp.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Will Deacon <will@kernel.org>
Cc: linuxarm@huawei.com
Link: http://lore.kernel.org/lkml/1584442939-8911-4-git-send-email-john.garry@huawei.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent d8447808
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "pmu.h" #include "pmu.h"
#include "parse-events.h" #include "parse-events.h"
#include "header.h" #include "header.h"
#include "pmu-events/pmu-events.h"
#include "string2.h" #include "string2.h"
#include "strbuf.h" #include "strbuf.h"
#include "fncache.h" #include "fncache.h"
...@@ -744,16 +743,11 @@ static bool pmu_uncore_alias_match(const char *pmu_name, const char *name) ...@@ -744,16 +743,11 @@ static bool pmu_uncore_alias_match(const char *pmu_name, const char *name)
* to the current running CPU. Then, add all PMU events from that table * to the current running CPU. Then, add all PMU events from that table
* as aliases. * as aliases.
*/ */
static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu) void pmu_add_cpu_aliases_map(struct list_head *head, struct perf_pmu *pmu,
struct pmu_events_map *map)
{ {
int i; int i;
struct pmu_events_map *map;
const char *name = pmu->name; const char *name = pmu->name;
map = perf_pmu__find_map(pmu);
if (!map)
return;
/* /*
* Found a matching PMU events table. Create aliases * Found a matching PMU events table. Create aliases
*/ */
...@@ -788,6 +782,17 @@ static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu) ...@@ -788,6 +782,17 @@ static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
} }
} }
static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
{
struct pmu_events_map *map;
map = perf_pmu__find_map(pmu);
if (!map)
return;
pmu_add_cpu_aliases_map(head, pmu, map);
}
struct perf_event_attr * __weak struct perf_event_attr * __weak
perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused) perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
{ {
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include <linux/perf_event.h> #include <linux/perf_event.h>
#include <stdbool.h> #include <stdbool.h>
#include "parse-events.h" #include "parse-events.h"
#include "pmu-events/pmu-events.h"
struct perf_evsel_config_term; struct perf_evsel_config_term;
...@@ -97,6 +98,8 @@ int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt, ...@@ -97,6 +98,8 @@ int perf_pmu__scan_file(struct perf_pmu *pmu, const char *name, const char *fmt,
int perf_pmu__test(void); int perf_pmu__test(void);
struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu); struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu);
void pmu_add_cpu_aliases_map(struct list_head *head, struct perf_pmu *pmu,
struct pmu_events_map *map);
struct pmu_events_map *perf_pmu__find_map(struct perf_pmu *pmu); struct pmu_events_map *perf_pmu__find_map(struct perf_pmu *pmu);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment