Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96de37b6 authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt
Browse files

tracing: Fix compile error when static ftrace is enabled



The stack tracer uses the call ftrace_set_early_filter() function
to allow the stack tracer to pick its own functions on boot.
But this function is not defined if dynamic ftrace is not set.
This causes a compiler error when stack tracer is enabled and
dynamic ftrace is not.

Reported-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 38b78eb8
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -339,6 +339,7 @@ static inline int ftrace_text_reserved(void *start, void *end)
 * functions may still be called. Use a macro instead of inline.
 * functions may still be called. Use a macro instead of inline.
 */
 */
#define ftrace_regex_open(ops, flag, inod, file) ({ -ENODEV; })
#define ftrace_regex_open(ops, flag, inod, file) ({ -ENODEV; })
#define ftrace_set_early_filter(ops, buf, enable) do { } while (0)


static inline ssize_t ftrace_filter_write(struct file *file, const char __user *ubuf,
static inline ssize_t ftrace_filter_write(struct file *file, const char __user *ubuf,
			    size_t cnt, loff_t *ppos) { return -ENODEV; }
			    size_t cnt, loff_t *ppos) { return -ENODEV; }