[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20251114140618.229205-1-james.clark@linaro.org>
Date: Fri, 14 Nov 2025 14:06:18 +0000
From: James Clark <james.clark@...aro.org>
To: linux-perf-users@...r.kernel.org,
irogers@...gle.com,
namhyung@...nel.org,
acme@...nel.org
Cc: James Clark <james.clark@...aro.org>,
Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>,
Mark Rutland <mark.rutland@....com>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Jiri Olsa <jolsa@...nel.org>,
Adrian Hunter <adrian.hunter@...el.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH] perf script: Fix build by removing unused evsel_script()
The evsel_script() function is unused since the linked commit. Fix the
build by removing it.
Fixes the following compilation error:
builtin-script.c:347:36: error: unused function 'evsel_script' [-Werror,-Wunused-function]
static inline struct evsel_script *evsel_script(struct evsel *evsel)
^
Fixes: 3622990efaab ("perf script: Change metric format to use json metrics")
Signed-off-by: James Clark <james.clark@...aro.org>
---
tools/perf/builtin-script.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
index cf0040bbaba9..581fb101e8be 100644
--- a/tools/perf/builtin-script.c
+++ b/tools/perf/builtin-script.c
@@ -344,11 +344,6 @@ struct evsel_script {
u64 samples;
};
-static inline struct evsel_script *evsel_script(struct evsel *evsel)
-{
- return (struct evsel_script *)evsel->priv;
-}
-
static struct evsel_script *evsel_script__new(struct evsel *evsel, struct perf_data *data)
{
struct evsel_script *es = zalloc(sizeof(*es));
--
2.34.1
Powered by blists - more mailing lists