]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tracing: Fix reading of set_ftrace_filter across lists
authorSteven Rostedt <srostedt@redhat.com>
Tue, 14 Sep 2010 15:21:11 +0000 (11:21 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 14 Sep 2010 19:14:20 +0000 (15:14 -0400)
If we do:

 # cd /sys/kernel/debug
 # echo 'do_IRQ:traceon schedule:traceon sys_write:traceon' > \
    set_ftrace_filter
 # cat set_ftrace_filter

We get the following output:

 #### all functions enabled ####
 sys_write:traceon:unlimited
 schedule:traceon:unlimited
 do_IRQ:traceon:unlimited

This outputs two lists. One is the fact that all functions are
currently enabled for function tracing, the other has three probed
functions, which happen to have 'traceon' as their commands.

Currently, when reading the first list (functions enabled) the
seq_file code will receive a "NULL" from the t_next() function
causing it to exit early. This makes "read()" from userspace stop
reading the code at this boarder. Although read is allowed to do this,
some (broken) applications might consider this an end of file and
stop early.

This patch adds the start of the second list to t_next() when it
finishes the first list. It is a simple change and gives the
set_ftrace_filter file nicer reading ability.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/ftrace.c

index 2d51166b93feafa7b83d7ef1118b39a81409b41a..1884cf5bc110a475e350255cf353b62845296313 100644 (file)
@@ -1477,10 +1477,9 @@ t_next(struct seq_file *m, void *v, loff_t *pos)
 
        (*pos)++;
        iter->pos = *pos;
-       iter->func_pos = *pos;
 
        if (iter->flags & FTRACE_ITER_PRINTALL)
-               return NULL;
+               return t_hash_start(m, pos);
 
  retry:
        if (iter->idx >= iter->pg->index) {
@@ -1510,8 +1509,9 @@ t_next(struct seq_file *m, void *v, loff_t *pos)
        }
 
        if (!rec)
-               return NULL;
+               return t_hash_start(m, pos);
 
+       iter->func_pos = *pos;
        iter->func = rec;
 
        return iter;