perf pmu: Move perf_pmu__set_format to pmu.y
authorIan Rogers <irogers@google.com>
Wed, 23 Aug 2023 08:08:06 +0000 (01:08 -0700)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 23 Aug 2023 11:48:49 +0000 (08:48 -0300)
Avoid having the function in the C and header file, as it is only used
locally by pmu.y.

Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Gaosheng Cui <cuigaosheng1@huawei.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Clark <james.clark@arm.com>
Cc: Jing Zhang <renyu.zj@linux.alibaba.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: John Garry <john.g.garry@oracle.com>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Cc: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230823080828.1460376-4-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/pmu.c
tools/perf/util/pmu.h
tools/perf/util/pmu.y

index 7683c6749d66c623283ab2774d1a96d8781c9f0d..40999e1fab8f9592e9574d762d653739372e07f5 100644 (file)
@@ -1417,18 +1417,6 @@ int perf_pmu__new_format(struct list_head *list, char *name,
        return 0;
 }
 
-void perf_pmu__set_format(unsigned long *bits, long from, long to)
-{
-       long b;
-
-       if (!to)
-               to = from;
-
-       memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
-       for (b = from; b <= to; b++)
-               __set_bit(b, bits);
-}
-
 void perf_pmu__del_formats(struct list_head *formats)
 {
        struct perf_pmu_format *fmt, *tmp;
index 7ff925224165031b9882d63f1447d9ddae8befe8..9c9ea40b9c71f079225652031b976562265e4b61 100644 (file)
@@ -231,7 +231,6 @@ void perf_pmu_error(struct list_head *list, char *name, void *scanner, char cons
 
 int perf_pmu__new_format(struct list_head *list, char *name,
                         int config, unsigned long *bits);
-void perf_pmu__set_format(unsigned long *bits, long from, long to);
 int perf_pmu__format_parse(int dirfd, struct list_head *head);
 void perf_pmu__del_formats(struct list_head *formats);
 bool perf_pmu__has_format(const struct perf_pmu *pmu, const char *name);
index 3d46cca3bb94c5ccf92101bfe97bf530ff5a0f0a..9bd9e30791ffb827eb8f8f8a8663e58ad282ad1b 100644 (file)
@@ -21,6 +21,18 @@ do { \
                 YYABORT; \
 } while (0)
 
+static void perf_pmu__set_format(unsigned long *bits, long from, long to)
+{
+       long b;
+
+       if (!to)
+               to = from;
+
+       memset(bits, 0, BITS_TO_BYTES(PERF_PMU_FORMAT_BITS));
+       for (b = from; b <= to; b++)
+               __set_bit(b, bits);
+}
+
 %}
 
 %token PP_CONFIG