diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2010-02-25 08:36:04 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-02-25 11:49:30 -0500 |
commit | 5c8d1cbbbed39dcab2ecf429d6e56ea548c0fda4 (patch) | |
tree | 8ce3346a689e6f4744b2a48e1178f40560137ca6 /tools | |
parent | 161a26b0c231b5d2e60e9c132fa360cd9dac4720 (diff) |
perf probe: Show more lines after last line
Show 2 more lines after the last probe-able line.
This will clearly show the last closed-brace of
inline functions.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: systemtap <systemtap@sources.redhat.com>
Cc: DLE <dle-develop@lists.sourceforge.net>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: K.Prasad <prasad@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
LKML-Reference: <20100225133604.6725.76820.stgit@localhost6.localdomain6>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/util/probe-event.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index 71b0dd590a37..91f55f24fa9d 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c | |||
@@ -716,6 +716,7 @@ void del_trace_kprobe_events(struct strlist *dellist) | |||
716 | } | 716 | } |
717 | 717 | ||
718 | #define LINEBUF_SIZE 256 | 718 | #define LINEBUF_SIZE 256 |
719 | #define NR_ADDITIONAL_LINES 2 | ||
719 | 720 | ||
720 | static void show_one_line(FILE *fp, unsigned int l, bool skip, bool show_num) | 721 | static void show_one_line(FILE *fp, unsigned int l, bool skip, bool show_num) |
721 | { | 722 | { |
@@ -776,5 +777,11 @@ void show_line_range(struct line_range *lr) | |||
776 | show_one_line(fp, (l++) - lr->offset, false, false); | 777 | show_one_line(fp, (l++) - lr->offset, false, false); |
777 | show_one_line(fp, (l++) - lr->offset, false, true); | 778 | show_one_line(fp, (l++) - lr->offset, false, true); |
778 | } | 779 | } |
780 | |||
781 | if (lr->end == INT_MAX) | ||
782 | lr->end = l + NR_ADDITIONAL_LINES; | ||
783 | while (l < lr->end && !feof(fp)) | ||
784 | show_one_line(fp, (l++) - lr->offset, false, false); | ||
785 | |||
779 | fclose(fp); | 786 | fclose(fp); |
780 | } | 787 | } |