diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-03-04 05:15:42 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-04 05:15:42 -0500 |
commit | 2602c3ba4508f528db024c1d209256513ea05de6 (patch) | |
tree | 5713aaad7c95ca810c91fe104407a06b7e4bc4bf /include | |
parent | a1be621dfacbef0fd374d8acd553d71e07bf29ac (diff) | |
parent | 2cadf9135eb3b6d84b6427314be827ddd443c308 (diff) |
Merge branch 'rfc/splice/tip/tracing/ftrace' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-trace into tracing/ftrace
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ring_buffer.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/ring_buffer.h b/include/linux/ring_buffer.h index f5e793d69bd3..79fcbc4b09d6 100644 --- a/include/linux/ring_buffer.h +++ b/include/linux/ring_buffer.h | |||
@@ -121,6 +121,9 @@ unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu); | |||
121 | u64 ring_buffer_time_stamp(int cpu); | 121 | u64 ring_buffer_time_stamp(int cpu); |
122 | void ring_buffer_normalize_time_stamp(int cpu, u64 *ts); | 122 | void ring_buffer_normalize_time_stamp(int cpu, u64 *ts); |
123 | 123 | ||
124 | size_t ring_buffer_page_len(void *page); | ||
125 | |||
126 | |||
124 | /* | 127 | /* |
125 | * The below functions are fine to use outside the tracing facility. | 128 | * The below functions are fine to use outside the tracing facility. |
126 | */ | 129 | */ |
@@ -138,8 +141,8 @@ static inline int tracing_is_on(void) { return 0; } | |||
138 | 141 | ||
139 | void *ring_buffer_alloc_read_page(struct ring_buffer *buffer); | 142 | void *ring_buffer_alloc_read_page(struct ring_buffer *buffer); |
140 | void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data); | 143 | void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data); |
141 | int ring_buffer_read_page(struct ring_buffer *buffer, | 144 | int ring_buffer_read_page(struct ring_buffer *buffer, void **data_page, |
142 | void **data_page, int cpu, int full); | 145 | size_t len, int cpu, int full); |
143 | 146 | ||
144 | enum ring_buffer_flags { | 147 | enum ring_buffer_flags { |
145 | RB_FL_OVERWRITE = 1 << 0, | 148 | RB_FL_OVERWRITE = 1 << 0, |