diff options
author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2015-03-24 09:57:56 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-03-24 11:22:09 -0400 |
commit | 82ac952be6348dc072dcfd80a2dcb511d0cd6bea (patch) | |
tree | 2e4b5869b8641cda588f06f7c4c0634cb894be0e /tools/lib | |
parent | c5e691928bf166ac03430e957038b60adba3cf6c (diff) |
tools lib traceevent: Add way to find sub buffer boundary
For debugging purposes, it may be helpful for the kbuffer library to flag
when crossing a sub buffer.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/20150324135923.650983637@goodmis.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/traceevent/kbuffer-parse.c | 11 | ||||
-rw-r--r-- | tools/lib/traceevent/kbuffer.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tools/lib/traceevent/kbuffer-parse.c b/tools/lib/traceevent/kbuffer-parse.c index deb3569ab004..3bcada3ae05a 100644 --- a/tools/lib/traceevent/kbuffer-parse.c +++ b/tools/lib/traceevent/kbuffer-parse.c | |||
@@ -729,3 +729,14 @@ void kbuffer_set_old_format(struct kbuffer *kbuf) | |||
729 | 729 | ||
730 | kbuf->next_event = __old_next_event; | 730 | kbuf->next_event = __old_next_event; |
731 | } | 731 | } |
732 | |||
733 | /** | ||
734 | * kbuffer_start_of_data - return offset of where data starts on subbuffer | ||
735 | * @kbuf: The kbuffer | ||
736 | * | ||
737 | * Returns the location on the subbuffer where the data starts. | ||
738 | */ | ||
739 | int kbuffer_start_of_data(struct kbuffer *kbuf) | ||
740 | { | ||
741 | return kbuf->start; | ||
742 | } | ||
diff --git a/tools/lib/traceevent/kbuffer.h b/tools/lib/traceevent/kbuffer.h index c831f64b17a0..03dce757553f 100644 --- a/tools/lib/traceevent/kbuffer.h +++ b/tools/lib/traceevent/kbuffer.h | |||
@@ -63,5 +63,6 @@ int kbuffer_missed_events(struct kbuffer *kbuf); | |||
63 | int kbuffer_subbuffer_size(struct kbuffer *kbuf); | 63 | int kbuffer_subbuffer_size(struct kbuffer *kbuf); |
64 | 64 | ||
65 | void kbuffer_set_old_format(struct kbuffer *kbuf); | 65 | void kbuffer_set_old_format(struct kbuffer *kbuf); |
66 | int kbuffer_start_of_data(struct kbuffer *kbuf); | ||
66 | 67 | ||
67 | #endif /* _K_BUFFER_H */ | 68 | #endif /* _K_BUFFER_H */ |