perf pmu: Rename perf_pmu__get_default_config to perf_pmu__arch_init
authorIan Rogers <irogers@google.com>
Thu, 12 Oct 2023 17:56:39 +0000 (10:56 -0700)
committerNamhyung Kim <namhyung@kernel.org>
Tue, 17 Oct 2023 19:40:50 +0000 (12:40 -0700)
Assign default_config as part of the init. perf_pmu__get_default_config
was doing more than just getting the default config and so this is
intended to better align with the code.

Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Cc: James Clark <james.clark@arm.com>
Cc: Suzuki K Poulose <suzuki.poulose@arm.com>
Cc: Yang Jihong <yangjihong1@huawei.com>
Cc: Will Deacon <will@kernel.org>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Jing Zhang <renyu.zj@linux.alibaba.com>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Thomas Richter <tmricht@linux.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: John Garry <john.g.garry@oracle.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: coresight@lists.linaro.org
Link: https://lore.kernel.org/r/20231012175645.1849503-2-irogers@google.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/perf/arch/arm/util/pmu.c
tools/perf/arch/s390/util/pmu.c
tools/perf/arch/x86/util/pmu.c
tools/perf/util/pmu.c
tools/perf/util/pmu.h

index a9623b128ece2270059002f184f2dcffadbdaa2d..d55d2b15f2e692189714526d5f039d1fe6330ac0 100644 (file)
 #include "../../../util/pmu.h"
 #include "../../../util/cs-etm.h"
 
-struct perf_event_attr
-*perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
+void perf_pmu__arch_init(struct perf_pmu *pmu __maybe_unused)
 {
 #ifdef HAVE_AUXTRACE_SUPPORT
        if (!strcmp(pmu->name, CORESIGHT_ETM_PMU_NAME)) {
                /* add ETM default config here */
                pmu->selectable = true;
-               return cs_etm_get_default_config(pmu);
+               pmu->default_config = cs_etm_get_default_config(pmu);
 #if defined(__aarch64__)
        } else if (strstarts(pmu->name, ARM_SPE_PMU_NAME)) {
-               return arm_spe_pmu_default_config(pmu);
+               pmu->default_config = arm_spe_pmu_default_config(pmu);
        } else if (strstarts(pmu->name, HISI_PTT_PMU_NAME)) {
                pmu->selectable = true;
 #endif
        }
 
 #endif
-       return NULL;
 }
index 11f03f32e3fd5272119cb42edacf2b5e79911ca9..886c30e001fa80b2848142d572df9da9c16bfcba 100644 (file)
 #define        S390_PMUPAI_EXT         "pai_ext"
 #define        S390_PMUCPUM_CF         "cpum_cf"
 
-struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu)
+void perf_pmu__arch_init(struct perf_pmu *pmu)
 {
        if (!strcmp(pmu->name, S390_PMUPAI_CRYPTO) ||
            !strcmp(pmu->name, S390_PMUPAI_EXT) ||
            !strcmp(pmu->name, S390_PMUCPUM_CF))
                pmu->selectable = true;
-       return NULL;
 }
index 8b53ca468a5005fdc48b808f82a04618cb57ac3d..811e2377d2d5faa23f0f54a794acf95a89badffc 100644 (file)
 #include "../../../util/pmus.h"
 #include "env.h"
 
-struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
+void perf_pmu__arch_init(struct perf_pmu *pmu __maybe_unused)
 {
 #ifdef HAVE_AUXTRACE_SUPPORT
        if (!strcmp(pmu->name, INTEL_PT_PMU_NAME)) {
                pmu->auxtrace = true;
-               return intel_pt_pmu_default_config(pmu);
+               pmu->default_config = intel_pt_pmu_default_config(pmu);
        }
        if (!strcmp(pmu->name, INTEL_BTS_PMU_NAME)) {
                pmu->auxtrace = true;
                pmu->selectable = true;
        }
 #endif
-       return NULL;
 }
 
 int perf_pmus__num_mem_pmus(void)
index 6428e264828914aa5a4f119a4210b278a5094e71..d075da0eecc0ecc0444d283212351aa32234397e 100644 (file)
@@ -954,12 +954,6 @@ void pmu_add_sys_aliases(struct perf_pmu *pmu)
        pmu_for_each_sys_event(pmu_add_sys_aliases_iter_fn, pmu);
 }
 
-struct perf_event_attr * __weak
-perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
-{
-       return NULL;
-}
-
 static char *pmu_find_alias_name(struct perf_pmu *pmu, int dirfd)
 {
        FILE *file = perf_pmu__open_file_at(pmu, dirfd, "alias");
@@ -991,6 +985,11 @@ static int pmu_max_precise(int dirfd, struct perf_pmu *pmu)
        return max_precise;
 }
 
+void __weak
+perf_pmu__arch_init(struct perf_pmu *pmu __maybe_unused)
+{
+}
+
 struct perf_pmu *perf_pmu__lookup(struct list_head *pmus, int dirfd, const char *name)
 {
        struct perf_pmu *pmu;
@@ -1037,7 +1036,7 @@ struct perf_pmu *perf_pmu__lookup(struct list_head *pmus, int dirfd, const char
        pmu_add_sys_aliases(pmu);
        list_add_tail(&pmu->list, pmus);
 
-       pmu->default_config = perf_pmu__get_default_config(pmu);
+       perf_pmu__arch_init(pmu);
 
        return pmu;
 err:
index 85190d0588528a2db8893ac8d7df7bf3932b37b9..588c64e38d6bbc034bfcf294f60a24f08407d3c0 100644 (file)
@@ -233,7 +233,7 @@ bool perf_pmu__file_exists(struct perf_pmu *pmu, const char *name);
 
 int perf_pmu__test(void);
 
-struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu);
+void perf_pmu__arch_init(struct perf_pmu *pmu);
 void pmu_add_cpu_aliases_table(struct perf_pmu *pmu,
                               const struct pmu_events_table *table);