Skip to content

Commit 4e37815

Browse files
andy-shevrostedt
authored andcommitted
tracing: Drop unused helper function to fix the build
A helper function defined but not used. This, in particular, prevents kernel builds with clang, `make W=1` and CONFIG_WERROR=y: kernel/trace/trace.c:2229:19: error: unused function 'run_tracer_selftest' [-Werror,-Wunused-function] 2229 | static inline int run_tracer_selftest(struct tracer *type) | ^~~~~~~~~~~~~~~~~~~ Fix this by dropping unused functions. See also commit 6863f56 ("kbuild: allow Clang to find unused static inline functions for W=1 build"). Cc: Masami Hiramatsu <[email protected]> Cc: Mathieu Desnoyers <[email protected]> Cc: Nathan Chancellor <[email protected]> Cc: Nick Desaulniers <[email protected]> Cc: Bill Wendling <[email protected]> Cc: Justin Stitt <[email protected]> Link: https://lore.kernel.org/[email protected] Signed-off-by: Andy Shevchenko <[email protected]> Signed-off-by: Steven Rostedt (Google) <[email protected]>
1 parent af17814 commit 4e37815

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

kernel/trace/trace.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,10 +2226,6 @@ static __init int init_trace_selftests(void)
22262226
}
22272227
core_initcall(init_trace_selftests);
22282228
#else
2229-
static inline int run_tracer_selftest(struct tracer *type)
2230-
{
2231-
return 0;
2232-
}
22332229
static inline int do_run_tracer_selftest(struct tracer *type)
22342230
{
22352231
return 0;

0 commit comments

Comments
 (0)