]> git.baikalelectronics.ru Git - kernel.git/commit
tracing: Fix set_ftrace_filter probe function display
authorJiri Olsa <jolsa@redhat.com>
Wed, 16 Feb 2011 16:35:34 +0000 (17:35 +0100)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 22 Mar 2011 16:52:03 +0000 (12:52 -0400)
commit20c78a3316b5a374c0800f973f8a8c3201e1f0bf
tree638a067a0d407948fb5362b794d8de397c6aa421
parentd7aab05c01f7386259fa24a25967932a8b1c6b24
tracing: Fix set_ftrace_filter probe function display

If one or more function probes (like traceon) are enabled,
and there's no other function filter, the first probe
func is skipped (which one depends on the position in the hash).

$ echo sys_open:traceon sys_close:traceon > ./set_ftrace_filter
$ cat set_ftrace_filter
#### all functions enabled ####
sys_close:traceon:unlimited
$

The reason was, that in the case of no other function filter,
the func_pos was not properly updated before calling t_hash_start.

Signed-off-by: Jiri Olsa <jolsa@redhat.com>
LKML-Reference: <1297874134-7008-1-git-send-email-jolsa@redhat.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ftrace.c