Lines Matching refs:ftrace
2 Using ftrace to hook to functions
15 The ftrace infrastructure was originally created to attach callbacks to the
19 how to use ftrace to implement your own function callbacks.
22 The ftrace context
33 The ftrace infrastructure has some protections against recursions and RCU
41 is used to tell ftrace what function should be called as the callback
43 ftrace to handle.
46 an ftrace_ops with ftrace:
68 #include <linux/ftrace.h>
108 at the start of the function where ftrace was tracing. Otherwise it
112 The ftrace FLAGS
115 The ftrace_ops flags are all defined and documented in include/linux/ftrace.h.
116 Some of the flags are used for internal infrastructure of ftrace, but the
135 is also traced, ftrace will prevent the callback from being called
137 safe from recursion, it can set this flag to disable the ftrace
174 If this is set on any ftrace ops, then the tracing cannot disabled by
210 See Filter Commands in :file:`Documentation/trace/ftrace.rst`.