Lines Matching full:functions
2 Using ftrace to hook to functions
16 beginning of functions in order to record and trace the flow of the kernel.
33 There are helper functions to help against recursion, and making sure
77 no longer being called by functions after the unregister_ftrace_function()
114 As functions can be called from anywhere, and it is possible that a function
116 recursion protection must be used. There are two helper functions that
209 If this is set, then the callback will only be called by functions
228 Filtering which functions to trace
231 If a callback is only to be called from specific functions, a filter must be
250 Filters denote which functions should be enabled when tracing is enabled.
251 If @buf is NULL and reset is set, all functions will be enabled for tracing.
253 The @buf can also be a glob expression to enable all functions that
264 To add more functions, call the ftrace_set_filter() more than once with the
266 with new functions defined by @buf, have @reset be non-zero.
268 To remove all the filtered functions and trace all functions:
286 If a glob is used to set the filter, functions can be added to a "notrace"
287 list that will prevent those functions from calling the callback.
289 two lists are non-empty and contain the same functions, the callback will not
292 An empty "notrace" list means to allow all functions defined by the filter
301 functions it finds to not be traced. This is a separate list from the
304 A non-zero @reset will clear the "notrace" list before adding functions
314 functions should call the callback, it is best to set the filters before
319 matching glob to functions, the switch will happen during the time of
320 the ftrace_set_filter() call. At no time will all functions call the callback.
346 As the latter will have a short time where all functions will call