Commit 8d1b065d authored by Jiaxing Wang's avatar Jiaxing Wang Committed by Steven Rostedt

tracing: Fix documentation of ftrace_set_global_{filter,notrace}()

The functions ftrace_set_global_filter() and ftrace_set_global_notrace()
still have their old names in the kernel doc (ftrace_set_filter and
ftrace_set_notrace respectively). Replace these with the real names.

Link: http://lkml.kernel.org/p/1398006644-5935-3-git-send-email-wangjiaxing@insigma.com.cnSigned-off-by: default avatarJiaxing Wang <wangjiaxing@insigma.com.cn>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 7eea4fce
...@@ -3542,8 +3542,7 @@ int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf, ...@@ -3542,8 +3542,7 @@ int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
} }
EXPORT_SYMBOL_GPL(ftrace_set_notrace); EXPORT_SYMBOL_GPL(ftrace_set_notrace);
/** /**
* ftrace_set_filter - set a function to filter on in ftrace * ftrace_set_global_filter - set a function to filter on with global tracers
* @ops - the ops to set the filter with
* @buf - the string that holds the function filter text. * @buf - the string that holds the function filter text.
* @len - the length of the string. * @len - the length of the string.
* @reset - non zero to reset all filters before applying this filter. * @reset - non zero to reset all filters before applying this filter.
...@@ -3558,8 +3557,7 @@ void ftrace_set_global_filter(unsigned char *buf, int len, int reset) ...@@ -3558,8 +3557,7 @@ void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
EXPORT_SYMBOL_GPL(ftrace_set_global_filter); EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
/** /**
* ftrace_set_notrace - set a function to not trace in ftrace * ftrace_set_global_notrace - set a function to not trace with global tracers
* @ops - the ops to set the notrace filter with
* @buf - the string that holds the function notrace text. * @buf - the string that holds the function notrace text.
* @len - the length of the string. * @len - the length of the string.
* @reset - non zero to reset all filters before applying this filter. * @reset - non zero to reset all filters before applying this filter.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment