]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
perf check: Move the FEATURE_STATUS() macro to its only user source file
authorArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 8 Apr 2025 13:51:01 +0000 (10:51 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 10 Apr 2025 13:44:12 +0000 (10:44 -0300)
It is just 'perf check' that uses that macro, to initialize the list of
features built into perf, so move it there.

This also avoids depending on things that are not included from
builtin.h, like is_builtin(), the CONFIG_ macros, etc, that are all
included in 'builtin-check.c' and before where this macro was moved to.

Tested-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Dmitriy Vyukov <dvyukov@google.com>
Cc: Howard Chu <howardchu95@gmail.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/Z_dkNDj9EPFwPqq1@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-check.c
tools/perf/builtin.h

index bed9df0d7912ec82ded07f01f4353737a9253d42..a451fa25f50d6ef82bc268f69af439b8c578e604 100644 (file)
@@ -22,6 +22,11 @@ static const char *check_feature_usage[] = {
        NULL
 };
 
+#define FEATURE_STATUS(name_, macro_) {    \
+       .name = name_,                     \
+       .macro = #macro_,                  \
+       .is_builtin = IS_BUILTIN(macro_) }
+
 struct feature_status supported_features[] = {
        FEATURE_STATUS("aio", HAVE_AIO_SUPPORT),
        FEATURE_STATUS("bpf", HAVE_LIBBPF_SUPPORT),
index b7e60d19fad9542717f7000eae79230191785242..7db7bc054f6e3f559ff7bf3d6e7ec49e0e1a8898 100644 (file)
@@ -8,11 +8,6 @@ struct feature_status {
        int is_builtin;
 };
 
-#define FEATURE_STATUS(name_, macro_) {    \
-       .name = name_,                     \
-       .macro = #macro_,                  \
-       .is_builtin = IS_BUILTIN(macro_) }
-
 extern struct feature_status supported_features[];
 
 void feature_status__printf(const struct feature_status *feature);