blob: e5472f7bc347de782db2746233020a54ab43d9db [file] [log] [blame]
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001/*
2 * Generic ring buffer
3 *
4 * Copyright (C) 2008 Steven Rostedt <srostedt@redhat.com>
5 */
Steven Rostedt0b074362013-01-22 16:58:30 -05006#include <linux/ftrace_event.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04007#include <linux/ring_buffer.h>
Ingo Molnar14131f22009-02-26 18:47:11 +01008#include <linux/trace_clock.h>
Steven Rostedt0b074362013-01-22 16:58:30 -05009#include <linux/trace_seq.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040010#include <linux/spinlock.h>
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -050011#include <linux/irq_work.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040012#include <linux/debugfs.h>
13#include <linux/uaccess.h>
Steven Rostedta81bd802009-02-06 01:45:16 -050014#include <linux/hardirq.h>
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -040015#include <linux/kthread.h> /* for self test */
Vegard Nossum1744a212009-02-28 08:29:44 +010016#include <linux/kmemcheck.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040017#include <linux/module.h>
18#include <linux/percpu.h>
19#include <linux/mutex.h>
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -040020#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040022#include <linux/init.h>
23#include <linux/hash.h>
24#include <linux/list.h>
Steven Rostedt554f7862009-03-11 22:00:13 -040025#include <linux/cpu.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040026#include <linux/fs.h>
27
Christoph Lameter79615762010-01-05 15:34:50 +090028#include <asm/local.h>
Steven Rostedt182e9f52008-11-03 23:15:56 -050029
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -070030static void update_pages_handler(struct work_struct *work);
31
Steven Rostedt033601a2008-11-21 12:41:55 -050032/*
Steven Rostedtd1b182a2009-04-15 16:53:47 -040033 * The ring buffer header is special. We must manually up keep it.
34 */
35int ring_buffer_print_entry_header(struct trace_seq *s)
36{
37 int ret;
38
Lai Jiangshan334d4162009-04-24 11:27:05 +080039 ret = trace_seq_printf(s, "# compressed entry header\n");
40 ret = trace_seq_printf(s, "\ttype_len : 5 bits\n");
Steven Rostedtd1b182a2009-04-15 16:53:47 -040041 ret = trace_seq_printf(s, "\ttime_delta : 27 bits\n");
42 ret = trace_seq_printf(s, "\tarray : 32 bits\n");
43 ret = trace_seq_printf(s, "\n");
44 ret = trace_seq_printf(s, "\tpadding : type == %d\n",
45 RINGBUF_TYPE_PADDING);
46 ret = trace_seq_printf(s, "\ttime_extend : type == %d\n",
47 RINGBUF_TYPE_TIME_EXTEND);
Lai Jiangshan334d4162009-04-24 11:27:05 +080048 ret = trace_seq_printf(s, "\tdata max type_len == %d\n",
49 RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedtd1b182a2009-04-15 16:53:47 -040050
51 return ret;
52}
53
54/*
Steven Rostedt5cc98542009-03-12 22:24:17 -040055 * The ring buffer is made up of a list of pages. A separate list of pages is
56 * allocated for each CPU. A writer may only write to a buffer that is
57 * associated with the CPU it is currently executing on. A reader may read
58 * from any per cpu buffer.
59 *
60 * The reader is special. For each per cpu buffer, the reader has its own
61 * reader page. When a reader has read the entire reader page, this reader
62 * page is swapped with another page in the ring buffer.
63 *
64 * Now, as long as the writer is off the reader page, the reader can do what
65 * ever it wants with that page. The writer will never write to that page
66 * again (as long as it is out of the ring buffer).
67 *
68 * Here's some silly ASCII art.
69 *
70 * +------+
71 * |reader| RING BUFFER
72 * |page |
73 * +------+ +---+ +---+ +---+
74 * | |-->| |-->| |
75 * +---+ +---+ +---+
76 * ^ |
77 * | |
78 * +---------------+
79 *
80 *
81 * +------+
82 * |reader| RING BUFFER
83 * |page |------------------v
84 * +------+ +---+ +---+ +---+
85 * | |-->| |-->| |
86 * +---+ +---+ +---+
87 * ^ |
88 * | |
89 * +---------------+
90 *
91 *
92 * +------+
93 * |reader| RING BUFFER
94 * |page |------------------v
95 * +------+ +---+ +---+ +---+
96 * ^ | |-->| |-->| |
97 * | +---+ +---+ +---+
98 * | |
99 * | |
100 * +------------------------------+
101 *
102 *
103 * +------+
104 * |buffer| RING BUFFER
105 * |page |------------------v
106 * +------+ +---+ +---+ +---+
107 * ^ | | | |-->| |
108 * | New +---+ +---+ +---+
109 * | Reader------^ |
110 * | page |
111 * +------------------------------+
112 *
113 *
114 * After we make this swap, the reader can hand this page off to the splice
115 * code and be done with it. It can even allocate a new page if it needs to
116 * and swap that into the ring buffer.
117 *
118 * We will be using cmpxchg soon to make all this lockless.
119 *
120 */
121
122/*
Steven Rostedt033601a2008-11-21 12:41:55 -0500123 * A fast way to enable or disable all ring buffers is to
124 * call tracing_on or tracing_off. Turning off the ring buffers
125 * prevents all ring buffers from being recorded to.
126 * Turning this switch on, makes it OK to write to the
127 * ring buffer, if the ring buffer is enabled itself.
128 *
129 * There's three layers that must be on in order to write
130 * to the ring buffer.
131 *
132 * 1) This global flag must be set.
133 * 2) The ring buffer must be enabled for recording.
134 * 3) The per cpu buffer must be enabled for recording.
135 *
136 * In case of an anomaly, this global flag has a bit set that
137 * will permantly disable all ring buffers.
138 */
139
140/*
141 * Global flag to disable all recording to ring buffers
142 * This has two bits: ON, DISABLED
143 *
144 * ON DISABLED
145 * ---- ----------
146 * 0 0 : ring buffers are off
147 * 1 0 : ring buffers are on
148 * X 1 : ring buffers are permanently disabled
149 */
150
151enum {
152 RB_BUFFERS_ON_BIT = 0,
153 RB_BUFFERS_DISABLED_BIT = 1,
154};
155
156enum {
157 RB_BUFFERS_ON = 1 << RB_BUFFERS_ON_BIT,
158 RB_BUFFERS_DISABLED = 1 << RB_BUFFERS_DISABLED_BIT,
159};
160
Hannes Eder5e398412009-02-10 19:44:34 +0100161static unsigned long ring_buffer_flags __read_mostly = RB_BUFFERS_ON;
Steven Rostedta3583242008-11-11 15:01:42 -0500162
Steven Rostedt499e5472012-02-22 15:50:28 -0500163/* Used for individual buffers (after the counter) */
164#define RB_BUFFER_OFF (1 << 20)
165
Steven Rostedt474d32b2009-03-03 19:51:40 -0500166#define BUF_PAGE_HDR_SIZE offsetof(struct buffer_data_page, data)
167
Steven Rostedta3583242008-11-11 15:01:42 -0500168/**
Steven Rostedt033601a2008-11-21 12:41:55 -0500169 * tracing_off_permanent - permanently disable ring buffers
170 *
171 * This function, once called, will disable all ring buffers
Wenji Huangc3706f02009-02-10 01:03:18 -0500172 * permanently.
Steven Rostedt033601a2008-11-21 12:41:55 -0500173 */
174void tracing_off_permanent(void)
175{
176 set_bit(RB_BUFFERS_DISABLED_BIT, &ring_buffer_flags);
Steven Rostedta3583242008-11-11 15:01:42 -0500177}
178
Steven Rostedte3d6bf02009-03-03 13:53:07 -0500179#define RB_EVNT_HDR_SIZE (offsetof(struct ring_buffer_event, array))
Andrew Morton67d34722009-01-09 12:27:09 -0800180#define RB_ALIGNMENT 4U
Lai Jiangshan334d4162009-04-24 11:27:05 +0800181#define RB_MAX_SMALL_DATA (RB_ALIGNMENT * RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedtc7b09302009-06-11 11:12:00 -0400182#define RB_EVNT_MIN_SIZE 8U /* two 32bit words */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800183
Steven Rostedt22710482010-03-18 17:54:19 -0400184#if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
185# define RB_FORCE_8BYTE_ALIGNMENT 0
186# define RB_ARCH_ALIGNMENT RB_ALIGNMENT
187#else
188# define RB_FORCE_8BYTE_ALIGNMENT 1
189# define RB_ARCH_ALIGNMENT 8U
190#endif
191
Lai Jiangshan334d4162009-04-24 11:27:05 +0800192/* define RINGBUF_TYPE_DATA for 'case RINGBUF_TYPE_DATA:' */
193#define RINGBUF_TYPE_DATA 0 ... RINGBUF_TYPE_DATA_TYPE_LEN_MAX
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400194
195enum {
196 RB_LEN_TIME_EXTEND = 8,
197 RB_LEN_TIME_STAMP = 16,
198};
199
Steven Rostedt69d1b832010-10-07 18:18:05 -0400200#define skip_time_extend(event) \
201 ((struct ring_buffer_event *)((char *)event + RB_LEN_TIME_EXTEND))
202
Tom Zanussi2d622712009-03-22 03:30:49 -0500203static inline int rb_null_event(struct ring_buffer_event *event)
204{
Steven Rostedta1863c22009-09-03 10:23:58 -0400205 return event->type_len == RINGBUF_TYPE_PADDING && !event->time_delta;
Tom Zanussi2d622712009-03-22 03:30:49 -0500206}
207
208static void rb_event_set_padding(struct ring_buffer_event *event)
209{
Steven Rostedta1863c22009-09-03 10:23:58 -0400210 /* padding has a NULL time_delta */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800211 event->type_len = RINGBUF_TYPE_PADDING;
Tom Zanussi2d622712009-03-22 03:30:49 -0500212 event->time_delta = 0;
213}
214
Tom Zanussi2d622712009-03-22 03:30:49 -0500215static unsigned
216rb_event_data_length(struct ring_buffer_event *event)
217{
218 unsigned length;
219
Lai Jiangshan334d4162009-04-24 11:27:05 +0800220 if (event->type_len)
221 length = event->type_len * RB_ALIGNMENT;
Tom Zanussi2d622712009-03-22 03:30:49 -0500222 else
223 length = event->array[0];
224 return length + RB_EVNT_HDR_SIZE;
225}
226
Steven Rostedt69d1b832010-10-07 18:18:05 -0400227/*
228 * Return the length of the given event. Will return
229 * the length of the time extend if the event is a
230 * time extend.
231 */
232static inline unsigned
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400233rb_event_length(struct ring_buffer_event *event)
234{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800235 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400236 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -0500237 if (rb_null_event(event))
238 /* undefined */
239 return -1;
Lai Jiangshan334d4162009-04-24 11:27:05 +0800240 return event->array[0] + RB_EVNT_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400241
242 case RINGBUF_TYPE_TIME_EXTEND:
243 return RB_LEN_TIME_EXTEND;
244
245 case RINGBUF_TYPE_TIME_STAMP:
246 return RB_LEN_TIME_STAMP;
247
248 case RINGBUF_TYPE_DATA:
Tom Zanussi2d622712009-03-22 03:30:49 -0500249 return rb_event_data_length(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400250 default:
251 BUG();
252 }
253 /* not hit */
254 return 0;
255}
256
Steven Rostedt69d1b832010-10-07 18:18:05 -0400257/*
258 * Return total length of time extend and data,
259 * or just the event length for all other events.
260 */
261static inline unsigned
262rb_event_ts_length(struct ring_buffer_event *event)
263{
264 unsigned len = 0;
265
266 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
267 /* time extends include the data event after it */
268 len = RB_LEN_TIME_EXTEND;
269 event = skip_time_extend(event);
270 }
271 return len + rb_event_length(event);
272}
273
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400274/**
275 * ring_buffer_event_length - return the length of the event
276 * @event: the event to get the length of
Steven Rostedt69d1b832010-10-07 18:18:05 -0400277 *
278 * Returns the size of the data load of a data event.
279 * If the event is something other than a data event, it
280 * returns the size of the event itself. With the exception
281 * of a TIME EXTEND, where it still returns the size of the
282 * data load of the data event after it.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400283 */
284unsigned ring_buffer_event_length(struct ring_buffer_event *event)
285{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400286 unsigned length;
287
288 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
289 event = skip_time_extend(event);
290
291 length = rb_event_length(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800292 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Robert Richter465634a2009-01-07 15:32:11 +0100293 return length;
294 length -= RB_EVNT_HDR_SIZE;
295 if (length > RB_MAX_SMALL_DATA + sizeof(event->array[0]))
296 length -= sizeof(event->array[0]);
297 return length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400298}
Robert Richterc4f50182008-12-11 16:49:22 +0100299EXPORT_SYMBOL_GPL(ring_buffer_event_length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400300
301/* inline for ring buffer fast paths */
Andrew Morton34a148b2009-01-09 12:27:09 -0800302static void *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400303rb_event_data(struct ring_buffer_event *event)
304{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400305 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
306 event = skip_time_extend(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800307 BUG_ON(event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400308 /* If length is in len field, then array[0] has the data */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800309 if (event->type_len)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400310 return (void *)&event->array[0];
311 /* Otherwise length is in array[0] and array[1] has the data */
312 return (void *)&event->array[1];
313}
314
315/**
316 * ring_buffer_event_data - return the data of the event
317 * @event: the event to get the data from
318 */
319void *ring_buffer_event_data(struct ring_buffer_event *event)
320{
321 return rb_event_data(event);
322}
Robert Richterc4f50182008-12-11 16:49:22 +0100323EXPORT_SYMBOL_GPL(ring_buffer_event_data);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400324
325#define for_each_buffer_cpu(buffer, cpu) \
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030326 for_each_cpu(cpu, buffer->cpumask)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400327
328#define TS_SHIFT 27
329#define TS_MASK ((1ULL << TS_SHIFT) - 1)
330#define TS_DELTA_TEST (~TS_MASK)
331
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400332/* Flag when events were overwritten */
333#define RB_MISSED_EVENTS (1 << 31)
Steven Rostedtff0ff842010-03-31 22:11:42 -0400334/* Missed count stored at end */
335#define RB_MISSED_STORED (1 << 30)
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400336
Steven Rostedtabc9b562008-12-02 15:34:06 -0500337struct buffer_data_page {
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400338 u64 time_stamp; /* page time stamp */
Wenji Huangc3706f02009-02-10 01:03:18 -0500339 local_t commit; /* write committed index */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500340 unsigned char data[]; /* data of buffer page */
341};
342
Steven Rostedt77ae3652009-03-27 11:00:29 -0400343/*
344 * Note, the buffer_page list must be first. The buffer pages
345 * are allocated in cache lines, which means that each buffer
346 * page will be at the beginning of a cache line, and thus
347 * the least significant bits will be zero. We use this to
348 * add flags in the list struct pointers, to make the ring buffer
349 * lockless.
350 */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500351struct buffer_page {
Steven Rostedt778c55d2009-05-01 18:44:45 -0400352 struct list_head list; /* list of buffer pages */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500353 local_t write; /* index for next write */
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400354 unsigned read; /* index for next read */
Steven Rostedt778c55d2009-05-01 18:44:45 -0400355 local_t entries; /* entries on this page */
Steven Rostedtff0ff842010-03-31 22:11:42 -0400356 unsigned long real_end; /* real end of data */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500357 struct buffer_data_page *page; /* Actual data page */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400358};
359
Steven Rostedt77ae3652009-03-27 11:00:29 -0400360/*
361 * The buffer page counters, write and entries, must be reset
362 * atomically when crossing page boundaries. To synchronize this
363 * update, two counters are inserted into the number. One is
364 * the actual counter for the write position or count on the page.
365 *
366 * The other is a counter of updaters. Before an update happens
367 * the update partition of the counter is incremented. This will
368 * allow the updater to update the counter atomically.
369 *
370 * The counter is 20 bits, and the state data is 12.
371 */
372#define RB_WRITE_MASK 0xfffff
373#define RB_WRITE_INTCNT (1 << 20)
374
Steven Rostedt044fa782008-12-02 23:50:03 -0500375static void rb_init_page(struct buffer_data_page *bpage)
Steven Rostedtabc9b562008-12-02 15:34:06 -0500376{
Steven Rostedt044fa782008-12-02 23:50:03 -0500377 local_set(&bpage->commit, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -0500378}
379
Steven Rostedt474d32b2009-03-03 19:51:40 -0500380/**
381 * ring_buffer_page_len - the size of data on the page.
382 * @page: The page to read
383 *
384 * Returns the amount of data on the page, including buffer page header.
385 */
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500386size_t ring_buffer_page_len(void *page)
387{
Steven Rostedt474d32b2009-03-03 19:51:40 -0500388 return local_read(&((struct buffer_data_page *)page)->commit)
389 + BUF_PAGE_HDR_SIZE;
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500390}
391
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400392/*
Steven Rostedted568292008-09-29 23:02:40 -0400393 * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing
394 * this issue out.
395 */
Andrew Morton34a148b2009-01-09 12:27:09 -0800396static void free_buffer_page(struct buffer_page *bpage)
Steven Rostedted568292008-09-29 23:02:40 -0400397{
Andrew Morton34a148b2009-01-09 12:27:09 -0800398 free_page((unsigned long)bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400399 kfree(bpage);
Steven Rostedted568292008-09-29 23:02:40 -0400400}
401
402/*
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400403 * We need to fit the time_stamp delta into 27 bits.
404 */
405static inline int test_time_stamp(u64 delta)
406{
407 if (delta & TS_DELTA_TEST)
408 return 1;
409 return 0;
410}
411
Steven Rostedt474d32b2009-03-03 19:51:40 -0500412#define BUF_PAGE_SIZE (PAGE_SIZE - BUF_PAGE_HDR_SIZE)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400413
Steven Rostedtbe957c42009-05-11 14:42:53 -0400414/* Max payload is BUF_PAGE_SIZE - header (8bytes) */
415#define BUF_MAX_DATA_SIZE (BUF_PAGE_SIZE - (sizeof(u32) * 2))
416
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400417int ring_buffer_print_page_header(struct trace_seq *s)
418{
419 struct buffer_data_page field;
420 int ret;
421
422 ret = trace_seq_printf(s, "\tfield: u64 timestamp;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500423 "offset:0;\tsize:%u;\tsigned:%u;\n",
424 (unsigned int)sizeof(field.time_stamp),
425 (unsigned int)is_signed_type(u64));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400426
427 ret = trace_seq_printf(s, "\tfield: local_t commit;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500428 "offset:%u;\tsize:%u;\tsigned:%u;\n",
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400429 (unsigned int)offsetof(typeof(field), commit),
Tom Zanussi26a50742009-10-06 01:09:50 -0500430 (unsigned int)sizeof(field.commit),
431 (unsigned int)is_signed_type(long));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400432
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400433 ret = trace_seq_printf(s, "\tfield: int overwrite;\t"
434 "offset:%u;\tsize:%u;\tsigned:%u;\n",
435 (unsigned int)offsetof(typeof(field), commit),
436 1,
437 (unsigned int)is_signed_type(long));
438
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400439 ret = trace_seq_printf(s, "\tfield: char data;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500440 "offset:%u;\tsize:%u;\tsigned:%u;\n",
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400441 (unsigned int)offsetof(typeof(field), data),
Tom Zanussi26a50742009-10-06 01:09:50 -0500442 (unsigned int)BUF_PAGE_SIZE,
443 (unsigned int)is_signed_type(char));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400444
445 return ret;
446}
447
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500448struct rb_irq_work {
449 struct irq_work work;
450 wait_queue_head_t waiters;
451 bool waiters_pending;
452};
453
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400454/*
455 * head_page == tail_page && head == tail then buffer is empty.
456 */
457struct ring_buffer_per_cpu {
458 int cpu;
Richard Kennedy985023d2010-03-25 11:27:36 +0000459 atomic_t record_disabled;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400460 struct ring_buffer *buffer;
Thomas Gleixner5389f6f2009-07-25 17:13:33 +0200461 raw_spinlock_t reader_lock; /* serialize readers */
Thomas Gleixner445c8952009-12-02 19:49:50 +0100462 arch_spinlock_t lock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400463 struct lock_class_key lock_key;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -0800464 unsigned int nr_pages;
Steven Rostedt3adc54f2009-03-30 15:32:01 -0400465 struct list_head *pages;
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400466 struct buffer_page *head_page; /* read from head */
467 struct buffer_page *tail_page; /* write to tail */
Wenji Huangc3706f02009-02-10 01:03:18 -0500468 struct buffer_page *commit_page; /* committed pages */
Steven Rostedtd7690412008-10-01 00:29:53 -0400469 struct buffer_page *reader_page;
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400470 unsigned long lost_events;
471 unsigned long last_overrun;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -0700472 local_t entries_bytes;
Steven Rostedte4906ef2009-04-30 20:49:44 -0400473 local_t entries;
Slava Pestov884bfe82011-07-15 14:23:58 -0700474 local_t overrun;
475 local_t commit_overrun;
476 local_t dropped_events;
Steven Rostedtfa743952009-06-16 12:37:57 -0400477 local_t committing;
478 local_t commits;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400479 unsigned long read;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -0700480 unsigned long read_bytes;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400481 u64 write_stamp;
482 u64 read_stamp;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -0800483 /* ring buffer pages to update, > 0 to add, < 0 to remove */
484 int nr_pages_to_update;
485 struct list_head new_pages; /* new pages to add */
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -0700486 struct work_struct update_pages_work;
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -0700487 struct completion update_done;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500488
489 struct rb_irq_work irq_work;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400490};
491
492struct ring_buffer {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400493 unsigned flags;
494 int cpus;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400495 atomic_t record_disabled;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -0700496 atomic_t resize_disabled;
Arnaldo Carvalho de Melo00f62f62009-02-09 17:04:06 -0200497 cpumask_var_t cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400498
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +0200499 struct lock_class_key *reader_lock_key;
500
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400501 struct mutex mutex;
502
503 struct ring_buffer_per_cpu **buffers;
Steven Rostedt554f7862009-03-11 22:00:13 -0400504
Steven Rostedt59222ef2009-03-12 11:46:03 -0400505#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400506 struct notifier_block cpu_notify;
507#endif
Steven Rostedt37886f62009-03-17 17:22:06 -0400508 u64 (*clock)(void);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500509
510 struct rb_irq_work irq_work;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400511};
512
513struct ring_buffer_iter {
514 struct ring_buffer_per_cpu *cpu_buffer;
515 unsigned long head;
516 struct buffer_page *head_page;
Steven Rostedt492a74f2010-01-25 15:17:47 -0500517 struct buffer_page *cache_reader_page;
518 unsigned long cache_read;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400519 u64 read_stamp;
520};
521
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500522/*
523 * rb_wake_up_waiters - wake up tasks waiting for ring buffer input
524 *
525 * Schedules a delayed work to wake up any task that is blocked on the
526 * ring buffer waiters queue.
527 */
528static void rb_wake_up_waiters(struct irq_work *work)
529{
530 struct rb_irq_work *rbwork = container_of(work, struct rb_irq_work, work);
531
532 wake_up_all(&rbwork->waiters);
533}
534
535/**
536 * ring_buffer_wait - wait for input to the ring buffer
537 * @buffer: buffer to wait on
538 * @cpu: the cpu buffer to wait on
539 *
540 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
541 * as data is added to any of the @buffer's cpu buffers. Otherwise
542 * it will wait for data to be added to a specific cpu buffer.
543 */
544void ring_buffer_wait(struct ring_buffer *buffer, int cpu)
545{
546 struct ring_buffer_per_cpu *cpu_buffer;
547 DEFINE_WAIT(wait);
548 struct rb_irq_work *work;
549
550 /*
551 * Depending on what the caller is waiting for, either any
552 * data in any cpu buffer, or a specific buffer, put the
553 * caller on the appropriate wait queue.
554 */
555 if (cpu == RING_BUFFER_ALL_CPUS)
556 work = &buffer->irq_work;
557 else {
558 cpu_buffer = buffer->buffers[cpu];
559 work = &cpu_buffer->irq_work;
560 }
561
562
563 prepare_to_wait(&work->waiters, &wait, TASK_INTERRUPTIBLE);
564
565 /*
566 * The events can happen in critical sections where
567 * checking a work queue can cause deadlocks.
568 * After adding a task to the queue, this flag is set
569 * only to notify events to try to wake up the queue
570 * using irq_work.
571 *
572 * We don't clear it even if the buffer is no longer
573 * empty. The flag only causes the next event to run
574 * irq_work to do the work queue wake up. The worse
575 * that can happen if we race with !trace_empty() is that
576 * an event will cause an irq_work to try to wake up
577 * an empty queue.
578 *
579 * There's no reason to protect this flag either, as
580 * the work queue and irq_work logic will do the necessary
581 * synchronization for the wake ups. The only thing
582 * that is necessary is that the wake up happens after
583 * a task has been queued. It's OK for spurious wake ups.
584 */
585 work->waiters_pending = true;
586
587 if ((cpu == RING_BUFFER_ALL_CPUS && ring_buffer_empty(buffer)) ||
588 (cpu != RING_BUFFER_ALL_CPUS && ring_buffer_empty_cpu(buffer, cpu)))
589 schedule();
590
591 finish_wait(&work->waiters, &wait);
592}
593
594/**
595 * ring_buffer_poll_wait - poll on buffer input
596 * @buffer: buffer to wait on
597 * @cpu: the cpu buffer to wait on
598 * @filp: the file descriptor
599 * @poll_table: The poll descriptor
600 *
601 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
602 * as data is added to any of the @buffer's cpu buffers. Otherwise
603 * it will wait for data to be added to a specific cpu buffer.
604 *
605 * Returns POLLIN | POLLRDNORM if data exists in the buffers,
606 * zero otherwise.
607 */
608int ring_buffer_poll_wait(struct ring_buffer *buffer, int cpu,
609 struct file *filp, poll_table *poll_table)
610{
611 struct ring_buffer_per_cpu *cpu_buffer;
612 struct rb_irq_work *work;
613
614 if ((cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer)) ||
615 (cpu != RING_BUFFER_ALL_CPUS && !ring_buffer_empty_cpu(buffer, cpu)))
616 return POLLIN | POLLRDNORM;
617
618 if (cpu == RING_BUFFER_ALL_CPUS)
619 work = &buffer->irq_work;
620 else {
621 cpu_buffer = buffer->buffers[cpu];
622 work = &cpu_buffer->irq_work;
623 }
624
625 work->waiters_pending = true;
626 poll_wait(filp, &work->waiters, poll_table);
627
628 if ((cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer)) ||
629 (cpu != RING_BUFFER_ALL_CPUS && !ring_buffer_empty_cpu(buffer, cpu)))
630 return POLLIN | POLLRDNORM;
631 return 0;
632}
633
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500634/* buffer may be either ring_buffer or ring_buffer_per_cpu */
Steven Rostedt077c5402009-09-03 19:53:46 -0400635#define RB_WARN_ON(b, cond) \
636 ({ \
637 int _____ret = unlikely(cond); \
638 if (_____ret) { \
639 if (__same_type(*(b), struct ring_buffer_per_cpu)) { \
640 struct ring_buffer_per_cpu *__b = \
641 (void *)b; \
642 atomic_inc(&__b->buffer->record_disabled); \
643 } else \
644 atomic_inc(&b->record_disabled); \
645 WARN_ON(1); \
646 } \
647 _____ret; \
Steven Rostedt3e89c7b2008-11-11 15:28:41 -0500648 })
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500649
Steven Rostedt37886f62009-03-17 17:22:06 -0400650/* Up this if you want to test the TIME_EXTENTS and normalization */
651#define DEBUG_SHIFT 0
652
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400653static inline u64 rb_time_stamp(struct ring_buffer *buffer)
Steven Rostedt88eb0122009-05-11 16:28:23 -0400654{
655 /* shift to debug/test normalization and TIME_EXTENTS */
656 return buffer->clock() << DEBUG_SHIFT;
657}
658
Steven Rostedt37886f62009-03-17 17:22:06 -0400659u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu)
660{
661 u64 time;
662
663 preempt_disable_notrace();
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400664 time = rb_time_stamp(buffer);
Steven Rostedt37886f62009-03-17 17:22:06 -0400665 preempt_enable_no_resched_notrace();
666
667 return time;
668}
669EXPORT_SYMBOL_GPL(ring_buffer_time_stamp);
670
671void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
672 int cpu, u64 *ts)
673{
674 /* Just stupid testing the normalize function and deltas */
675 *ts >>= DEBUG_SHIFT;
676}
677EXPORT_SYMBOL_GPL(ring_buffer_normalize_time_stamp);
678
Steven Rostedt77ae3652009-03-27 11:00:29 -0400679/*
680 * Making the ring buffer lockless makes things tricky.
681 * Although writes only happen on the CPU that they are on,
682 * and they only need to worry about interrupts. Reads can
683 * happen on any CPU.
684 *
685 * The reader page is always off the ring buffer, but when the
686 * reader finishes with a page, it needs to swap its page with
687 * a new one from the buffer. The reader needs to take from
688 * the head (writes go to the tail). But if a writer is in overwrite
689 * mode and wraps, it must push the head page forward.
690 *
691 * Here lies the problem.
692 *
693 * The reader must be careful to replace only the head page, and
694 * not another one. As described at the top of the file in the
695 * ASCII art, the reader sets its old page to point to the next
696 * page after head. It then sets the page after head to point to
697 * the old reader page. But if the writer moves the head page
698 * during this operation, the reader could end up with the tail.
699 *
700 * We use cmpxchg to help prevent this race. We also do something
701 * special with the page before head. We set the LSB to 1.
702 *
703 * When the writer must push the page forward, it will clear the
704 * bit that points to the head page, move the head, and then set
705 * the bit that points to the new head page.
706 *
707 * We also don't want an interrupt coming in and moving the head
708 * page on another writer. Thus we use the second LSB to catch
709 * that too. Thus:
710 *
711 * head->list->prev->next bit 1 bit 0
712 * ------- -------
713 * Normal page 0 0
714 * Points to head page 0 1
715 * New head page 1 0
716 *
717 * Note we can not trust the prev pointer of the head page, because:
718 *
719 * +----+ +-----+ +-----+
720 * | |------>| T |---X--->| N |
721 * | |<------| | | |
722 * +----+ +-----+ +-----+
723 * ^ ^ |
724 * | +-----+ | |
725 * +----------| R |----------+ |
726 * | |<-----------+
727 * +-----+
728 *
729 * Key: ---X--> HEAD flag set in pointer
730 * T Tail page
731 * R Reader page
732 * N Next page
733 *
734 * (see __rb_reserve_next() to see where this happens)
735 *
736 * What the above shows is that the reader just swapped out
737 * the reader page with a page in the buffer, but before it
738 * could make the new header point back to the new page added
739 * it was preempted by a writer. The writer moved forward onto
740 * the new page added by the reader and is about to move forward
741 * again.
742 *
743 * You can see, it is legitimate for the previous pointer of
744 * the head (or any page) not to point back to itself. But only
745 * temporarially.
746 */
747
748#define RB_PAGE_NORMAL 0UL
749#define RB_PAGE_HEAD 1UL
750#define RB_PAGE_UPDATE 2UL
751
752
753#define RB_FLAG_MASK 3UL
754
755/* PAGE_MOVED is not part of the mask */
756#define RB_PAGE_MOVED 4UL
757
758/*
759 * rb_list_head - remove any bit
760 */
761static struct list_head *rb_list_head(struct list_head *list)
762{
763 unsigned long val = (unsigned long)list;
764
765 return (struct list_head *)(val & ~RB_FLAG_MASK);
766}
767
768/*
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400769 * rb_is_head_page - test if the given page is the head page
Steven Rostedt77ae3652009-03-27 11:00:29 -0400770 *
771 * Because the reader may move the head_page pointer, we can
772 * not trust what the head page is (it may be pointing to
773 * the reader page). But if the next page is a header page,
774 * its flags will be non zero.
775 */
Jesper Juhl42b16b32011-01-17 00:09:38 +0100776static inline int
Steven Rostedt77ae3652009-03-27 11:00:29 -0400777rb_is_head_page(struct ring_buffer_per_cpu *cpu_buffer,
778 struct buffer_page *page, struct list_head *list)
779{
780 unsigned long val;
781
782 val = (unsigned long)list->next;
783
784 if ((val & ~RB_FLAG_MASK) != (unsigned long)&page->list)
785 return RB_PAGE_MOVED;
786
787 return val & RB_FLAG_MASK;
788}
789
790/*
791 * rb_is_reader_page
792 *
793 * The unique thing about the reader page, is that, if the
794 * writer is ever on it, the previous pointer never points
795 * back to the reader page.
796 */
797static int rb_is_reader_page(struct buffer_page *page)
798{
799 struct list_head *list = page->list.prev;
800
801 return rb_list_head(list->next) != &page->list;
802}
803
804/*
805 * rb_set_list_to_head - set a list_head to be pointing to head.
806 */
807static void rb_set_list_to_head(struct ring_buffer_per_cpu *cpu_buffer,
808 struct list_head *list)
809{
810 unsigned long *ptr;
811
812 ptr = (unsigned long *)&list->next;
813 *ptr |= RB_PAGE_HEAD;
814 *ptr &= ~RB_PAGE_UPDATE;
815}
816
817/*
818 * rb_head_page_activate - sets up head page
819 */
820static void rb_head_page_activate(struct ring_buffer_per_cpu *cpu_buffer)
821{
822 struct buffer_page *head;
823
824 head = cpu_buffer->head_page;
825 if (!head)
826 return;
827
828 /*
829 * Set the previous list pointer to have the HEAD flag.
830 */
831 rb_set_list_to_head(cpu_buffer, head->list.prev);
832}
833
834static void rb_list_head_clear(struct list_head *list)
835{
836 unsigned long *ptr = (unsigned long *)&list->next;
837
838 *ptr &= ~RB_FLAG_MASK;
839}
840
841/*
842 * rb_head_page_dactivate - clears head page ptr (for free list)
843 */
844static void
845rb_head_page_deactivate(struct ring_buffer_per_cpu *cpu_buffer)
846{
847 struct list_head *hd;
848
849 /* Go through the whole list and clear any pointers found. */
850 rb_list_head_clear(cpu_buffer->pages);
851
852 list_for_each(hd, cpu_buffer->pages)
853 rb_list_head_clear(hd);
854}
855
856static int rb_head_page_set(struct ring_buffer_per_cpu *cpu_buffer,
857 struct buffer_page *head,
858 struct buffer_page *prev,
859 int old_flag, int new_flag)
860{
861 struct list_head *list;
862 unsigned long val = (unsigned long)&head->list;
863 unsigned long ret;
864
865 list = &prev->list;
866
867 val &= ~RB_FLAG_MASK;
868
Steven Rostedt08a40812009-09-14 09:31:35 -0400869 ret = cmpxchg((unsigned long *)&list->next,
870 val | old_flag, val | new_flag);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400871
872 /* check if the reader took the page */
873 if ((ret & ~RB_FLAG_MASK) != val)
874 return RB_PAGE_MOVED;
875
876 return ret & RB_FLAG_MASK;
877}
878
879static int rb_head_page_set_update(struct ring_buffer_per_cpu *cpu_buffer,
880 struct buffer_page *head,
881 struct buffer_page *prev,
882 int old_flag)
883{
884 return rb_head_page_set(cpu_buffer, head, prev,
885 old_flag, RB_PAGE_UPDATE);
886}
887
888static int rb_head_page_set_head(struct ring_buffer_per_cpu *cpu_buffer,
889 struct buffer_page *head,
890 struct buffer_page *prev,
891 int old_flag)
892{
893 return rb_head_page_set(cpu_buffer, head, prev,
894 old_flag, RB_PAGE_HEAD);
895}
896
897static int rb_head_page_set_normal(struct ring_buffer_per_cpu *cpu_buffer,
898 struct buffer_page *head,
899 struct buffer_page *prev,
900 int old_flag)
901{
902 return rb_head_page_set(cpu_buffer, head, prev,
903 old_flag, RB_PAGE_NORMAL);
904}
905
906static inline void rb_inc_page(struct ring_buffer_per_cpu *cpu_buffer,
907 struct buffer_page **bpage)
908{
909 struct list_head *p = rb_list_head((*bpage)->list.next);
910
911 *bpage = list_entry(p, struct buffer_page, list);
912}
913
914static struct buffer_page *
915rb_set_head_page(struct ring_buffer_per_cpu *cpu_buffer)
916{
917 struct buffer_page *head;
918 struct buffer_page *page;
919 struct list_head *list;
920 int i;
921
922 if (RB_WARN_ON(cpu_buffer, !cpu_buffer->head_page))
923 return NULL;
924
925 /* sanity check */
926 list = cpu_buffer->pages;
927 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev->next) != list))
928 return NULL;
929
930 page = head = cpu_buffer->head_page;
931 /*
932 * It is possible that the writer moves the header behind
933 * where we started, and we miss in one loop.
934 * A second loop should grab the header, but we'll do
935 * three loops just because I'm paranoid.
936 */
937 for (i = 0; i < 3; i++) {
938 do {
939 if (rb_is_head_page(cpu_buffer, page, page->list.prev)) {
940 cpu_buffer->head_page = page;
941 return page;
942 }
943 rb_inc_page(cpu_buffer, &page);
944 } while (page != head);
945 }
946
947 RB_WARN_ON(cpu_buffer, 1);
948
949 return NULL;
950}
951
952static int rb_head_page_replace(struct buffer_page *old,
953 struct buffer_page *new)
954{
955 unsigned long *ptr = (unsigned long *)&old->list.prev->next;
956 unsigned long val;
957 unsigned long ret;
958
959 val = *ptr & ~RB_FLAG_MASK;
960 val |= RB_PAGE_HEAD;
961
Steven Rostedt08a40812009-09-14 09:31:35 -0400962 ret = cmpxchg(ptr, val, (unsigned long)&new->list);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400963
964 return ret == val;
965}
966
967/*
968 * rb_tail_page_update - move the tail page forward
969 *
970 * Returns 1 if moved tail page, 0 if someone else did.
971 */
972static int rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
973 struct buffer_page *tail_page,
974 struct buffer_page *next_page)
975{
976 struct buffer_page *old_tail;
977 unsigned long old_entries;
978 unsigned long old_write;
979 int ret = 0;
980
981 /*
982 * The tail page now needs to be moved forward.
983 *
984 * We need to reset the tail page, but without messing
985 * with possible erasing of data brought in by interrupts
986 * that have moved the tail page and are currently on it.
987 *
988 * We add a counter to the write field to denote this.
989 */
990 old_write = local_add_return(RB_WRITE_INTCNT, &next_page->write);
991 old_entries = local_add_return(RB_WRITE_INTCNT, &next_page->entries);
992
993 /*
994 * Just make sure we have seen our old_write and synchronize
995 * with any interrupts that come in.
996 */
997 barrier();
998
999 /*
1000 * If the tail page is still the same as what we think
1001 * it is, then it is up to us to update the tail
1002 * pointer.
1003 */
1004 if (tail_page == cpu_buffer->tail_page) {
1005 /* Zero the write counter */
1006 unsigned long val = old_write & ~RB_WRITE_MASK;
1007 unsigned long eval = old_entries & ~RB_WRITE_MASK;
1008
1009 /*
1010 * This will only succeed if an interrupt did
1011 * not come in and change it. In which case, we
1012 * do not want to modify it.
Lai Jiangshanda706d82009-07-15 16:27:30 +08001013 *
1014 * We add (void) to let the compiler know that we do not care
1015 * about the return value of these functions. We use the
1016 * cmpxchg to only update if an interrupt did not already
1017 * do it for us. If the cmpxchg fails, we don't care.
Steven Rostedt77ae3652009-03-27 11:00:29 -04001018 */
Lai Jiangshanda706d82009-07-15 16:27:30 +08001019 (void)local_cmpxchg(&next_page->write, old_write, val);
1020 (void)local_cmpxchg(&next_page->entries, old_entries, eval);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001021
1022 /*
1023 * No need to worry about races with clearing out the commit.
1024 * it only can increment when a commit takes place. But that
1025 * only happens in the outer most nested commit.
1026 */
1027 local_set(&next_page->page->commit, 0);
1028
1029 old_tail = cmpxchg(&cpu_buffer->tail_page,
1030 tail_page, next_page);
1031
1032 if (old_tail == tail_page)
1033 ret = 1;
1034 }
1035
1036 return ret;
1037}
1038
1039static int rb_check_bpage(struct ring_buffer_per_cpu *cpu_buffer,
1040 struct buffer_page *bpage)
1041{
1042 unsigned long val = (unsigned long)bpage;
1043
1044 if (RB_WARN_ON(cpu_buffer, val & RB_FLAG_MASK))
1045 return 1;
1046
1047 return 0;
1048}
1049
1050/**
1051 * rb_check_list - make sure a pointer to a list has the last bits zero
1052 */
1053static int rb_check_list(struct ring_buffer_per_cpu *cpu_buffer,
1054 struct list_head *list)
1055{
1056 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev) != list->prev))
1057 return 1;
1058 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->next) != list->next))
1059 return 1;
1060 return 0;
1061}
1062
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001063/**
1064 * check_pages - integrity check of buffer pages
1065 * @cpu_buffer: CPU buffer with pages to test
1066 *
Wenji Huangc3706f02009-02-10 01:03:18 -05001067 * As a safety measure we check to make sure the data pages have not
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001068 * been corrupted.
1069 */
1070static int rb_check_pages(struct ring_buffer_per_cpu *cpu_buffer)
1071{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001072 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001073 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001074
Steven Rostedt308f7ee2012-05-16 19:46:32 -04001075 /* Reset the head page if it exists */
1076 if (cpu_buffer->head_page)
1077 rb_set_head_page(cpu_buffer);
1078
Steven Rostedt77ae3652009-03-27 11:00:29 -04001079 rb_head_page_deactivate(cpu_buffer);
1080
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001081 if (RB_WARN_ON(cpu_buffer, head->next->prev != head))
1082 return -1;
1083 if (RB_WARN_ON(cpu_buffer, head->prev->next != head))
1084 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001085
Steven Rostedt77ae3652009-03-27 11:00:29 -04001086 if (rb_check_list(cpu_buffer, head))
1087 return -1;
1088
Steven Rostedt044fa782008-12-02 23:50:03 -05001089 list_for_each_entry_safe(bpage, tmp, head, list) {
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001090 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001091 bpage->list.next->prev != &bpage->list))
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001092 return -1;
1093 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001094 bpage->list.prev->next != &bpage->list))
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001095 return -1;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001096 if (rb_check_list(cpu_buffer, &bpage->list))
1097 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001098 }
1099
Steven Rostedt77ae3652009-03-27 11:00:29 -04001100 rb_head_page_activate(cpu_buffer);
1101
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001102 return 0;
1103}
1104
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001105static int __rb_allocate_pages(int nr_pages, struct list_head *pages, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001106{
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001107 int i;
Steven Rostedt044fa782008-12-02 23:50:03 -05001108 struct buffer_page *bpage, *tmp;
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001109
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001110 for (i = 0; i < nr_pages; i++) {
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001111 struct page *page;
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001112 /*
1113 * __GFP_NORETRY flag makes sure that the allocation fails
1114 * gracefully without invoking oom-killer and the system is
1115 * not destabilized.
1116 */
Steven Rostedt044fa782008-12-02 23:50:03 -05001117 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001118 GFP_KERNEL | __GFP_NORETRY,
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001119 cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001120 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001121 goto free_pages;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001122
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001123 list_add(&bpage->list, pages);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001124
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001125 page = alloc_pages_node(cpu_to_node(cpu),
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001126 GFP_KERNEL | __GFP_NORETRY, 0);
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001127 if (!page)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001128 goto free_pages;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001129 bpage->page = page_address(page);
Steven Rostedt044fa782008-12-02 23:50:03 -05001130 rb_init_page(bpage->page);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001131 }
1132
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001133 return 0;
1134
1135free_pages:
1136 list_for_each_entry_safe(bpage, tmp, pages, list) {
1137 list_del_init(&bpage->list);
1138 free_buffer_page(bpage);
1139 }
1140
1141 return -ENOMEM;
1142}
1143
1144static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
1145 unsigned nr_pages)
1146{
1147 LIST_HEAD(pages);
1148
1149 WARN_ON(!nr_pages);
1150
1151 if (__rb_allocate_pages(nr_pages, &pages, cpu_buffer->cpu))
1152 return -ENOMEM;
1153
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001154 /*
1155 * The ring buffer page list is a circular list that does not
1156 * start and end with a list head. All page list items point to
1157 * other pages.
1158 */
1159 cpu_buffer->pages = pages.next;
1160 list_del(&pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001161
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001162 cpu_buffer->nr_pages = nr_pages;
1163
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001164 rb_check_pages(cpu_buffer);
1165
1166 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001167}
1168
1169static struct ring_buffer_per_cpu *
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001170rb_allocate_cpu_buffer(struct ring_buffer *buffer, int nr_pages, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001171{
1172 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt044fa782008-12-02 23:50:03 -05001173 struct buffer_page *bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001174 struct page *page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001175 int ret;
1176
1177 cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
1178 GFP_KERNEL, cpu_to_node(cpu));
1179 if (!cpu_buffer)
1180 return NULL;
1181
1182 cpu_buffer->cpu = cpu;
1183 cpu_buffer->buffer = buffer;
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001184 raw_spin_lock_init(&cpu_buffer->reader_lock);
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001185 lockdep_set_class(&cpu_buffer->reader_lock, buffer->reader_lock_key);
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001186 cpu_buffer->lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001187 INIT_WORK(&cpu_buffer->update_pages_work, update_pages_handler);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001188 init_completion(&cpu_buffer->update_done);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001189 init_irq_work(&cpu_buffer->irq_work.work, rb_wake_up_waiters);
Steven Rostedt (Red Hat)f1dc6722013-03-04 17:33:05 -05001190 init_waitqueue_head(&cpu_buffer->irq_work.waiters);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001191
Steven Rostedt044fa782008-12-02 23:50:03 -05001192 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001193 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001194 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001195 goto fail_free_buffer;
1196
Steven Rostedt77ae3652009-03-27 11:00:29 -04001197 rb_check_bpage(cpu_buffer, bpage);
1198
Steven Rostedt044fa782008-12-02 23:50:03 -05001199 cpu_buffer->reader_page = bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001200 page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
1201 if (!page)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001202 goto fail_free_reader;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001203 bpage->page = page_address(page);
Steven Rostedt044fa782008-12-02 23:50:03 -05001204 rb_init_page(bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001205
Steven Rostedtd7690412008-10-01 00:29:53 -04001206 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Vaibhav Nagarnaik44b99462012-06-22 11:50:05 -07001207 INIT_LIST_HEAD(&cpu_buffer->new_pages);
Steven Rostedtd7690412008-10-01 00:29:53 -04001208
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001209 ret = rb_allocate_pages(cpu_buffer, nr_pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001210 if (ret < 0)
Steven Rostedtd7690412008-10-01 00:29:53 -04001211 goto fail_free_reader;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001212
1213 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001214 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001215 cpu_buffer->tail_page = cpu_buffer->commit_page = cpu_buffer->head_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001216
Steven Rostedt77ae3652009-03-27 11:00:29 -04001217 rb_head_page_activate(cpu_buffer);
1218
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001219 return cpu_buffer;
1220
Steven Rostedtd7690412008-10-01 00:29:53 -04001221 fail_free_reader:
1222 free_buffer_page(cpu_buffer->reader_page);
1223
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001224 fail_free_buffer:
1225 kfree(cpu_buffer);
1226 return NULL;
1227}
1228
1229static void rb_free_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
1230{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001231 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001232 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001233
Steven Rostedtd7690412008-10-01 00:29:53 -04001234 free_buffer_page(cpu_buffer->reader_page);
1235
Steven Rostedt77ae3652009-03-27 11:00:29 -04001236 rb_head_page_deactivate(cpu_buffer);
1237
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001238 if (head) {
1239 list_for_each_entry_safe(bpage, tmp, head, list) {
1240 list_del_init(&bpage->list);
1241 free_buffer_page(bpage);
1242 }
1243 bpage = list_entry(head, struct buffer_page, list);
Steven Rostedt044fa782008-12-02 23:50:03 -05001244 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001245 }
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001246
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001247 kfree(cpu_buffer);
1248}
1249
Steven Rostedt59222ef2009-03-12 11:46:03 -04001250#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01001251static int rb_cpu_notify(struct notifier_block *self,
1252 unsigned long action, void *hcpu);
Steven Rostedt554f7862009-03-11 22:00:13 -04001253#endif
1254
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001255/**
1256 * ring_buffer_alloc - allocate a new ring_buffer
Robert Richter68814b52008-11-24 12:24:12 +01001257 * @size: the size in bytes per cpu that is needed.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001258 * @flags: attributes to set for the ring buffer.
1259 *
1260 * Currently the only flag that is available is the RB_FL_OVERWRITE
1261 * flag. This flag means that the buffer will overwrite old data
1262 * when the buffer wraps. If this flag is not set, the buffer will
1263 * drop data when the tail hits the head.
1264 */
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001265struct ring_buffer *__ring_buffer_alloc(unsigned long size, unsigned flags,
1266 struct lock_class_key *key)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001267{
1268 struct ring_buffer *buffer;
1269 int bsize;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001270 int cpu, nr_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001271
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001272 /* keep it in its own cache line */
1273 buffer = kzalloc(ALIGN(sizeof(*buffer), cache_line_size()),
1274 GFP_KERNEL);
1275 if (!buffer)
1276 return NULL;
1277
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301278 if (!alloc_cpumask_var(&buffer->cpumask, GFP_KERNEL))
1279 goto fail_free_buffer;
1280
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001281 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001282 buffer->flags = flags;
Steven Rostedt37886f62009-03-17 17:22:06 -04001283 buffer->clock = trace_clock_local;
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001284 buffer->reader_lock_key = key;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001285
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001286 init_irq_work(&buffer->irq_work.work, rb_wake_up_waiters);
Steven Rostedt (Red Hat)f1dc6722013-03-04 17:33:05 -05001287 init_waitqueue_head(&buffer->irq_work.waiters);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001288
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001289 /* need at least two pages */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001290 if (nr_pages < 2)
1291 nr_pages = 2;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001292
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +01001293 /*
1294 * In case of non-hotplug cpu, if the ring-buffer is allocated
1295 * in early initcall, it will not be notified of secondary cpus.
1296 * In that off case, we need to allocate for all possible cpus.
1297 */
1298#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001299 get_online_cpus();
1300 cpumask_copy(buffer->cpumask, cpu_online_mask);
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +01001301#else
1302 cpumask_copy(buffer->cpumask, cpu_possible_mask);
1303#endif
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001304 buffer->cpus = nr_cpu_ids;
1305
1306 bsize = sizeof(void *) * nr_cpu_ids;
1307 buffer->buffers = kzalloc(ALIGN(bsize, cache_line_size()),
1308 GFP_KERNEL);
1309 if (!buffer->buffers)
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301310 goto fail_free_cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001311
1312 for_each_buffer_cpu(buffer, cpu) {
1313 buffer->buffers[cpu] =
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001314 rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001315 if (!buffer->buffers[cpu])
1316 goto fail_free_buffers;
1317 }
1318
Steven Rostedt59222ef2009-03-12 11:46:03 -04001319#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001320 buffer->cpu_notify.notifier_call = rb_cpu_notify;
1321 buffer->cpu_notify.priority = 0;
1322 register_cpu_notifier(&buffer->cpu_notify);
1323#endif
1324
1325 put_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001326 mutex_init(&buffer->mutex);
1327
1328 return buffer;
1329
1330 fail_free_buffers:
1331 for_each_buffer_cpu(buffer, cpu) {
1332 if (buffer->buffers[cpu])
1333 rb_free_cpu_buffer(buffer->buffers[cpu]);
1334 }
1335 kfree(buffer->buffers);
1336
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301337 fail_free_cpumask:
1338 free_cpumask_var(buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -04001339 put_online_cpus();
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301340
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001341 fail_free_buffer:
1342 kfree(buffer);
1343 return NULL;
1344}
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001345EXPORT_SYMBOL_GPL(__ring_buffer_alloc);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001346
1347/**
1348 * ring_buffer_free - free a ring buffer.
1349 * @buffer: the buffer to free.
1350 */
1351void
1352ring_buffer_free(struct ring_buffer *buffer)
1353{
1354 int cpu;
1355
Steven Rostedt554f7862009-03-11 22:00:13 -04001356 get_online_cpus();
1357
Steven Rostedt59222ef2009-03-12 11:46:03 -04001358#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001359 unregister_cpu_notifier(&buffer->cpu_notify);
1360#endif
1361
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001362 for_each_buffer_cpu(buffer, cpu)
1363 rb_free_cpu_buffer(buffer->buffers[cpu]);
1364
Steven Rostedt554f7862009-03-11 22:00:13 -04001365 put_online_cpus();
1366
Eric Dumazetbd3f0222009-08-07 12:49:29 +02001367 kfree(buffer->buffers);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301368 free_cpumask_var(buffer->cpumask);
1369
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001370 kfree(buffer);
1371}
Robert Richterc4f50182008-12-11 16:49:22 +01001372EXPORT_SYMBOL_GPL(ring_buffer_free);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001373
Steven Rostedt37886f62009-03-17 17:22:06 -04001374void ring_buffer_set_clock(struct ring_buffer *buffer,
1375 u64 (*clock)(void))
1376{
1377 buffer->clock = clock;
1378}
1379
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001380static void rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer);
1381
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001382static inline unsigned long rb_page_entries(struct buffer_page *bpage)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001383{
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001384 return local_read(&bpage->entries) & RB_WRITE_MASK;
1385}
1386
1387static inline unsigned long rb_page_write(struct buffer_page *bpage)
1388{
1389 return local_read(&bpage->write) & RB_WRITE_MASK;
1390}
1391
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001392static int
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001393rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned int nr_pages)
1394{
1395 struct list_head *tail_page, *to_remove, *next_page;
1396 struct buffer_page *to_remove_page, *tmp_iter_page;
1397 struct buffer_page *last_page, *first_page;
1398 unsigned int nr_removed;
1399 unsigned long head_bit;
1400 int page_entries;
1401
1402 head_bit = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001403
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001404 raw_spin_lock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001405 atomic_inc(&cpu_buffer->record_disabled);
1406 /*
1407 * We don't race with the readers since we have acquired the reader
1408 * lock. We also don't race with writers after disabling recording.
1409 * This makes it easy to figure out the first and the last page to be
1410 * removed from the list. We unlink all the pages in between including
1411 * the first and last pages. This is done in a busy loop so that we
1412 * lose the least number of traces.
1413 * The pages are freed after we restart recording and unlock readers.
1414 */
1415 tail_page = &cpu_buffer->tail_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001416
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001417 /*
1418 * tail page might be on reader page, we remove the next page
1419 * from the ring buffer
1420 */
1421 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
1422 tail_page = rb_list_head(tail_page->next);
1423 to_remove = tail_page;
1424
1425 /* start of pages to remove */
1426 first_page = list_entry(rb_list_head(to_remove->next),
1427 struct buffer_page, list);
1428
1429 for (nr_removed = 0; nr_removed < nr_pages; nr_removed++) {
1430 to_remove = rb_list_head(to_remove)->next;
1431 head_bit |= (unsigned long)to_remove & RB_PAGE_HEAD;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001432 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001433
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001434 next_page = rb_list_head(to_remove)->next;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001435
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001436 /*
1437 * Now we remove all pages between tail_page and next_page.
1438 * Make sure that we have head_bit value preserved for the
1439 * next page
1440 */
1441 tail_page->next = (struct list_head *)((unsigned long)next_page |
1442 head_bit);
1443 next_page = rb_list_head(next_page);
1444 next_page->prev = tail_page;
1445
1446 /* make sure pages points to a valid page in the ring buffer */
1447 cpu_buffer->pages = next_page;
1448
1449 /* update head page */
1450 if (head_bit)
1451 cpu_buffer->head_page = list_entry(next_page,
1452 struct buffer_page, list);
1453
1454 /*
1455 * change read pointer to make sure any read iterators reset
1456 * themselves
1457 */
1458 cpu_buffer->read = 0;
1459
1460 /* pages are removed, resume tracing and then free the pages */
1461 atomic_dec(&cpu_buffer->record_disabled);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001462 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001463
1464 RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages));
1465
1466 /* last buffer page to remove */
1467 last_page = list_entry(rb_list_head(to_remove), struct buffer_page,
1468 list);
1469 tmp_iter_page = first_page;
1470
1471 do {
1472 to_remove_page = tmp_iter_page;
1473 rb_inc_page(cpu_buffer, &tmp_iter_page);
1474
1475 /* update the counters */
1476 page_entries = rb_page_entries(to_remove_page);
1477 if (page_entries) {
1478 /*
1479 * If something was added to this page, it was full
1480 * since it is not the tail page. So we deduct the
1481 * bytes consumed in ring buffer from here.
Vaibhav Nagarnaik48fdc722012-06-29 12:31:41 -07001482 * Increment overrun to account for the lost events.
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001483 */
Vaibhav Nagarnaik48fdc722012-06-29 12:31:41 -07001484 local_add(page_entries, &cpu_buffer->overrun);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001485 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
1486 }
1487
1488 /*
1489 * We have already removed references to this list item, just
1490 * free up the buffer_page and its page
1491 */
1492 free_buffer_page(to_remove_page);
1493 nr_removed--;
1494
1495 } while (to_remove_page != last_page);
1496
1497 RB_WARN_ON(cpu_buffer, nr_removed);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001498
1499 return nr_removed == 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001500}
1501
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001502static int
1503rb_insert_pages(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001504{
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001505 struct list_head *pages = &cpu_buffer->new_pages;
1506 int retries, success;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001507
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001508 raw_spin_lock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001509 /*
1510 * We are holding the reader lock, so the reader page won't be swapped
1511 * in the ring buffer. Now we are racing with the writer trying to
1512 * move head page and the tail page.
1513 * We are going to adapt the reader page update process where:
1514 * 1. We first splice the start and end of list of new pages between
1515 * the head page and its previous page.
1516 * 2. We cmpxchg the prev_page->next to point from head page to the
1517 * start of new pages list.
1518 * 3. Finally, we update the head->prev to the end of new list.
1519 *
1520 * We will try this process 10 times, to make sure that we don't keep
1521 * spinning.
1522 */
1523 retries = 10;
1524 success = 0;
1525 while (retries--) {
1526 struct list_head *head_page, *prev_page, *r;
1527 struct list_head *last_page, *first_page;
1528 struct list_head *head_page_with_bit;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001529
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001530 head_page = &rb_set_head_page(cpu_buffer)->list;
Steven Rostedt54f7be52012-11-29 22:27:22 -05001531 if (!head_page)
1532 break;
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001533 prev_page = head_page->prev;
1534
1535 first_page = pages->next;
1536 last_page = pages->prev;
1537
1538 head_page_with_bit = (struct list_head *)
1539 ((unsigned long)head_page | RB_PAGE_HEAD);
1540
1541 last_page->next = head_page_with_bit;
1542 first_page->prev = prev_page;
1543
1544 r = cmpxchg(&prev_page->next, head_page_with_bit, first_page);
1545
1546 if (r == head_page_with_bit) {
1547 /*
1548 * yay, we replaced the page pointer to our new list,
1549 * now, we just have to update to head page's prev
1550 * pointer to point to end of list
1551 */
1552 head_page->prev = last_page;
1553 success = 1;
1554 break;
1555 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001556 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001557
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001558 if (success)
1559 INIT_LIST_HEAD(pages);
1560 /*
1561 * If we weren't successful in adding in new pages, warn and stop
1562 * tracing
1563 */
1564 RB_WARN_ON(cpu_buffer, !success);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001565 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001566
1567 /* free pages if they weren't inserted */
1568 if (!success) {
1569 struct buffer_page *bpage, *tmp;
1570 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1571 list) {
1572 list_del_init(&bpage->list);
1573 free_buffer_page(bpage);
1574 }
1575 }
1576 return success;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001577}
1578
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001579static void rb_update_pages(struct ring_buffer_per_cpu *cpu_buffer)
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001580{
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001581 int success;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001582
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001583 if (cpu_buffer->nr_pages_to_update > 0)
1584 success = rb_insert_pages(cpu_buffer);
1585 else
1586 success = rb_remove_pages(cpu_buffer,
1587 -cpu_buffer->nr_pages_to_update);
1588
1589 if (success)
1590 cpu_buffer->nr_pages += cpu_buffer->nr_pages_to_update;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001591}
1592
1593static void update_pages_handler(struct work_struct *work)
1594{
1595 struct ring_buffer_per_cpu *cpu_buffer = container_of(work,
1596 struct ring_buffer_per_cpu, update_pages_work);
1597 rb_update_pages(cpu_buffer);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001598 complete(&cpu_buffer->update_done);
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001599}
1600
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001601/**
1602 * ring_buffer_resize - resize the ring buffer
1603 * @buffer: the buffer to resize.
1604 * @size: the new size.
1605 *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001606 * Minimum size is 2 * BUF_PAGE_SIZE.
1607 *
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001608 * Returns 0 on success and < 0 on failure.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001609 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001610int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size,
1611 int cpu_id)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001612{
1613 struct ring_buffer_per_cpu *cpu_buffer;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001614 unsigned nr_pages;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001615 int cpu, err = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001616
Ingo Molnaree51a1d2008-11-13 14:58:31 +01001617 /*
1618 * Always succeed at resizing a non-existent buffer:
1619 */
1620 if (!buffer)
1621 return size;
1622
Steven Rostedt6a31e1f2012-05-23 15:35:17 -04001623 /* Make sure the requested buffer exists */
1624 if (cpu_id != RING_BUFFER_ALL_CPUS &&
1625 !cpumask_test_cpu(cpu_id, buffer->cpumask))
1626 return size;
1627
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001628 size = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1629 size *= BUF_PAGE_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001630
1631 /* we need a minimum of two pages */
1632 if (size < BUF_PAGE_SIZE * 2)
1633 size = BUF_PAGE_SIZE * 2;
1634
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001635 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1636
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001637 /*
1638 * Don't succeed if resizing is disabled, as a reader might be
1639 * manipulating the ring buffer and is expecting a sane state while
1640 * this is true.
1641 */
1642 if (atomic_read(&buffer->resize_disabled))
1643 return -EBUSY;
1644
1645 /* prevent another thread from changing buffer sizes */
1646 mutex_lock(&buffer->mutex);
1647
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001648 if (cpu_id == RING_BUFFER_ALL_CPUS) {
1649 /* calculate the pages to update */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001650 for_each_buffer_cpu(buffer, cpu) {
1651 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001652
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001653 cpu_buffer->nr_pages_to_update = nr_pages -
1654 cpu_buffer->nr_pages;
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001655 /*
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001656 * nothing more to do for removing pages or no update
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001657 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001658 if (cpu_buffer->nr_pages_to_update <= 0)
1659 continue;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001660 /*
1661 * to add pages, make sure all new pages can be
1662 * allocated without receiving ENOMEM
1663 */
1664 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1665 if (__rb_allocate_pages(cpu_buffer->nr_pages_to_update,
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001666 &cpu_buffer->new_pages, cpu)) {
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001667 /* not enough memory for new pages */
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001668 err = -ENOMEM;
1669 goto out_err;
1670 }
1671 }
1672
1673 get_online_cpus();
1674 /*
1675 * Fire off all the required work handlers
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001676 * We can't schedule on offline CPUs, but it's not necessary
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001677 * since we can change their buffer sizes without any race.
1678 */
1679 for_each_buffer_cpu(buffer, cpu) {
1680 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001681 if (!cpu_buffer->nr_pages_to_update)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001682 continue;
1683
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001684 /* The update must run on the CPU that is being updated. */
1685 preempt_disable();
1686 if (cpu == smp_processor_id() || !cpu_online(cpu)) {
1687 rb_update_pages(cpu_buffer);
1688 cpu_buffer->nr_pages_to_update = 0;
1689 } else {
1690 /*
1691 * Can not disable preemption for schedule_work_on()
1692 * on PREEMPT_RT.
1693 */
1694 preempt_enable();
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001695 schedule_work_on(cpu,
1696 &cpu_buffer->update_pages_work);
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001697 preempt_disable();
1698 }
1699 preempt_enable();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001700 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001701
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001702 /* wait for all the updates to complete */
1703 for_each_buffer_cpu(buffer, cpu) {
1704 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001705 if (!cpu_buffer->nr_pages_to_update)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001706 continue;
1707
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001708 if (cpu_online(cpu))
1709 wait_for_completion(&cpu_buffer->update_done);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001710 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001711 }
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001712
1713 put_online_cpus();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001714 } else {
Vaibhav Nagarnaik8e49f412012-10-10 16:40:27 -07001715 /* Make sure this CPU has been intitialized */
1716 if (!cpumask_test_cpu(cpu_id, buffer->cpumask))
1717 goto out;
1718
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001719 cpu_buffer = buffer->buffers[cpu_id];
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001720
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001721 if (nr_pages == cpu_buffer->nr_pages)
1722 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001723
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001724 cpu_buffer->nr_pages_to_update = nr_pages -
1725 cpu_buffer->nr_pages;
1726
1727 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1728 if (cpu_buffer->nr_pages_to_update > 0 &&
1729 __rb_allocate_pages(cpu_buffer->nr_pages_to_update,
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001730 &cpu_buffer->new_pages, cpu_id)) {
1731 err = -ENOMEM;
1732 goto out_err;
1733 }
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001734
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001735 get_online_cpus();
1736
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001737 preempt_disable();
1738 /* The update must run on the CPU that is being updated. */
1739 if (cpu_id == smp_processor_id() || !cpu_online(cpu_id))
1740 rb_update_pages(cpu_buffer);
1741 else {
1742 /*
1743 * Can not disable preemption for schedule_work_on()
1744 * on PREEMPT_RT.
1745 */
1746 preempt_enable();
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001747 schedule_work_on(cpu_id,
1748 &cpu_buffer->update_pages_work);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001749 wait_for_completion(&cpu_buffer->update_done);
Steven Rostedt (Red Hat)f5eb5582013-03-07 09:27:42 -05001750 preempt_disable();
1751 }
1752 preempt_enable();
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001753
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001754 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001755 put_online_cpus();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001756 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001757
1758 out:
Steven Rostedt659f4512012-05-14 17:02:33 -04001759 /*
1760 * The ring buffer resize can happen with the ring buffer
1761 * enabled, so that the update disturbs the tracing as little
1762 * as possible. But if the buffer is disabled, we do not need
1763 * to worry about that, and we can take the time to verify
1764 * that the buffer is not corrupt.
1765 */
1766 if (atomic_read(&buffer->record_disabled)) {
1767 atomic_inc(&buffer->record_disabled);
1768 /*
1769 * Even though the buffer was disabled, we must make sure
1770 * that it is truly disabled before calling rb_check_pages.
1771 * There could have been a race between checking
1772 * record_disable and incrementing it.
1773 */
1774 synchronize_sched();
1775 for_each_buffer_cpu(buffer, cpu) {
1776 cpu_buffer = buffer->buffers[cpu];
1777 rb_check_pages(cpu_buffer);
1778 }
1779 atomic_dec(&buffer->record_disabled);
1780 }
1781
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001782 mutex_unlock(&buffer->mutex);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001783 return size;
1784
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001785 out_err:
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001786 for_each_buffer_cpu(buffer, cpu) {
1787 struct buffer_page *bpage, *tmp;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001788
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001789 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001790 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001791
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001792 if (list_empty(&cpu_buffer->new_pages))
1793 continue;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001794
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001795 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1796 list) {
1797 list_del_init(&bpage->list);
1798 free_buffer_page(bpage);
1799 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001800 }
Vegard Nossum641d2f62008-11-18 19:22:13 +01001801 mutex_unlock(&buffer->mutex);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001802 return err;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001803}
Robert Richterc4f50182008-12-11 16:49:22 +01001804EXPORT_SYMBOL_GPL(ring_buffer_resize);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001805
David Sharp750912f2010-12-08 13:46:47 -08001806void ring_buffer_change_overwrite(struct ring_buffer *buffer, int val)
1807{
1808 mutex_lock(&buffer->mutex);
1809 if (val)
1810 buffer->flags |= RB_FL_OVERWRITE;
1811 else
1812 buffer->flags &= ~RB_FL_OVERWRITE;
1813 mutex_unlock(&buffer->mutex);
1814}
1815EXPORT_SYMBOL_GPL(ring_buffer_change_overwrite);
1816
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001817static inline void *
Steven Rostedt044fa782008-12-02 23:50:03 -05001818__rb_data_page_index(struct buffer_data_page *bpage, unsigned index)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001819{
Steven Rostedt044fa782008-12-02 23:50:03 -05001820 return bpage->data + index;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001821}
1822
Steven Rostedt044fa782008-12-02 23:50:03 -05001823static inline void *__rb_page_index(struct buffer_page *bpage, unsigned index)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001824{
Steven Rostedt044fa782008-12-02 23:50:03 -05001825 return bpage->page->data + index;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001826}
1827
1828static inline struct ring_buffer_event *
Steven Rostedtd7690412008-10-01 00:29:53 -04001829rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001830{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001831 return __rb_page_index(cpu_buffer->reader_page,
1832 cpu_buffer->reader_page->read);
1833}
1834
1835static inline struct ring_buffer_event *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001836rb_iter_head_event(struct ring_buffer_iter *iter)
1837{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001838 return __rb_page_index(iter->head_page, iter->head);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001839}
1840
Steven Rostedtbf41a152008-10-04 02:00:59 -04001841static inline unsigned rb_page_commit(struct buffer_page *bpage)
1842{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001843 return local_read(&bpage->page->commit);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001844}
1845
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001846/* Size is determined by what has been committed */
Steven Rostedtbf41a152008-10-04 02:00:59 -04001847static inline unsigned rb_page_size(struct buffer_page *bpage)
1848{
1849 return rb_page_commit(bpage);
1850}
1851
1852static inline unsigned
1853rb_commit_index(struct ring_buffer_per_cpu *cpu_buffer)
1854{
1855 return rb_page_commit(cpu_buffer->commit_page);
1856}
1857
Steven Rostedtbf41a152008-10-04 02:00:59 -04001858static inline unsigned
1859rb_event_index(struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001860{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001861 unsigned long addr = (unsigned long)event;
1862
Steven Rostedt22f470f2009-06-11 09:29:58 -04001863 return (addr & ~PAGE_MASK) - BUF_PAGE_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001864}
1865
Steven Rostedt0f0c85f2009-05-11 16:08:00 -04001866static inline int
Steven Rostedtfa743952009-06-16 12:37:57 -04001867rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
1868 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001869{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001870 unsigned long addr = (unsigned long)event;
1871 unsigned long index;
1872
1873 index = rb_event_index(event);
1874 addr &= PAGE_MASK;
1875
1876 return cpu_buffer->commit_page->page == (void *)addr &&
1877 rb_commit_index(cpu_buffer) == index;
1878}
1879
Andrew Morton34a148b2009-01-09 12:27:09 -08001880static void
Steven Rostedtbf41a152008-10-04 02:00:59 -04001881rb_set_commit_to_write(struct ring_buffer_per_cpu *cpu_buffer)
1882{
Steven Rostedt77ae3652009-03-27 11:00:29 -04001883 unsigned long max_count;
1884
Steven Rostedtbf41a152008-10-04 02:00:59 -04001885 /*
1886 * We only race with interrupts and NMIs on this CPU.
1887 * If we own the commit event, then we can commit
1888 * all others that interrupted us, since the interruptions
1889 * are in stack format (they finish before they come
1890 * back to us). This allows us to do a simple loop to
1891 * assign the commit to the tail.
1892 */
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001893 again:
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001894 max_count = cpu_buffer->nr_pages * 100;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001895
Steven Rostedtbf41a152008-10-04 02:00:59 -04001896 while (cpu_buffer->commit_page != cpu_buffer->tail_page) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001897 if (RB_WARN_ON(cpu_buffer, !(--max_count)))
1898 return;
1899 if (RB_WARN_ON(cpu_buffer,
1900 rb_is_reader_page(cpu_buffer->tail_page)))
1901 return;
1902 local_set(&cpu_buffer->commit_page->page->commit,
1903 rb_page_write(cpu_buffer->commit_page));
Steven Rostedtbf41a152008-10-04 02:00:59 -04001904 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001905 cpu_buffer->write_stamp =
1906 cpu_buffer->commit_page->page->time_stamp;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001907 /* add barrier to keep gcc from optimizing too much */
1908 barrier();
1909 }
1910 while (rb_commit_index(cpu_buffer) !=
1911 rb_page_write(cpu_buffer->commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001912
1913 local_set(&cpu_buffer->commit_page->page->commit,
1914 rb_page_write(cpu_buffer->commit_page));
1915 RB_WARN_ON(cpu_buffer,
1916 local_read(&cpu_buffer->commit_page->page->commit) &
1917 ~RB_WRITE_MASK);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001918 barrier();
1919 }
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001920
1921 /* again, keep gcc from optimizing */
1922 barrier();
1923
1924 /*
1925 * If an interrupt came in just after the first while loop
1926 * and pushed the tail page forward, we will be left with
1927 * a dangling commit that will never go forward.
1928 */
1929 if (unlikely(cpu_buffer->commit_page != cpu_buffer->tail_page))
1930 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001931}
1932
Steven Rostedtd7690412008-10-01 00:29:53 -04001933static void rb_reset_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001934{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001935 cpu_buffer->read_stamp = cpu_buffer->reader_page->page->time_stamp;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001936 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04001937}
1938
Andrew Morton34a148b2009-01-09 12:27:09 -08001939static void rb_inc_iter(struct ring_buffer_iter *iter)
Steven Rostedtd7690412008-10-01 00:29:53 -04001940{
1941 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1942
1943 /*
1944 * The iterator could be on the reader page (it starts there).
1945 * But the head could have moved, since the reader was
1946 * found. Check for this case and assign the iterator
1947 * to the head page instead of next.
1948 */
1949 if (iter->head_page == cpu_buffer->reader_page)
Steven Rostedt77ae3652009-03-27 11:00:29 -04001950 iter->head_page = rb_set_head_page(cpu_buffer);
Steven Rostedtd7690412008-10-01 00:29:53 -04001951 else
1952 rb_inc_page(cpu_buffer, &iter->head_page);
1953
Steven Rostedtabc9b562008-12-02 15:34:06 -05001954 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001955 iter->head = 0;
1956}
1957
Steven Rostedt69d1b832010-10-07 18:18:05 -04001958/* Slow path, do not inline */
1959static noinline struct ring_buffer_event *
1960rb_add_time_stamp(struct ring_buffer_event *event, u64 delta)
1961{
1962 event->type_len = RINGBUF_TYPE_TIME_EXTEND;
1963
1964 /* Not the first event on the page? */
1965 if (rb_event_index(event)) {
1966 event->time_delta = delta & TS_MASK;
1967 event->array[0] = delta >> TS_SHIFT;
1968 } else {
1969 /* nope, just zero it */
1970 event->time_delta = 0;
1971 event->array[0] = 0;
1972 }
1973
1974 return skip_time_extend(event);
1975}
1976
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001977/**
David Sharp01e3e712012-06-07 16:46:24 -07001978 * rb_update_event - update event type and data
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001979 * @event: the even to update
1980 * @type: the type of event
1981 * @length: the size of the event field in the ring buffer
1982 *
1983 * Update the type and data fields of the event. The length
1984 * is the actual size that is written to the ring buffer,
1985 * and with this, we can determine what to place into the
1986 * data field.
1987 */
Andrew Morton34a148b2009-01-09 12:27:09 -08001988static void
Steven Rostedt69d1b832010-10-07 18:18:05 -04001989rb_update_event(struct ring_buffer_per_cpu *cpu_buffer,
1990 struct ring_buffer_event *event, unsigned length,
1991 int add_timestamp, u64 delta)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001992{
Steven Rostedt69d1b832010-10-07 18:18:05 -04001993 /* Only a commit updates the timestamp */
1994 if (unlikely(!rb_event_is_commit(cpu_buffer, event)))
1995 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001996
Steven Rostedt69d1b832010-10-07 18:18:05 -04001997 /*
1998 * If we need to add a timestamp, then we
1999 * add it to the start of the resevered space.
2000 */
2001 if (unlikely(add_timestamp)) {
2002 event = rb_add_time_stamp(event, delta);
2003 length -= RB_LEN_TIME_EXTEND;
2004 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002005 }
Steven Rostedt69d1b832010-10-07 18:18:05 -04002006
2007 event->time_delta = delta;
2008 length -= RB_EVNT_HDR_SIZE;
2009 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT) {
2010 event->type_len = 0;
2011 event->array[0] = length;
2012 } else
2013 event->type_len = DIV_ROUND_UP(length, RB_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002014}
2015
Steven Rostedt77ae3652009-03-27 11:00:29 -04002016/*
2017 * rb_handle_head_page - writer hit the head page
2018 *
2019 * Returns: +1 to retry page
2020 * 0 to continue
2021 * -1 on error
2022 */
2023static int
2024rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer,
2025 struct buffer_page *tail_page,
2026 struct buffer_page *next_page)
2027{
2028 struct buffer_page *new_head;
2029 int entries;
2030 int type;
2031 int ret;
2032
2033 entries = rb_page_entries(next_page);
2034
2035 /*
2036 * The hard part is here. We need to move the head
2037 * forward, and protect against both readers on
2038 * other CPUs and writers coming in via interrupts.
2039 */
2040 type = rb_head_page_set_update(cpu_buffer, next_page, tail_page,
2041 RB_PAGE_HEAD);
2042
2043 /*
2044 * type can be one of four:
2045 * NORMAL - an interrupt already moved it for us
2046 * HEAD - we are the first to get here.
2047 * UPDATE - we are the interrupt interrupting
2048 * a current move.
2049 * MOVED - a reader on another CPU moved the next
2050 * pointer to its reader page. Give up
2051 * and try again.
2052 */
2053
2054 switch (type) {
2055 case RB_PAGE_HEAD:
2056 /*
2057 * We changed the head to UPDATE, thus
2058 * it is our responsibility to update
2059 * the counters.
2060 */
2061 local_add(entries, &cpu_buffer->overrun);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002062 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002063
2064 /*
2065 * The entries will be zeroed out when we move the
2066 * tail page.
2067 */
2068
2069 /* still more to do */
2070 break;
2071
2072 case RB_PAGE_UPDATE:
2073 /*
2074 * This is an interrupt that interrupt the
2075 * previous update. Still more to do.
2076 */
2077 break;
2078 case RB_PAGE_NORMAL:
2079 /*
2080 * An interrupt came in before the update
2081 * and processed this for us.
2082 * Nothing left to do.
2083 */
2084 return 1;
2085 case RB_PAGE_MOVED:
2086 /*
2087 * The reader is on another CPU and just did
2088 * a swap with our next_page.
2089 * Try again.
2090 */
2091 return 1;
2092 default:
2093 RB_WARN_ON(cpu_buffer, 1); /* WTF??? */
2094 return -1;
2095 }
2096
2097 /*
2098 * Now that we are here, the old head pointer is
2099 * set to UPDATE. This will keep the reader from
2100 * swapping the head page with the reader page.
2101 * The reader (on another CPU) will spin till
2102 * we are finished.
2103 *
2104 * We just need to protect against interrupts
2105 * doing the job. We will set the next pointer
2106 * to HEAD. After that, we set the old pointer
2107 * to NORMAL, but only if it was HEAD before.
2108 * otherwise we are an interrupt, and only
2109 * want the outer most commit to reset it.
2110 */
2111 new_head = next_page;
2112 rb_inc_page(cpu_buffer, &new_head);
2113
2114 ret = rb_head_page_set_head(cpu_buffer, new_head, next_page,
2115 RB_PAGE_NORMAL);
2116
2117 /*
2118 * Valid returns are:
2119 * HEAD - an interrupt came in and already set it.
2120 * NORMAL - One of two things:
2121 * 1) We really set it.
2122 * 2) A bunch of interrupts came in and moved
2123 * the page forward again.
2124 */
2125 switch (ret) {
2126 case RB_PAGE_HEAD:
2127 case RB_PAGE_NORMAL:
2128 /* OK */
2129 break;
2130 default:
2131 RB_WARN_ON(cpu_buffer, 1);
2132 return -1;
2133 }
2134
2135 /*
2136 * It is possible that an interrupt came in,
2137 * set the head up, then more interrupts came in
2138 * and moved it again. When we get back here,
2139 * the page would have been set to NORMAL but we
2140 * just set it back to HEAD.
2141 *
2142 * How do you detect this? Well, if that happened
2143 * the tail page would have moved.
2144 */
2145 if (ret == RB_PAGE_NORMAL) {
2146 /*
2147 * If the tail had moved passed next, then we need
2148 * to reset the pointer.
2149 */
2150 if (cpu_buffer->tail_page != tail_page &&
2151 cpu_buffer->tail_page != next_page)
2152 rb_head_page_set_normal(cpu_buffer, new_head,
2153 next_page,
2154 RB_PAGE_HEAD);
2155 }
2156
2157 /*
2158 * If this was the outer most commit (the one that
2159 * changed the original pointer from HEAD to UPDATE),
2160 * then it is up to us to reset it to NORMAL.
2161 */
2162 if (type == RB_PAGE_HEAD) {
2163 ret = rb_head_page_set_normal(cpu_buffer, next_page,
2164 tail_page,
2165 RB_PAGE_UPDATE);
2166 if (RB_WARN_ON(cpu_buffer,
2167 ret != RB_PAGE_UPDATE))
2168 return -1;
2169 }
2170
2171 return 0;
2172}
2173
Andrew Morton34a148b2009-01-09 12:27:09 -08002174static unsigned rb_calculate_event_length(unsigned length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002175{
2176 struct ring_buffer_event event; /* Used only for sizeof array */
2177
2178 /* zero length can cause confusions */
2179 if (!length)
2180 length = 1;
2181
Steven Rostedt22710482010-03-18 17:54:19 -04002182 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002183 length += sizeof(event.array[0]);
2184
2185 length += RB_EVNT_HDR_SIZE;
Steven Rostedt22710482010-03-18 17:54:19 -04002186 length = ALIGN(length, RB_ARCH_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002187
2188 return length;
2189}
2190
Steven Rostedtc7b09302009-06-11 11:12:00 -04002191static inline void
2192rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
2193 struct buffer_page *tail_page,
2194 unsigned long tail, unsigned long length)
2195{
2196 struct ring_buffer_event *event;
2197
2198 /*
2199 * Only the event that crossed the page boundary
2200 * must fill the old tail_page with padding.
2201 */
2202 if (tail >= BUF_PAGE_SIZE) {
Steven Rostedtb3230c82010-05-21 11:55:21 -04002203 /*
2204 * If the page was filled, then we still need
2205 * to update the real_end. Reset it to zero
2206 * and the reader will ignore it.
2207 */
2208 if (tail == BUF_PAGE_SIZE)
2209 tail_page->real_end = 0;
2210
Steven Rostedtc7b09302009-06-11 11:12:00 -04002211 local_sub(length, &tail_page->write);
2212 return;
2213 }
2214
2215 event = __rb_page_index(tail_page, tail);
Linus Torvaldsb0b70652009-06-20 10:56:46 -07002216 kmemcheck_annotate_bitfield(event, bitfield);
Steven Rostedtc7b09302009-06-11 11:12:00 -04002217
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002218 /* account for padding bytes */
2219 local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes);
2220
Steven Rostedtc7b09302009-06-11 11:12:00 -04002221 /*
Steven Rostedtff0ff842010-03-31 22:11:42 -04002222 * Save the original length to the meta data.
2223 * This will be used by the reader to add lost event
2224 * counter.
2225 */
2226 tail_page->real_end = tail;
2227
2228 /*
Steven Rostedtc7b09302009-06-11 11:12:00 -04002229 * If this event is bigger than the minimum size, then
2230 * we need to be careful that we don't subtract the
2231 * write counter enough to allow another writer to slip
2232 * in on this page.
2233 * We put in a discarded commit instead, to make sure
2234 * that this space is not used again.
2235 *
2236 * If we are less than the minimum size, we don't need to
2237 * worry about it.
2238 */
2239 if (tail > (BUF_PAGE_SIZE - RB_EVNT_MIN_SIZE)) {
2240 /* No room for any events */
2241
2242 /* Mark the rest of the page with padding */
2243 rb_event_set_padding(event);
2244
2245 /* Set the write back to the previous setting */
2246 local_sub(length, &tail_page->write);
2247 return;
2248 }
2249
2250 /* Put in a discarded event */
2251 event->array[0] = (BUF_PAGE_SIZE - tail) - RB_EVNT_HDR_SIZE;
2252 event->type_len = RINGBUF_TYPE_PADDING;
2253 /* time delta must be non zero */
2254 event->time_delta = 1;
Steven Rostedtc7b09302009-06-11 11:12:00 -04002255
2256 /* Set write to end of buffer */
2257 length = (tail + length) - BUF_PAGE_SIZE;
2258 local_sub(length, &tail_page->write);
2259}
Steven Rostedt6634ff22009-05-06 15:30:07 -04002260
Steven Rostedt747e94a2010-10-08 13:51:48 -04002261/*
2262 * This is the slow path, force gcc not to inline it.
2263 */
2264static noinline struct ring_buffer_event *
Steven Rostedt6634ff22009-05-06 15:30:07 -04002265rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
2266 unsigned long length, unsigned long tail,
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002267 struct buffer_page *tail_page, u64 ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002268{
Steven Rostedt5a50e332009-11-17 08:43:01 -05002269 struct buffer_page *commit_page = cpu_buffer->commit_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002270 struct ring_buffer *buffer = cpu_buffer->buffer;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002271 struct buffer_page *next_page;
2272 int ret;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002273
2274 next_page = tail_page;
2275
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002276 rb_inc_page(cpu_buffer, &next_page);
2277
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002278 /*
2279 * If for some reason, we had an interrupt storm that made
2280 * it all the way around the buffer, bail, and warn
2281 * about it.
2282 */
2283 if (unlikely(next_page == commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002284 local_inc(&cpu_buffer->commit_overrun);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002285 goto out_reset;
2286 }
2287
Steven Rostedt77ae3652009-03-27 11:00:29 -04002288 /*
2289 * This is where the fun begins!
2290 *
2291 * We are fighting against races between a reader that
2292 * could be on another CPU trying to swap its reader
2293 * page with the buffer head.
2294 *
2295 * We are also fighting against interrupts coming in and
2296 * moving the head or tail on us as well.
2297 *
2298 * If the next page is the head page then we have filled
2299 * the buffer, unless the commit page is still on the
2300 * reader page.
2301 */
2302 if (rb_is_head_page(cpu_buffer, next_page, &tail_page->list)) {
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002303
Steven Rostedt77ae3652009-03-27 11:00:29 -04002304 /*
2305 * If the commit is not on the reader page, then
2306 * move the header page.
2307 */
2308 if (!rb_is_reader_page(cpu_buffer->commit_page)) {
2309 /*
2310 * If we are not in overwrite mode,
2311 * this is easy, just stop here.
2312 */
Slava Pestov884bfe82011-07-15 14:23:58 -07002313 if (!(buffer->flags & RB_FL_OVERWRITE)) {
2314 local_inc(&cpu_buffer->dropped_events);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002315 goto out_reset;
Slava Pestov884bfe82011-07-15 14:23:58 -07002316 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002317
Steven Rostedt77ae3652009-03-27 11:00:29 -04002318 ret = rb_handle_head_page(cpu_buffer,
2319 tail_page,
2320 next_page);
2321 if (ret < 0)
2322 goto out_reset;
2323 if (ret)
2324 goto out_again;
2325 } else {
2326 /*
2327 * We need to be careful here too. The
2328 * commit page could still be on the reader
2329 * page. We could have a small buffer, and
2330 * have filled up the buffer with events
2331 * from interrupts and such, and wrapped.
2332 *
2333 * Note, if the tail page is also the on the
2334 * reader_page, we let it move out.
2335 */
2336 if (unlikely((cpu_buffer->commit_page !=
2337 cpu_buffer->tail_page) &&
2338 (cpu_buffer->commit_page ==
2339 cpu_buffer->reader_page))) {
2340 local_inc(&cpu_buffer->commit_overrun);
2341 goto out_reset;
2342 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002343 }
2344 }
2345
Steven Rostedt77ae3652009-03-27 11:00:29 -04002346 ret = rb_tail_page_update(cpu_buffer, tail_page, next_page);
2347 if (ret) {
2348 /*
2349 * Nested commits always have zero deltas, so
2350 * just reread the time stamp
2351 */
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002352 ts = rb_time_stamp(buffer);
2353 next_page->page->time_stamp = ts;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002354 }
2355
Steven Rostedt77ae3652009-03-27 11:00:29 -04002356 out_again:
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002357
Steven Rostedt77ae3652009-03-27 11:00:29 -04002358 rb_reset_tail(cpu_buffer, tail_page, tail, length);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002359
2360 /* fail and let the caller try again */
2361 return ERR_PTR(-EAGAIN);
2362
Steven Rostedt45141d42009-02-12 13:19:48 -05002363 out_reset:
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08002364 /* reset write */
Steven Rostedtc7b09302009-06-11 11:12:00 -04002365 rb_reset_tail(cpu_buffer, tail_page, tail, length);
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08002366
Steven Rostedtbf41a152008-10-04 02:00:59 -04002367 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002368}
2369
Steven Rostedt6634ff22009-05-06 15:30:07 -04002370static struct ring_buffer_event *
2371__rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt69d1b832010-10-07 18:18:05 -04002372 unsigned long length, u64 ts,
2373 u64 delta, int add_timestamp)
Steven Rostedt6634ff22009-05-06 15:30:07 -04002374{
Steven Rostedt5a50e332009-11-17 08:43:01 -05002375 struct buffer_page *tail_page;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002376 struct ring_buffer_event *event;
2377 unsigned long tail, write;
2378
Steven Rostedt69d1b832010-10-07 18:18:05 -04002379 /*
2380 * If the time delta since the last event is too big to
2381 * hold in the time field of the event, then we append a
2382 * TIME EXTEND event ahead of the data event.
2383 */
2384 if (unlikely(add_timestamp))
2385 length += RB_LEN_TIME_EXTEND;
2386
Steven Rostedt6634ff22009-05-06 15:30:07 -04002387 tail_page = cpu_buffer->tail_page;
2388 write = local_add_return(length, &tail_page->write);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002389
2390 /* set write to only the index of the write */
2391 write &= RB_WRITE_MASK;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002392 tail = write - length;
2393
2394 /* See if we shot pass the end of this buffer page */
Steven Rostedt747e94a2010-10-08 13:51:48 -04002395 if (unlikely(write > BUF_PAGE_SIZE))
Steven Rostedt6634ff22009-05-06 15:30:07 -04002396 return rb_move_tail(cpu_buffer, length, tail,
Steven Rostedt5a50e332009-11-17 08:43:01 -05002397 tail_page, ts);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002398
2399 /* We reserved something on the buffer */
2400
Steven Rostedt6634ff22009-05-06 15:30:07 -04002401 event = __rb_page_index(tail_page, tail);
Vegard Nossum1744a212009-02-28 08:29:44 +01002402 kmemcheck_annotate_bitfield(event, bitfield);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002403 rb_update_event(cpu_buffer, event, length, add_timestamp, delta);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002404
Steven Rostedt69d1b832010-10-07 18:18:05 -04002405 local_inc(&tail_page->entries);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002406
2407 /*
Steven Rostedtfa743952009-06-16 12:37:57 -04002408 * If this is the first commit on the page, then update
2409 * its timestamp.
Steven Rostedt6634ff22009-05-06 15:30:07 -04002410 */
Steven Rostedtfa743952009-06-16 12:37:57 -04002411 if (!tail)
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002412 tail_page->page->time_stamp = ts;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002413
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002414 /* account for these added bytes */
2415 local_add(length, &cpu_buffer->entries_bytes);
2416
Steven Rostedt6634ff22009-05-06 15:30:07 -04002417 return event;
2418}
2419
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002420static inline int
2421rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
2422 struct ring_buffer_event *event)
2423{
2424 unsigned long new_index, old_index;
2425 struct buffer_page *bpage;
2426 unsigned long index;
2427 unsigned long addr;
2428
2429 new_index = rb_event_index(event);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002430 old_index = new_index + rb_event_ts_length(event);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002431 addr = (unsigned long)event;
2432 addr &= PAGE_MASK;
2433
2434 bpage = cpu_buffer->tail_page;
2435
2436 if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002437 unsigned long write_mask =
2438 local_read(&bpage->write) & ~RB_WRITE_MASK;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002439 unsigned long event_length = rb_event_length(event);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002440 /*
2441 * This is on the tail page. It is possible that
2442 * a write could come in and move the tail page
2443 * and write to the next page. That is fine
2444 * because we just shorten what is on this page.
2445 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04002446 old_index += write_mask;
2447 new_index += write_mask;
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002448 index = local_cmpxchg(&bpage->write, old_index, new_index);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002449 if (index == old_index) {
2450 /* update counters */
2451 local_sub(event_length, &cpu_buffer->entries_bytes);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002452 return 1;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002453 }
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002454 }
2455
2456 /* could not discard */
2457 return 0;
2458}
2459
Steven Rostedtfa743952009-06-16 12:37:57 -04002460static void rb_start_commit(struct ring_buffer_per_cpu *cpu_buffer)
2461{
2462 local_inc(&cpu_buffer->committing);
2463 local_inc(&cpu_buffer->commits);
2464}
2465
Steven Rostedtd9abde22010-10-19 13:17:08 -04002466static inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtfa743952009-06-16 12:37:57 -04002467{
2468 unsigned long commits;
2469
2470 if (RB_WARN_ON(cpu_buffer,
2471 !local_read(&cpu_buffer->committing)))
2472 return;
2473
2474 again:
2475 commits = local_read(&cpu_buffer->commits);
2476 /* synchronize with interrupts */
2477 barrier();
2478 if (local_read(&cpu_buffer->committing) == 1)
2479 rb_set_commit_to_write(cpu_buffer);
2480
2481 local_dec(&cpu_buffer->committing);
2482
2483 /* synchronize with interrupts */
2484 barrier();
2485
2486 /*
2487 * Need to account for interrupts coming in between the
2488 * updating of the commit page and the clearing of the
2489 * committing counter.
2490 */
2491 if (unlikely(local_read(&cpu_buffer->commits) != commits) &&
2492 !local_read(&cpu_buffer->committing)) {
2493 local_inc(&cpu_buffer->committing);
2494 goto again;
2495 }
2496}
2497
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002498static struct ring_buffer_event *
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002499rb_reserve_next_event(struct ring_buffer *buffer,
2500 struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt1cd8d732009-05-11 14:08:09 -04002501 unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002502{
2503 struct ring_buffer_event *event;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002504 u64 ts, delta;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002505 int nr_loops = 0;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002506 int add_timestamp;
Steven Rostedt140ff892010-10-08 10:50:30 -04002507 u64 diff;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002508
Steven Rostedtfa743952009-06-16 12:37:57 -04002509 rb_start_commit(cpu_buffer);
2510
Steven Rostedt85bac322009-09-04 14:24:40 -04002511#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002512 /*
2513 * Due to the ability to swap a cpu buffer from a buffer
2514 * it is possible it was swapped before we committed.
2515 * (committing stops a swap). We check for it here and
2516 * if it happened, we have to fail the write.
2517 */
2518 barrier();
2519 if (unlikely(ACCESS_ONCE(cpu_buffer->buffer) != buffer)) {
2520 local_dec(&cpu_buffer->committing);
2521 local_dec(&cpu_buffer->commits);
2522 return NULL;
2523 }
Steven Rostedt85bac322009-09-04 14:24:40 -04002524#endif
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002525
Steven Rostedtbe957c42009-05-11 14:42:53 -04002526 length = rb_calculate_event_length(length);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002527 again:
Steven Rostedt69d1b832010-10-07 18:18:05 -04002528 add_timestamp = 0;
2529 delta = 0;
2530
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002531 /*
2532 * We allow for interrupts to reenter here and do a trace.
2533 * If one does, it will cause this original code to loop
2534 * back here. Even with heavy interrupts happening, this
2535 * should only happen a few times in a row. If this happens
2536 * 1000 times in a row, there must be either an interrupt
2537 * storm or we have something buggy.
2538 * Bail!
2539 */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05002540 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))
Steven Rostedtfa743952009-06-16 12:37:57 -04002541 goto out_fail;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002542
Jiri Olsa6d3f1e12009-10-23 19:36:19 -04002543 ts = rb_time_stamp(cpu_buffer->buffer);
Steven Rostedt140ff892010-10-08 10:50:30 -04002544 diff = ts - cpu_buffer->write_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002545
Steven Rostedt140ff892010-10-08 10:50:30 -04002546 /* make sure this diff is calculated here */
2547 barrier();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002548
Steven Rostedt140ff892010-10-08 10:50:30 -04002549 /* Did the write stamp get updated already? */
2550 if (likely(ts >= cpu_buffer->write_stamp)) {
Steven Rostedt168b6b12009-05-11 22:11:05 -04002551 delta = diff;
2552 if (unlikely(test_time_stamp(delta))) {
Jiri Olsa31274d72011-02-18 15:52:19 +01002553 int local_clock_stable = 1;
2554#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
2555 local_clock_stable = sched_clock_stable;
2556#endif
Steven Rostedt69d1b832010-10-07 18:18:05 -04002557 WARN_ONCE(delta > (1ULL << 59),
Jiri Olsa31274d72011-02-18 15:52:19 +01002558 KERN_WARNING "Delta way too big! %llu ts=%llu write stamp = %llu\n%s",
Steven Rostedt69d1b832010-10-07 18:18:05 -04002559 (unsigned long long)delta,
2560 (unsigned long long)ts,
Jiri Olsa31274d72011-02-18 15:52:19 +01002561 (unsigned long long)cpu_buffer->write_stamp,
2562 local_clock_stable ? "" :
2563 "If you just came from a suspend/resume,\n"
2564 "please switch to the trace global clock:\n"
2565 " echo global > /sys/kernel/debug/tracing/trace_clock\n");
Steven Rostedt69d1b832010-10-07 18:18:05 -04002566 add_timestamp = 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002567 }
Steven Rostedt168b6b12009-05-11 22:11:05 -04002568 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002569
Steven Rostedt69d1b832010-10-07 18:18:05 -04002570 event = __rb_reserve_next(cpu_buffer, length, ts,
2571 delta, add_timestamp);
Steven Rostedt168b6b12009-05-11 22:11:05 -04002572 if (unlikely(PTR_ERR(event) == -EAGAIN))
Steven Rostedtbf41a152008-10-04 02:00:59 -04002573 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002574
Steven Rostedtfa743952009-06-16 12:37:57 -04002575 if (!event)
2576 goto out_fail;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002577
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002578 return event;
Steven Rostedtfa743952009-06-16 12:37:57 -04002579
2580 out_fail:
2581 rb_end_commit(cpu_buffer);
2582 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002583}
2584
Paul Mundt1155de42009-06-25 14:30:12 +09002585#ifdef CONFIG_TRACING
2586
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002587/*
2588 * The lock and unlock are done within a preempt disable section.
2589 * The current_context per_cpu variable can only be modified
2590 * by the current task between lock and unlock. But it can
2591 * be modified more than once via an interrupt. To pass this
2592 * information from the lock to the unlock without having to
2593 * access the 'in_interrupt()' functions again (which do show
2594 * a bit of overhead in something as critical as function tracing,
2595 * we use a bitmask trick.
2596 *
2597 * bit 0 = NMI context
2598 * bit 1 = IRQ context
2599 * bit 2 = SoftIRQ context
2600 * bit 3 = normal context.
2601 *
2602 * This works because this is the order of contexts that can
2603 * preempt other contexts. A SoftIRQ never preempts an IRQ
2604 * context.
2605 *
2606 * When the context is determined, the corresponding bit is
2607 * checked and set (if it was set, then a recursion of that context
2608 * happened).
2609 *
2610 * On unlock, we need to clear this bit. To do so, just subtract
2611 * 1 from the current_context and AND it to itself.
2612 *
2613 * (binary)
2614 * 101 - 1 = 100
2615 * 101 & 100 = 100 (clearing bit zero)
2616 *
2617 * 1010 - 1 = 1001
2618 * 1010 & 1001 = 1000 (clearing bit 1)
2619 *
2620 * The least significant bit can be cleared this way, and it
2621 * just so happens that it is the same bit corresponding to
2622 * the current context.
2623 */
2624static DEFINE_PER_CPU(unsigned int, current_context);
Steven Rostedt261842b2009-04-16 21:41:52 -04002625
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002626static __always_inline int trace_recursive_lock(void)
Steven Rostedt261842b2009-04-16 21:41:52 -04002627{
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002628 unsigned int val = this_cpu_read(current_context);
2629 int bit;
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02002630
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002631 if (in_interrupt()) {
2632 if (in_nmi())
2633 bit = 0;
2634 else if (in_irq())
2635 bit = 1;
2636 else
2637 bit = 2;
2638 } else
2639 bit = 3;
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02002640
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002641 if (unlikely(val & (1 << bit)))
2642 return 1;
2643
2644 val |= (1 << bit);
2645 this_cpu_write(current_context, val);
2646
2647 return 0;
Steven Rostedtd9abde22010-10-19 13:17:08 -04002648}
2649
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002650static __always_inline void trace_recursive_unlock(void)
Steven Rostedtd9abde22010-10-19 13:17:08 -04002651{
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002652 unsigned int val = this_cpu_read(current_context);
Steven Rostedtd9abde22010-10-19 13:17:08 -04002653
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002654 val--;
2655 val &= this_cpu_read(current_context);
2656 this_cpu_write(current_context, val);
Steven Rostedt261842b2009-04-16 21:41:52 -04002657}
2658
Paul Mundt1155de42009-06-25 14:30:12 +09002659#else
2660
2661#define trace_recursive_lock() (0)
2662#define trace_recursive_unlock() do { } while (0)
2663
2664#endif
2665
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002666/**
2667 * ring_buffer_lock_reserve - reserve a part of the buffer
2668 * @buffer: the ring buffer to reserve from
2669 * @length: the length of the data to reserve (excluding event header)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002670 *
2671 * Returns a reseverd event on the ring buffer to copy directly to.
2672 * The user of this interface will need to get the body to write into
2673 * and can use the ring_buffer_event_data() interface.
2674 *
2675 * The length is the length of the data needed, not the event length
2676 * which also includes the event header.
2677 *
2678 * Must be paired with ring_buffer_unlock_commit, unless NULL is returned.
2679 * If NULL is returned, then nothing has been allocated or locked.
2680 */
2681struct ring_buffer_event *
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002682ring_buffer_lock_reserve(struct ring_buffer *buffer, unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002683{
2684 struct ring_buffer_per_cpu *cpu_buffer;
2685 struct ring_buffer_event *event;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002686 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002687
Steven Rostedt033601a2008-11-21 12:41:55 -05002688 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05002689 return NULL;
2690
Steven Rostedtbf41a152008-10-04 02:00:59 -04002691 /* If we are tracing schedule, we don't want to recurse */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002692 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002693
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08002694 if (atomic_read(&buffer->record_disabled))
2695 goto out_nocheck;
2696
Steven Rostedt261842b2009-04-16 21:41:52 -04002697 if (trace_recursive_lock())
2698 goto out_nocheck;
2699
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002700 cpu = raw_smp_processor_id();
2701
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302702 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04002703 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002704
2705 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002706
2707 if (atomic_read(&cpu_buffer->record_disabled))
Steven Rostedtd7690412008-10-01 00:29:53 -04002708 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002709
Steven Rostedtbe957c42009-05-11 14:42:53 -04002710 if (length > BUF_MAX_DATA_SIZE)
Steven Rostedtbf41a152008-10-04 02:00:59 -04002711 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002712
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002713 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002714 if (!event)
Steven Rostedtd7690412008-10-01 00:29:53 -04002715 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002716
2717 return event;
2718
Steven Rostedtd7690412008-10-01 00:29:53 -04002719 out:
Steven Rostedt261842b2009-04-16 21:41:52 -04002720 trace_recursive_unlock();
2721
2722 out_nocheck:
Steven Rostedt5168ae52010-06-03 09:36:50 -04002723 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002724 return NULL;
2725}
Robert Richterc4f50182008-12-11 16:49:22 +01002726EXPORT_SYMBOL_GPL(ring_buffer_lock_reserve);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002727
Steven Rostedta1863c22009-09-03 10:23:58 -04002728static void
2729rb_update_write_stamp(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002730 struct ring_buffer_event *event)
2731{
Steven Rostedt69d1b832010-10-07 18:18:05 -04002732 u64 delta;
2733
Steven Rostedtfa743952009-06-16 12:37:57 -04002734 /*
2735 * The event first in the commit queue updates the
2736 * time stamp.
2737 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04002738 if (rb_event_is_commit(cpu_buffer, event)) {
2739 /*
2740 * A commit event that is first on a page
2741 * updates the write timestamp with the page stamp
2742 */
2743 if (!rb_event_index(event))
2744 cpu_buffer->write_stamp =
2745 cpu_buffer->commit_page->page->time_stamp;
2746 else if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
2747 delta = event->array[0];
2748 delta <<= TS_SHIFT;
2749 delta += event->time_delta;
2750 cpu_buffer->write_stamp += delta;
2751 } else
2752 cpu_buffer->write_stamp += event->time_delta;
2753 }
Steven Rostedta1863c22009-09-03 10:23:58 -04002754}
Steven Rostedtbf41a152008-10-04 02:00:59 -04002755
Steven Rostedta1863c22009-09-03 10:23:58 -04002756static void rb_commit(struct ring_buffer_per_cpu *cpu_buffer,
2757 struct ring_buffer_event *event)
2758{
2759 local_inc(&cpu_buffer->entries);
2760 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa743952009-06-16 12:37:57 -04002761 rb_end_commit(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002762}
2763
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05002764static __always_inline void
2765rb_wakeups(struct ring_buffer *buffer, struct ring_buffer_per_cpu *cpu_buffer)
2766{
2767 if (buffer->irq_work.waiters_pending) {
2768 buffer->irq_work.waiters_pending = false;
2769 /* irq_work_queue() supplies it's own memory barriers */
2770 irq_work_queue(&buffer->irq_work.work);
2771 }
2772
2773 if (cpu_buffer->irq_work.waiters_pending) {
2774 cpu_buffer->irq_work.waiters_pending = false;
2775 /* irq_work_queue() supplies it's own memory barriers */
2776 irq_work_queue(&cpu_buffer->irq_work.work);
2777 }
2778}
2779
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002780/**
2781 * ring_buffer_unlock_commit - commit a reserved
2782 * @buffer: The buffer to commit to
2783 * @event: The event pointer to commit.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002784 *
2785 * This commits the data to the ring buffer, and releases any locks held.
2786 *
2787 * Must be paired with ring_buffer_lock_reserve.
2788 */
2789int ring_buffer_unlock_commit(struct ring_buffer *buffer,
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002790 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002791{
2792 struct ring_buffer_per_cpu *cpu_buffer;
2793 int cpu = raw_smp_processor_id();
2794
2795 cpu_buffer = buffer->buffers[cpu];
2796
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002797 rb_commit(cpu_buffer, event);
2798
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05002799 rb_wakeups(buffer, cpu_buffer);
2800
Steven Rostedt261842b2009-04-16 21:41:52 -04002801 trace_recursive_unlock();
2802
Steven Rostedt5168ae52010-06-03 09:36:50 -04002803 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002804
2805 return 0;
2806}
Robert Richterc4f50182008-12-11 16:49:22 +01002807EXPORT_SYMBOL_GPL(ring_buffer_unlock_commit);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002808
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002809static inline void rb_event_discard(struct ring_buffer_event *event)
2810{
Steven Rostedt69d1b832010-10-07 18:18:05 -04002811 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
2812 event = skip_time_extend(event);
2813
Lai Jiangshan334d4162009-04-24 11:27:05 +08002814 /* array[0] holds the actual length for the discarded event */
2815 event->array[0] = rb_event_data_length(event) - RB_EVNT_HDR_SIZE;
2816 event->type_len = RINGBUF_TYPE_PADDING;
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002817 /* time delta must be non zero */
2818 if (!event->time_delta)
2819 event->time_delta = 1;
2820}
2821
Steven Rostedta1863c22009-09-03 10:23:58 -04002822/*
2823 * Decrement the entries to the page that an event is on.
2824 * The event does not even need to exist, only the pointer
2825 * to the page it is on. This may only be called before the commit
2826 * takes place.
2827 */
2828static inline void
2829rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
2830 struct ring_buffer_event *event)
2831{
2832 unsigned long addr = (unsigned long)event;
2833 struct buffer_page *bpage = cpu_buffer->commit_page;
2834 struct buffer_page *start;
2835
2836 addr &= PAGE_MASK;
2837
2838 /* Do the likely case first */
2839 if (likely(bpage->page == (void *)addr)) {
2840 local_dec(&bpage->entries);
2841 return;
2842 }
2843
2844 /*
2845 * Because the commit page may be on the reader page we
2846 * start with the next page and check the end loop there.
2847 */
2848 rb_inc_page(cpu_buffer, &bpage);
2849 start = bpage;
2850 do {
2851 if (bpage->page == (void *)addr) {
2852 local_dec(&bpage->entries);
2853 return;
2854 }
2855 rb_inc_page(cpu_buffer, &bpage);
2856 } while (bpage != start);
2857
2858 /* commit not part of this buffer?? */
2859 RB_WARN_ON(cpu_buffer, 1);
2860}
2861
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002862/**
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002863 * ring_buffer_commit_discard - discard an event that has not been committed
2864 * @buffer: the ring buffer
2865 * @event: non committed event to discard
2866 *
Steven Rostedtdc892f72009-09-03 15:33:41 -04002867 * Sometimes an event that is in the ring buffer needs to be ignored.
2868 * This function lets the user discard an event in the ring buffer
2869 * and then that event will not be read later.
2870 *
2871 * This function only works if it is called before the the item has been
2872 * committed. It will try to free the event from the ring buffer
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002873 * if another event has not been added behind it.
2874 *
2875 * If another event has been added behind it, it will set the event
2876 * up as discarded, and perform the commit.
2877 *
2878 * If this function is called, do not call ring_buffer_unlock_commit on
2879 * the event.
2880 */
2881void ring_buffer_discard_commit(struct ring_buffer *buffer,
2882 struct ring_buffer_event *event)
2883{
2884 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002885 int cpu;
2886
2887 /* The event is discarded regardless */
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002888 rb_event_discard(event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002889
Steven Rostedtfa743952009-06-16 12:37:57 -04002890 cpu = smp_processor_id();
2891 cpu_buffer = buffer->buffers[cpu];
2892
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002893 /*
2894 * This must only be called if the event has not been
2895 * committed yet. Thus we can assume that preemption
2896 * is still disabled.
2897 */
Steven Rostedtfa743952009-06-16 12:37:57 -04002898 RB_WARN_ON(buffer, !local_read(&cpu_buffer->committing));
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002899
Steven Rostedta1863c22009-09-03 10:23:58 -04002900 rb_decrement_entry(cpu_buffer, event);
Steven Rostedt0f2541d2009-08-05 12:02:48 -04002901 if (rb_try_to_discard(cpu_buffer, event))
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002902 goto out;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002903
2904 /*
2905 * The commit is still visible by the reader, so we
Steven Rostedta1863c22009-09-03 10:23:58 -04002906 * must still update the timestamp.
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002907 */
Steven Rostedta1863c22009-09-03 10:23:58 -04002908 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002909 out:
Steven Rostedtfa743952009-06-16 12:37:57 -04002910 rb_end_commit(cpu_buffer);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002911
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002912 trace_recursive_unlock();
2913
Steven Rostedt5168ae52010-06-03 09:36:50 -04002914 preempt_enable_notrace();
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002915
2916}
2917EXPORT_SYMBOL_GPL(ring_buffer_discard_commit);
2918
2919/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002920 * ring_buffer_write - write data to the buffer without reserving
2921 * @buffer: The ring buffer to write to.
2922 * @length: The length of the data being written (excluding the event header)
2923 * @data: The data to write to the buffer.
2924 *
2925 * This is like ring_buffer_lock_reserve and ring_buffer_unlock_commit as
2926 * one function. If you already have the data to write to the buffer, it
2927 * may be easier to simply call this function.
2928 *
2929 * Note, like ring_buffer_lock_reserve, the length is the length of the data
2930 * and not the length of the event which would hold the header.
2931 */
2932int ring_buffer_write(struct ring_buffer *buffer,
David Sharp01e3e712012-06-07 16:46:24 -07002933 unsigned long length,
2934 void *data)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002935{
2936 struct ring_buffer_per_cpu *cpu_buffer;
2937 struct ring_buffer_event *event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002938 void *body;
2939 int ret = -EBUSY;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002940 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002941
Steven Rostedt033601a2008-11-21 12:41:55 -05002942 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05002943 return -EBUSY;
2944
Steven Rostedt5168ae52010-06-03 09:36:50 -04002945 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002946
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08002947 if (atomic_read(&buffer->record_disabled))
2948 goto out;
2949
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002950 cpu = raw_smp_processor_id();
2951
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302952 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04002953 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002954
2955 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002956
2957 if (atomic_read(&cpu_buffer->record_disabled))
2958 goto out;
2959
Steven Rostedtbe957c42009-05-11 14:42:53 -04002960 if (length > BUF_MAX_DATA_SIZE)
2961 goto out;
2962
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002963 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002964 if (!event)
2965 goto out;
2966
2967 body = rb_event_data(event);
2968
2969 memcpy(body, data, length);
2970
2971 rb_commit(cpu_buffer, event);
2972
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05002973 rb_wakeups(buffer, cpu_buffer);
2974
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002975 ret = 0;
2976 out:
Steven Rostedt5168ae52010-06-03 09:36:50 -04002977 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002978
2979 return ret;
2980}
Robert Richterc4f50182008-12-11 16:49:22 +01002981EXPORT_SYMBOL_GPL(ring_buffer_write);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002982
Andrew Morton34a148b2009-01-09 12:27:09 -08002983static int rb_per_cpu_empty(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtbf41a152008-10-04 02:00:59 -04002984{
2985 struct buffer_page *reader = cpu_buffer->reader_page;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002986 struct buffer_page *head = rb_set_head_page(cpu_buffer);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002987 struct buffer_page *commit = cpu_buffer->commit_page;
2988
Steven Rostedt77ae3652009-03-27 11:00:29 -04002989 /* In case of error, head will be NULL */
2990 if (unlikely(!head))
2991 return 1;
2992
Steven Rostedtbf41a152008-10-04 02:00:59 -04002993 return reader->read == rb_page_commit(reader) &&
2994 (commit == reader ||
2995 (commit == head &&
2996 head->read == rb_page_commit(commit)));
2997}
2998
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002999/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003000 * ring_buffer_record_disable - stop all writes into the buffer
3001 * @buffer: The ring buffer to stop writes to.
3002 *
3003 * This prevents all writes to the buffer. Any attempt to write
3004 * to the buffer after this will fail and return NULL.
3005 *
3006 * The caller should call synchronize_sched() after this.
3007 */
3008void ring_buffer_record_disable(struct ring_buffer *buffer)
3009{
3010 atomic_inc(&buffer->record_disabled);
3011}
Robert Richterc4f50182008-12-11 16:49:22 +01003012EXPORT_SYMBOL_GPL(ring_buffer_record_disable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003013
3014/**
3015 * ring_buffer_record_enable - enable writes to the buffer
3016 * @buffer: The ring buffer to enable writes
3017 *
3018 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003019 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003020 */
3021void ring_buffer_record_enable(struct ring_buffer *buffer)
3022{
3023 atomic_dec(&buffer->record_disabled);
3024}
Robert Richterc4f50182008-12-11 16:49:22 +01003025EXPORT_SYMBOL_GPL(ring_buffer_record_enable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003026
3027/**
Steven Rostedt499e5472012-02-22 15:50:28 -05003028 * ring_buffer_record_off - stop all writes into the buffer
3029 * @buffer: The ring buffer to stop writes to.
3030 *
3031 * This prevents all writes to the buffer. Any attempt to write
3032 * to the buffer after this will fail and return NULL.
3033 *
3034 * This is different than ring_buffer_record_disable() as
Wang Tianhong87abb3b2012-08-02 14:02:00 +08003035 * it works like an on/off switch, where as the disable() version
Steven Rostedt499e5472012-02-22 15:50:28 -05003036 * must be paired with a enable().
3037 */
3038void ring_buffer_record_off(struct ring_buffer *buffer)
3039{
3040 unsigned int rd;
3041 unsigned int new_rd;
3042
3043 do {
3044 rd = atomic_read(&buffer->record_disabled);
3045 new_rd = rd | RB_BUFFER_OFF;
3046 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3047}
3048EXPORT_SYMBOL_GPL(ring_buffer_record_off);
3049
3050/**
3051 * ring_buffer_record_on - restart writes into the buffer
3052 * @buffer: The ring buffer to start writes to.
3053 *
3054 * This enables all writes to the buffer that was disabled by
3055 * ring_buffer_record_off().
3056 *
3057 * This is different than ring_buffer_record_enable() as
Wang Tianhong87abb3b2012-08-02 14:02:00 +08003058 * it works like an on/off switch, where as the enable() version
Steven Rostedt499e5472012-02-22 15:50:28 -05003059 * must be paired with a disable().
3060 */
3061void ring_buffer_record_on(struct ring_buffer *buffer)
3062{
3063 unsigned int rd;
3064 unsigned int new_rd;
3065
3066 do {
3067 rd = atomic_read(&buffer->record_disabled);
3068 new_rd = rd & ~RB_BUFFER_OFF;
3069 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3070}
3071EXPORT_SYMBOL_GPL(ring_buffer_record_on);
3072
3073/**
3074 * ring_buffer_record_is_on - return true if the ring buffer can write
3075 * @buffer: The ring buffer to see if write is enabled
3076 *
3077 * Returns true if the ring buffer is in a state that it accepts writes.
3078 */
3079int ring_buffer_record_is_on(struct ring_buffer *buffer)
3080{
3081 return !atomic_read(&buffer->record_disabled);
3082}
3083
3084/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003085 * ring_buffer_record_disable_cpu - stop all writes into the cpu_buffer
3086 * @buffer: The ring buffer to stop writes to.
3087 * @cpu: The CPU buffer to stop
3088 *
3089 * This prevents all writes to the buffer. Any attempt to write
3090 * to the buffer after this will fail and return NULL.
3091 *
3092 * The caller should call synchronize_sched() after this.
3093 */
3094void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu)
3095{
3096 struct ring_buffer_per_cpu *cpu_buffer;
3097
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303098 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003099 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003100
3101 cpu_buffer = buffer->buffers[cpu];
3102 atomic_inc(&cpu_buffer->record_disabled);
3103}
Robert Richterc4f50182008-12-11 16:49:22 +01003104EXPORT_SYMBOL_GPL(ring_buffer_record_disable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003105
3106/**
3107 * ring_buffer_record_enable_cpu - enable writes to the buffer
3108 * @buffer: The ring buffer to enable writes
3109 * @cpu: The CPU to enable.
3110 *
3111 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003112 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003113 */
3114void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu)
3115{
3116 struct ring_buffer_per_cpu *cpu_buffer;
3117
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303118 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003119 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003120
3121 cpu_buffer = buffer->buffers[cpu];
3122 atomic_dec(&cpu_buffer->record_disabled);
3123}
Robert Richterc4f50182008-12-11 16:49:22 +01003124EXPORT_SYMBOL_GPL(ring_buffer_record_enable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003125
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003126/*
3127 * The total entries in the ring buffer is the running counter
3128 * of entries entered into the ring buffer, minus the sum of
3129 * the entries read from the ring buffer and the number of
3130 * entries that were overwritten.
3131 */
3132static inline unsigned long
3133rb_num_of_entries(struct ring_buffer_per_cpu *cpu_buffer)
3134{
3135 return local_read(&cpu_buffer->entries) -
3136 (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
3137}
3138
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003139/**
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003140 * ring_buffer_oldest_event_ts - get the oldest event timestamp from the buffer
3141 * @buffer: The ring buffer
3142 * @cpu: The per CPU buffer to read from.
3143 */
Yoshihiro YUNOMAE50ecf2c2012-10-11 16:27:54 -07003144u64 ring_buffer_oldest_event_ts(struct ring_buffer *buffer, int cpu)
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003145{
3146 unsigned long flags;
3147 struct ring_buffer_per_cpu *cpu_buffer;
3148 struct buffer_page *bpage;
Linus Torvaldsda830e52012-12-11 18:18:58 -08003149 u64 ret = 0;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003150
3151 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3152 return 0;
3153
3154 cpu_buffer = buffer->buffers[cpu];
Linus Torvalds7115e3f2011-10-26 17:03:38 +02003155 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003156 /*
3157 * if the tail is on reader_page, oldest time stamp is on the reader
3158 * page
3159 */
3160 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
3161 bpage = cpu_buffer->reader_page;
3162 else
3163 bpage = rb_set_head_page(cpu_buffer);
Steven Rostedt54f7be52012-11-29 22:27:22 -05003164 if (bpage)
3165 ret = bpage->page->time_stamp;
Linus Torvalds7115e3f2011-10-26 17:03:38 +02003166 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003167
3168 return ret;
3169}
3170EXPORT_SYMBOL_GPL(ring_buffer_oldest_event_ts);
3171
3172/**
3173 * ring_buffer_bytes_cpu - get the number of bytes consumed in a cpu buffer
3174 * @buffer: The ring buffer
3175 * @cpu: The per CPU buffer to read from.
3176 */
3177unsigned long ring_buffer_bytes_cpu(struct ring_buffer *buffer, int cpu)
3178{
3179 struct ring_buffer_per_cpu *cpu_buffer;
3180 unsigned long ret;
3181
3182 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3183 return 0;
3184
3185 cpu_buffer = buffer->buffers[cpu];
3186 ret = local_read(&cpu_buffer->entries_bytes) - cpu_buffer->read_bytes;
3187
3188 return ret;
3189}
3190EXPORT_SYMBOL_GPL(ring_buffer_bytes_cpu);
3191
3192/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003193 * ring_buffer_entries_cpu - get the number of entries in a cpu buffer
3194 * @buffer: The ring buffer
3195 * @cpu: The per CPU buffer to get the entries from.
3196 */
3197unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
3198{
3199 struct ring_buffer_per_cpu *cpu_buffer;
3200
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303201 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003202 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003203
3204 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04003205
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003206 return rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003207}
Robert Richterc4f50182008-12-11 16:49:22 +01003208EXPORT_SYMBOL_GPL(ring_buffer_entries_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003209
3210/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003211 * ring_buffer_overrun_cpu - get the number of overruns caused by the ring
3212 * buffer wrapping around (only if RB_FL_OVERWRITE is on).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003213 * @buffer: The ring buffer
3214 * @cpu: The per CPU buffer to get the number of overruns from
3215 */
3216unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
3217{
3218 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003219 unsigned long ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003220
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303221 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003222 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003223
3224 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003225 ret = local_read(&cpu_buffer->overrun);
Steven Rostedt554f7862009-03-11 22:00:13 -04003226
3227 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003228}
Robert Richterc4f50182008-12-11 16:49:22 +01003229EXPORT_SYMBOL_GPL(ring_buffer_overrun_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003230
3231/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003232 * ring_buffer_commit_overrun_cpu - get the number of overruns caused by
3233 * commits failing due to the buffer wrapping around while there are uncommitted
3234 * events, such as during an interrupt storm.
Steven Rostedtf0d2c682009-04-29 13:43:37 -04003235 * @buffer: The ring buffer
3236 * @cpu: The per CPU buffer to get the number of overruns from
3237 */
3238unsigned long
3239ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
3240{
3241 struct ring_buffer_per_cpu *cpu_buffer;
3242 unsigned long ret;
3243
3244 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3245 return 0;
3246
3247 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003248 ret = local_read(&cpu_buffer->commit_overrun);
Steven Rostedtf0d2c682009-04-29 13:43:37 -04003249
3250 return ret;
3251}
3252EXPORT_SYMBOL_GPL(ring_buffer_commit_overrun_cpu);
3253
3254/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003255 * ring_buffer_dropped_events_cpu - get the number of dropped events caused by
3256 * the ring buffer filling up (only if RB_FL_OVERWRITE is off).
3257 * @buffer: The ring buffer
3258 * @cpu: The per CPU buffer to get the number of overruns from
3259 */
3260unsigned long
3261ring_buffer_dropped_events_cpu(struct ring_buffer *buffer, int cpu)
3262{
3263 struct ring_buffer_per_cpu *cpu_buffer;
3264 unsigned long ret;
3265
3266 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3267 return 0;
3268
3269 cpu_buffer = buffer->buffers[cpu];
3270 ret = local_read(&cpu_buffer->dropped_events);
3271
3272 return ret;
3273}
3274EXPORT_SYMBOL_GPL(ring_buffer_dropped_events_cpu);
3275
3276/**
Steven Rostedt (Red Hat)ad964702013-01-29 17:45:49 -05003277 * ring_buffer_read_events_cpu - get the number of events successfully read
3278 * @buffer: The ring buffer
3279 * @cpu: The per CPU buffer to get the number of events read
3280 */
3281unsigned long
3282ring_buffer_read_events_cpu(struct ring_buffer *buffer, int cpu)
3283{
3284 struct ring_buffer_per_cpu *cpu_buffer;
3285
3286 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3287 return 0;
3288
3289 cpu_buffer = buffer->buffers[cpu];
3290 return cpu_buffer->read;
3291}
3292EXPORT_SYMBOL_GPL(ring_buffer_read_events_cpu);
3293
3294/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003295 * ring_buffer_entries - get the number of entries in a buffer
3296 * @buffer: The ring buffer
3297 *
3298 * Returns the total number of entries in the ring buffer
3299 * (all CPU entries)
3300 */
3301unsigned long ring_buffer_entries(struct ring_buffer *buffer)
3302{
3303 struct ring_buffer_per_cpu *cpu_buffer;
3304 unsigned long entries = 0;
3305 int cpu;
3306
3307 /* if you care about this being correct, lock the buffer */
3308 for_each_buffer_cpu(buffer, cpu) {
3309 cpu_buffer = buffer->buffers[cpu];
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003310 entries += rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003311 }
3312
3313 return entries;
3314}
Robert Richterc4f50182008-12-11 16:49:22 +01003315EXPORT_SYMBOL_GPL(ring_buffer_entries);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003316
3317/**
Jiri Olsa67b394f2009-10-23 19:36:18 -04003318 * ring_buffer_overruns - get the number of overruns in buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003319 * @buffer: The ring buffer
3320 *
3321 * Returns the total number of overruns in the ring buffer
3322 * (all CPU entries)
3323 */
3324unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
3325{
3326 struct ring_buffer_per_cpu *cpu_buffer;
3327 unsigned long overruns = 0;
3328 int cpu;
3329
3330 /* if you care about this being correct, lock the buffer */
3331 for_each_buffer_cpu(buffer, cpu) {
3332 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003333 overruns += local_read(&cpu_buffer->overrun);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003334 }
3335
3336 return overruns;
3337}
Robert Richterc4f50182008-12-11 16:49:22 +01003338EXPORT_SYMBOL_GPL(ring_buffer_overruns);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003339
Steven Rostedt642edba2008-11-12 00:01:26 -05003340static void rb_iter_reset(struct ring_buffer_iter *iter)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003341{
3342 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3343
Steven Rostedtd7690412008-10-01 00:29:53 -04003344 /* Iterator usage is expected to have record disabled */
3345 if (list_empty(&cpu_buffer->reader_page->list)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04003346 iter->head_page = rb_set_head_page(cpu_buffer);
3347 if (unlikely(!iter->head_page))
3348 return;
3349 iter->head = iter->head_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04003350 } else {
3351 iter->head_page = cpu_buffer->reader_page;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003352 iter->head = cpu_buffer->reader_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04003353 }
3354 if (iter->head)
3355 iter->read_stamp = cpu_buffer->read_stamp;
3356 else
Steven Rostedtabc9b562008-12-02 15:34:06 -05003357 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt492a74f2010-01-25 15:17:47 -05003358 iter->cache_reader_page = cpu_buffer->reader_page;
3359 iter->cache_read = cpu_buffer->read;
Steven Rostedt642edba2008-11-12 00:01:26 -05003360}
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003361
Steven Rostedt642edba2008-11-12 00:01:26 -05003362/**
3363 * ring_buffer_iter_reset - reset an iterator
3364 * @iter: The iterator to reset
3365 *
3366 * Resets the iterator, so that it will start from the beginning
3367 * again.
3368 */
3369void ring_buffer_iter_reset(struct ring_buffer_iter *iter)
3370{
Steven Rostedt554f7862009-03-11 22:00:13 -04003371 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt642edba2008-11-12 00:01:26 -05003372 unsigned long flags;
3373
Steven Rostedt554f7862009-03-11 22:00:13 -04003374 if (!iter)
3375 return;
3376
3377 cpu_buffer = iter->cpu_buffer;
3378
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003379 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt642edba2008-11-12 00:01:26 -05003380 rb_iter_reset(iter);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003381 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003382}
Robert Richterc4f50182008-12-11 16:49:22 +01003383EXPORT_SYMBOL_GPL(ring_buffer_iter_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003384
3385/**
3386 * ring_buffer_iter_empty - check if an iterator has no more to read
3387 * @iter: The iterator to check
3388 */
3389int ring_buffer_iter_empty(struct ring_buffer_iter *iter)
3390{
3391 struct ring_buffer_per_cpu *cpu_buffer;
3392
3393 cpu_buffer = iter->cpu_buffer;
3394
Steven Rostedtbf41a152008-10-04 02:00:59 -04003395 return iter->head_page == cpu_buffer->commit_page &&
3396 iter->head == rb_commit_index(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003397}
Robert Richterc4f50182008-12-11 16:49:22 +01003398EXPORT_SYMBOL_GPL(ring_buffer_iter_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003399
3400static void
3401rb_update_read_stamp(struct ring_buffer_per_cpu *cpu_buffer,
3402 struct ring_buffer_event *event)
3403{
3404 u64 delta;
3405
Lai Jiangshan334d4162009-04-24 11:27:05 +08003406 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003407 case RINGBUF_TYPE_PADDING:
3408 return;
3409
3410 case RINGBUF_TYPE_TIME_EXTEND:
3411 delta = event->array[0];
3412 delta <<= TS_SHIFT;
3413 delta += event->time_delta;
3414 cpu_buffer->read_stamp += delta;
3415 return;
3416
3417 case RINGBUF_TYPE_TIME_STAMP:
3418 /* FIXME: not implemented */
3419 return;
3420
3421 case RINGBUF_TYPE_DATA:
3422 cpu_buffer->read_stamp += event->time_delta;
3423 return;
3424
3425 default:
3426 BUG();
3427 }
3428 return;
3429}
3430
3431static void
3432rb_update_iter_read_stamp(struct ring_buffer_iter *iter,
3433 struct ring_buffer_event *event)
3434{
3435 u64 delta;
3436
Lai Jiangshan334d4162009-04-24 11:27:05 +08003437 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003438 case RINGBUF_TYPE_PADDING:
3439 return;
3440
3441 case RINGBUF_TYPE_TIME_EXTEND:
3442 delta = event->array[0];
3443 delta <<= TS_SHIFT;
3444 delta += event->time_delta;
3445 iter->read_stamp += delta;
3446 return;
3447
3448 case RINGBUF_TYPE_TIME_STAMP:
3449 /* FIXME: not implemented */
3450 return;
3451
3452 case RINGBUF_TYPE_DATA:
3453 iter->read_stamp += event->time_delta;
3454 return;
3455
3456 default:
3457 BUG();
3458 }
3459 return;
3460}
3461
Steven Rostedtd7690412008-10-01 00:29:53 -04003462static struct buffer_page *
3463rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003464{
Steven Rostedtd7690412008-10-01 00:29:53 -04003465 struct buffer_page *reader = NULL;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003466 unsigned long overwrite;
Steven Rostedtd7690412008-10-01 00:29:53 -04003467 unsigned long flags;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003468 int nr_loops = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003469 int ret;
Steven Rostedtd7690412008-10-01 00:29:53 -04003470
Steven Rostedt3e03fb72008-11-06 00:09:43 -05003471 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003472 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedtd7690412008-10-01 00:29:53 -04003473
3474 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003475 /*
3476 * This should normally only loop twice. But because the
3477 * start of the reader inserts an empty page, it causes
3478 * a case where we will loop three times. There should be no
3479 * reason to loop four times (that I know of).
3480 */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003481 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003482 reader = NULL;
3483 goto out;
3484 }
3485
Steven Rostedtd7690412008-10-01 00:29:53 -04003486 reader = cpu_buffer->reader_page;
3487
3488 /* If there's more to read, return this page */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003489 if (cpu_buffer->reader_page->read < rb_page_size(reader))
Steven Rostedtd7690412008-10-01 00:29:53 -04003490 goto out;
3491
3492 /* Never should we have an index greater than the size */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003493 if (RB_WARN_ON(cpu_buffer,
3494 cpu_buffer->reader_page->read > rb_page_size(reader)))
3495 goto out;
Steven Rostedtd7690412008-10-01 00:29:53 -04003496
3497 /* check if we caught up to the tail */
3498 reader = NULL;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003499 if (cpu_buffer->commit_page == cpu_buffer->reader_page)
Steven Rostedtd7690412008-10-01 00:29:53 -04003500 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003501
Steven Rostedta5fb8332012-06-28 13:35:04 -04003502 /* Don't bother swapping if the ring buffer is empty */
3503 if (rb_num_of_entries(cpu_buffer) == 0)
3504 goto out;
3505
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003506 /*
Steven Rostedtd7690412008-10-01 00:29:53 -04003507 * Reset the reader page to size zero.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003508 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04003509 local_set(&cpu_buffer->reader_page->write, 0);
3510 local_set(&cpu_buffer->reader_page->entries, 0);
3511 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedtff0ff842010-03-31 22:11:42 -04003512 cpu_buffer->reader_page->real_end = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003513
Steven Rostedt77ae3652009-03-27 11:00:29 -04003514 spin:
3515 /*
3516 * Splice the empty reader page into the list around the head.
3517 */
3518 reader = rb_set_head_page(cpu_buffer);
Steven Rostedt54f7be52012-11-29 22:27:22 -05003519 if (!reader)
3520 goto out;
Steven Rostedt0e1ff5d2010-01-06 20:40:44 -05003521 cpu_buffer->reader_page->list.next = rb_list_head(reader->list.next);
Steven Rostedtd7690412008-10-01 00:29:53 -04003522 cpu_buffer->reader_page->list.prev = reader->list.prev;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003523
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003524 /*
3525 * cpu_buffer->pages just needs to point to the buffer, it
3526 * has no specific buffer page to point to. Lets move it out
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003527 * of our way so we don't accidentally swap it.
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003528 */
3529 cpu_buffer->pages = reader->list.prev;
3530
Steven Rostedt77ae3652009-03-27 11:00:29 -04003531 /* The reader page will be pointing to the new head */
3532 rb_set_list_to_head(cpu_buffer, &cpu_buffer->reader_page->list);
Steven Rostedtd7690412008-10-01 00:29:53 -04003533
3534 /*
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003535 * We want to make sure we read the overruns after we set up our
3536 * pointers to the next object. The writer side does a
3537 * cmpxchg to cross pages which acts as the mb on the writer
3538 * side. Note, the reader will constantly fail the swap
3539 * while the writer is updating the pointers, so this
3540 * guarantees that the overwrite recorded here is the one we
3541 * want to compare with the last_overrun.
3542 */
3543 smp_mb();
3544 overwrite = local_read(&(cpu_buffer->overrun));
3545
3546 /*
Steven Rostedt77ae3652009-03-27 11:00:29 -04003547 * Here's the tricky part.
3548 *
3549 * We need to move the pointer past the header page.
3550 * But we can only do that if a writer is not currently
3551 * moving it. The page before the header page has the
3552 * flag bit '1' set if it is pointing to the page we want.
3553 * but if the writer is in the process of moving it
3554 * than it will be '2' or already moved '0'.
Steven Rostedtd7690412008-10-01 00:29:53 -04003555 */
Steven Rostedtd7690412008-10-01 00:29:53 -04003556
Steven Rostedt77ae3652009-03-27 11:00:29 -04003557 ret = rb_head_page_replace(reader, cpu_buffer->reader_page);
3558
3559 /*
3560 * If we did not convert it, then we must try again.
3561 */
3562 if (!ret)
3563 goto spin;
3564
3565 /*
3566 * Yeah! We succeeded in replacing the page.
3567 *
3568 * Now make the new head point back to the reader page.
3569 */
David Sharp5ded3dc62010-01-06 17:12:07 -08003570 rb_list_head(reader->list.next)->prev = &cpu_buffer->reader_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003571 rb_inc_page(cpu_buffer, &cpu_buffer->head_page);
Steven Rostedtd7690412008-10-01 00:29:53 -04003572
3573 /* Finally update the reader page to the new head */
3574 cpu_buffer->reader_page = reader;
3575 rb_reset_reader_page(cpu_buffer);
3576
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003577 if (overwrite != cpu_buffer->last_overrun) {
3578 cpu_buffer->lost_events = overwrite - cpu_buffer->last_overrun;
3579 cpu_buffer->last_overrun = overwrite;
3580 }
3581
Steven Rostedtd7690412008-10-01 00:29:53 -04003582 goto again;
3583
3584 out:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003585 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05003586 local_irq_restore(flags);
Steven Rostedtd7690412008-10-01 00:29:53 -04003587
3588 return reader;
3589}
3590
3591static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer)
3592{
3593 struct ring_buffer_event *event;
3594 struct buffer_page *reader;
3595 unsigned length;
3596
3597 reader = rb_get_reader_page(cpu_buffer);
3598
3599 /* This function should not be called when buffer is empty */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003600 if (RB_WARN_ON(cpu_buffer, !reader))
3601 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003602
3603 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003604
Steven Rostedta1863c22009-09-03 10:23:58 -04003605 if (event->type_len <= RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedte4906ef2009-04-30 20:49:44 -04003606 cpu_buffer->read++;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003607
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003608 rb_update_read_stamp(cpu_buffer, event);
3609
Steven Rostedtd7690412008-10-01 00:29:53 -04003610 length = rb_event_length(event);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003611 cpu_buffer->reader_page->read += length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003612}
3613
3614static void rb_advance_iter(struct ring_buffer_iter *iter)
3615{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003616 struct ring_buffer_per_cpu *cpu_buffer;
3617 struct ring_buffer_event *event;
3618 unsigned length;
3619
3620 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003621
3622 /*
3623 * Check if we are at the end of the buffer.
3624 */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003625 if (iter->head >= rb_page_size(iter->head_page)) {
Steven Rostedtea05b572009-06-03 09:30:10 -04003626 /* discarded commits can make the page empty */
3627 if (iter->head_page == cpu_buffer->commit_page)
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003628 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003629 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003630 return;
3631 }
3632
3633 event = rb_iter_head_event(iter);
3634
3635 length = rb_event_length(event);
3636
3637 /*
3638 * This should not be called to advance the header if we are
3639 * at the tail of the buffer.
3640 */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003641 if (RB_WARN_ON(cpu_buffer,
Steven Rostedtf536aaf2008-11-10 23:07:30 -05003642 (iter->head_page == cpu_buffer->commit_page) &&
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003643 (iter->head + length > rb_commit_index(cpu_buffer))))
3644 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003645
3646 rb_update_iter_read_stamp(iter, event);
3647
3648 iter->head += length;
3649
3650 /* check for end of page padding */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003651 if ((iter->head >= rb_page_size(iter->head_page)) &&
3652 (iter->head_page != cpu_buffer->commit_page))
Steven Rostedt771e0382012-11-30 10:41:57 -05003653 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003654}
3655
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003656static int rb_lost_events(struct ring_buffer_per_cpu *cpu_buffer)
3657{
3658 return cpu_buffer->lost_events;
3659}
3660
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003661static struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003662rb_buffer_peek(struct ring_buffer_per_cpu *cpu_buffer, u64 *ts,
3663 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003664{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003665 struct ring_buffer_event *event;
Steven Rostedtd7690412008-10-01 00:29:53 -04003666 struct buffer_page *reader;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003667 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003668
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003669 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003670 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003671 * We repeat when a time extend is encountered.
3672 * Since the time extend is always attached to a data event,
3673 * we should never loop more than once.
3674 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003675 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003676 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003677 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003678
Steven Rostedtd7690412008-10-01 00:29:53 -04003679 reader = rb_get_reader_page(cpu_buffer);
3680 if (!reader)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003681 return NULL;
3682
Steven Rostedtd7690412008-10-01 00:29:53 -04003683 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003684
Lai Jiangshan334d4162009-04-24 11:27:05 +08003685 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003686 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003687 if (rb_null_event(event))
3688 RB_WARN_ON(cpu_buffer, 1);
3689 /*
3690 * Because the writer could be discarding every
3691 * event it creates (which would probably be bad)
3692 * if we were to go back to "again" then we may never
3693 * catch up, and will trigger the warn on, or lock
3694 * the box. Return the padding, and we will release
3695 * the current locks, and try again.
3696 */
Tom Zanussi2d622712009-03-22 03:30:49 -05003697 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003698
3699 case RINGBUF_TYPE_TIME_EXTEND:
3700 /* Internal data, OK to advance */
Steven Rostedtd7690412008-10-01 00:29:53 -04003701 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003702 goto again;
3703
3704 case RINGBUF_TYPE_TIME_STAMP:
3705 /* FIXME: not implemented */
Steven Rostedtd7690412008-10-01 00:29:53 -04003706 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003707 goto again;
3708
3709 case RINGBUF_TYPE_DATA:
3710 if (ts) {
3711 *ts = cpu_buffer->read_stamp + event->time_delta;
Robert Richterd8eeb2d2009-07-31 14:58:04 +02003712 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
Steven Rostedt37886f62009-03-17 17:22:06 -04003713 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003714 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003715 if (lost_events)
3716 *lost_events = rb_lost_events(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003717 return event;
3718
3719 default:
3720 BUG();
3721 }
3722
3723 return NULL;
3724}
Robert Richterc4f50182008-12-11 16:49:22 +01003725EXPORT_SYMBOL_GPL(ring_buffer_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003726
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003727static struct ring_buffer_event *
3728rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003729{
3730 struct ring_buffer *buffer;
3731 struct ring_buffer_per_cpu *cpu_buffer;
3732 struct ring_buffer_event *event;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003733 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003734
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003735 cpu_buffer = iter->cpu_buffer;
3736 buffer = cpu_buffer->buffer;
3737
Steven Rostedt492a74f2010-01-25 15:17:47 -05003738 /*
3739 * Check if someone performed a consuming read to
3740 * the buffer. A consuming read invalidates the iterator
3741 * and we need to reset the iterator in this case.
3742 */
3743 if (unlikely(iter->cache_read != cpu_buffer->read ||
3744 iter->cache_reader_page != cpu_buffer->reader_page))
3745 rb_iter_reset(iter);
3746
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003747 again:
Steven Rostedt3c05d742010-01-26 16:14:08 -05003748 if (ring_buffer_iter_empty(iter))
3749 return NULL;
3750
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003751 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003752 * We repeat when a time extend is encountered.
3753 * Since the time extend is always attached to a data event,
3754 * we should never loop more than once.
3755 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003756 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003757 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003758 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003759
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003760 if (rb_per_cpu_empty(cpu_buffer))
3761 return NULL;
3762
Steven Rostedt3c05d742010-01-26 16:14:08 -05003763 if (iter->head >= local_read(&iter->head_page->page->commit)) {
3764 rb_inc_iter(iter);
3765 goto again;
3766 }
3767
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003768 event = rb_iter_head_event(iter);
3769
Lai Jiangshan334d4162009-04-24 11:27:05 +08003770 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003771 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003772 if (rb_null_event(event)) {
3773 rb_inc_iter(iter);
3774 goto again;
3775 }
3776 rb_advance_iter(iter);
3777 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003778
3779 case RINGBUF_TYPE_TIME_EXTEND:
3780 /* Internal data, OK to advance */
3781 rb_advance_iter(iter);
3782 goto again;
3783
3784 case RINGBUF_TYPE_TIME_STAMP:
3785 /* FIXME: not implemented */
3786 rb_advance_iter(iter);
3787 goto again;
3788
3789 case RINGBUF_TYPE_DATA:
3790 if (ts) {
3791 *ts = iter->read_stamp + event->time_delta;
Steven Rostedt37886f62009-03-17 17:22:06 -04003792 ring_buffer_normalize_time_stamp(buffer,
3793 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003794 }
3795 return event;
3796
3797 default:
3798 BUG();
3799 }
3800
3801 return NULL;
3802}
Robert Richterc4f50182008-12-11 16:49:22 +01003803EXPORT_SYMBOL_GPL(ring_buffer_iter_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003804
Steven Rostedt8d707e82009-06-16 21:22:48 -04003805static inline int rb_ok_to_lock(void)
3806{
3807 /*
3808 * If an NMI die dumps out the content of the ring buffer
3809 * do not grab locks. We also permanently disable the ring
3810 * buffer too. A one time deal is all you get from reading
3811 * the ring buffer from an NMI.
3812 */
Steven Rostedt464e85e2009-08-05 15:26:37 -04003813 if (likely(!in_nmi()))
Steven Rostedt8d707e82009-06-16 21:22:48 -04003814 return 1;
3815
3816 tracing_off_permanent();
3817 return 0;
3818}
3819
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003820/**
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003821 * ring_buffer_peek - peek at the next event to be read
3822 * @buffer: The ring buffer to read
3823 * @cpu: The cpu to peak at
3824 * @ts: The timestamp counter of this event.
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003825 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003826 *
3827 * This will return the event that will be read next, but does
3828 * not consume the data.
3829 */
3830struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003831ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
3832 unsigned long *lost_events)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003833{
3834 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8aabee52009-03-12 13:13:49 -04003835 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003836 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003837 int dolock;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003838
Steven Rostedt554f7862009-03-11 22:00:13 -04003839 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003840 return NULL;
Steven Rostedt554f7862009-03-11 22:00:13 -04003841
Steven Rostedt8d707e82009-06-16 21:22:48 -04003842 dolock = rb_ok_to_lock();
Tom Zanussi2d622712009-03-22 03:30:49 -05003843 again:
Steven Rostedt8d707e82009-06-16 21:22:48 -04003844 local_irq_save(flags);
3845 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003846 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003847 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
Robert Richter469535a2009-07-30 19:19:18 +02003848 if (event && event->type_len == RINGBUF_TYPE_PADDING)
3849 rb_advance_reader(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003850 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003851 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003852 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003853
Steven Rostedt1b959e12009-09-03 10:12:13 -04003854 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003855 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003856
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003857 return event;
3858}
3859
3860/**
3861 * ring_buffer_iter_peek - peek at the next event to be read
3862 * @iter: The ring buffer iterator
3863 * @ts: The timestamp counter of this event.
3864 *
3865 * This will return the event that will be read next, but does
3866 * not increment the iterator.
3867 */
3868struct ring_buffer_event *
3869ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
3870{
3871 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3872 struct ring_buffer_event *event;
3873 unsigned long flags;
3874
Tom Zanussi2d622712009-03-22 03:30:49 -05003875 again:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003876 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003877 event = rb_iter_peek(iter, ts);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003878 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003879
Steven Rostedt1b959e12009-09-03 10:12:13 -04003880 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003881 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003882
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003883 return event;
3884}
3885
3886/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003887 * ring_buffer_consume - return an event and consume it
3888 * @buffer: The ring buffer to get the next event from
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003889 * @cpu: the cpu to read the buffer from
3890 * @ts: a variable to store the timestamp (may be NULL)
3891 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003892 *
3893 * Returns the next event in the ring buffer, and that event is consumed.
3894 * Meaning, that sequential reads will keep returning a different event,
3895 * and eventually empty the ring buffer if the producer is slower.
3896 */
3897struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003898ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
3899 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003900{
Steven Rostedt554f7862009-03-11 22:00:13 -04003901 struct ring_buffer_per_cpu *cpu_buffer;
3902 struct ring_buffer_event *event = NULL;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003903 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003904 int dolock;
3905
3906 dolock = rb_ok_to_lock();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003907
Tom Zanussi2d622712009-03-22 03:30:49 -05003908 again:
Steven Rostedt554f7862009-03-11 22:00:13 -04003909 /* might be called in atomic */
3910 preempt_disable();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003911
Steven Rostedt554f7862009-03-11 22:00:13 -04003912 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3913 goto out;
3914
3915 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04003916 local_irq_save(flags);
3917 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003918 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003919
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003920 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
3921 if (event) {
3922 cpu_buffer->lost_events = 0;
Robert Richter469535a2009-07-30 19:19:18 +02003923 rb_advance_reader(cpu_buffer);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003924 }
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003925
Steven Rostedt8d707e82009-06-16 21:22:48 -04003926 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003927 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003928 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003929
Steven Rostedt554f7862009-03-11 22:00:13 -04003930 out:
3931 preempt_enable();
3932
Steven Rostedt1b959e12009-09-03 10:12:13 -04003933 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003934 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003935
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003936 return event;
3937}
Robert Richterc4f50182008-12-11 16:49:22 +01003938EXPORT_SYMBOL_GPL(ring_buffer_consume);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003939
3940/**
David Miller72c9ddf2010-04-20 15:47:11 -07003941 * ring_buffer_read_prepare - Prepare for a non consuming read of the buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003942 * @buffer: The ring buffer to read from
3943 * @cpu: The cpu buffer to iterate over
3944 *
David Miller72c9ddf2010-04-20 15:47:11 -07003945 * This performs the initial preparations necessary to iterate
3946 * through the buffer. Memory is allocated, buffer recording
3947 * is disabled, and the iterator pointer is returned to the caller.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003948 *
David Miller72c9ddf2010-04-20 15:47:11 -07003949 * Disabling buffer recordng prevents the reading from being
3950 * corrupted. This is not a consuming read, so a producer is not
3951 * expected.
3952 *
3953 * After a sequence of ring_buffer_read_prepare calls, the user is
3954 * expected to make at least one call to ring_buffer_prepare_sync.
3955 * Afterwards, ring_buffer_read_start is invoked to get things going
3956 * for real.
3957 *
3958 * This overall must be paired with ring_buffer_finish.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003959 */
3960struct ring_buffer_iter *
David Miller72c9ddf2010-04-20 15:47:11 -07003961ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003962{
3963 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003964 struct ring_buffer_iter *iter;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003965
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303966 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003967 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003968
3969 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3970 if (!iter)
Steven Rostedt8aabee52009-03-12 13:13:49 -04003971 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003972
3973 cpu_buffer = buffer->buffers[cpu];
3974
3975 iter->cpu_buffer = cpu_buffer;
3976
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07003977 atomic_inc(&buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003978 atomic_inc(&cpu_buffer->record_disabled);
David Miller72c9ddf2010-04-20 15:47:11 -07003979
3980 return iter;
3981}
3982EXPORT_SYMBOL_GPL(ring_buffer_read_prepare);
3983
3984/**
3985 * ring_buffer_read_prepare_sync - Synchronize a set of prepare calls
3986 *
3987 * All previously invoked ring_buffer_read_prepare calls to prepare
3988 * iterators will be synchronized. Afterwards, read_buffer_read_start
3989 * calls on those iterators are allowed.
3990 */
3991void
3992ring_buffer_read_prepare_sync(void)
3993{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003994 synchronize_sched();
David Miller72c9ddf2010-04-20 15:47:11 -07003995}
3996EXPORT_SYMBOL_GPL(ring_buffer_read_prepare_sync);
3997
3998/**
3999 * ring_buffer_read_start - start a non consuming read of the buffer
4000 * @iter: The iterator returned by ring_buffer_read_prepare
4001 *
4002 * This finalizes the startup of an iteration through the buffer.
4003 * The iterator comes from a call to ring_buffer_read_prepare and
4004 * an intervening ring_buffer_read_prepare_sync must have been
4005 * performed.
4006 *
4007 * Must be paired with ring_buffer_finish.
4008 */
4009void
4010ring_buffer_read_start(struct ring_buffer_iter *iter)
4011{
4012 struct ring_buffer_per_cpu *cpu_buffer;
4013 unsigned long flags;
4014
4015 if (!iter)
4016 return;
4017
4018 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004019
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004020 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004021 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt642edba2008-11-12 00:01:26 -05004022 rb_iter_reset(iter);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004023 arch_spin_unlock(&cpu_buffer->lock);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004024 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004025}
Robert Richterc4f50182008-12-11 16:49:22 +01004026EXPORT_SYMBOL_GPL(ring_buffer_read_start);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004027
4028/**
4029 * ring_buffer_finish - finish reading the iterator of the buffer
4030 * @iter: The iterator retrieved by ring_buffer_start
4031 *
4032 * This re-enables the recording to the buffer, and frees the
4033 * iterator.
4034 */
4035void
4036ring_buffer_read_finish(struct ring_buffer_iter *iter)
4037{
4038 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004039 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004040
Steven Rostedt659f4512012-05-14 17:02:33 -04004041 /*
4042 * Ring buffer is disabled from recording, here's a good place
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004043 * to check the integrity of the ring buffer.
4044 * Must prevent readers from trying to read, as the check
4045 * clears the HEAD page and readers require it.
Steven Rostedt659f4512012-05-14 17:02:33 -04004046 */
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004047 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt659f4512012-05-14 17:02:33 -04004048 rb_check_pages(cpu_buffer);
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004049 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt659f4512012-05-14 17:02:33 -04004050
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004051 atomic_dec(&cpu_buffer->record_disabled);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004052 atomic_dec(&cpu_buffer->buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004053 kfree(iter);
4054}
Robert Richterc4f50182008-12-11 16:49:22 +01004055EXPORT_SYMBOL_GPL(ring_buffer_read_finish);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004056
4057/**
4058 * ring_buffer_read - read the next item in the ring buffer by the iterator
4059 * @iter: The ring buffer iterator
4060 * @ts: The time stamp of the event read.
4061 *
4062 * This reads the next event in the ring buffer and increments the iterator.
4063 */
4064struct ring_buffer_event *
4065ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts)
4066{
4067 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004068 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4069 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004070
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004071 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt7e9391c2009-09-03 10:02:09 -04004072 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004073 event = rb_iter_peek(iter, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004074 if (!event)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004075 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004076
Steven Rostedt7e9391c2009-09-03 10:02:09 -04004077 if (event->type_len == RINGBUF_TYPE_PADDING)
4078 goto again;
4079
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004080 rb_advance_iter(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004081 out:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004082 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004083
4084 return event;
4085}
Robert Richterc4f50182008-12-11 16:49:22 +01004086EXPORT_SYMBOL_GPL(ring_buffer_read);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004087
4088/**
4089 * ring_buffer_size - return the size of the ring buffer (in bytes)
4090 * @buffer: The ring buffer.
4091 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004092unsigned long ring_buffer_size(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004093{
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004094 /*
4095 * Earlier, this method returned
4096 * BUF_PAGE_SIZE * buffer->nr_pages
4097 * Since the nr_pages field is now removed, we have converted this to
4098 * return the per cpu buffer value.
4099 */
4100 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4101 return 0;
4102
4103 return BUF_PAGE_SIZE * buffer->buffers[cpu]->nr_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004104}
Robert Richterc4f50182008-12-11 16:49:22 +01004105EXPORT_SYMBOL_GPL(ring_buffer_size);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004106
4107static void
4108rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
4109{
Steven Rostedt77ae3652009-03-27 11:00:29 -04004110 rb_head_page_deactivate(cpu_buffer);
4111
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004112 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04004113 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04004114 local_set(&cpu_buffer->head_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004115 local_set(&cpu_buffer->head_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05004116 local_set(&cpu_buffer->head_page->page->commit, 0);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004117
Steven Rostedt6f807ac2008-10-04 02:00:58 -04004118 cpu_buffer->head_page->read = 0;
Steven Rostedtbf41a152008-10-04 02:00:59 -04004119
4120 cpu_buffer->tail_page = cpu_buffer->head_page;
4121 cpu_buffer->commit_page = cpu_buffer->head_page;
4122
4123 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07004124 INIT_LIST_HEAD(&cpu_buffer->new_pages);
Steven Rostedtbf41a152008-10-04 02:00:59 -04004125 local_set(&cpu_buffer->reader_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004126 local_set(&cpu_buffer->reader_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05004127 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04004128 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04004129
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004130 local_set(&cpu_buffer->entries_bytes, 0);
Steven Rostedt77ae3652009-03-27 11:00:29 -04004131 local_set(&cpu_buffer->overrun, 0);
Slava Pestov884bfe82011-07-15 14:23:58 -07004132 local_set(&cpu_buffer->commit_overrun, 0);
4133 local_set(&cpu_buffer->dropped_events, 0);
Steven Rostedte4906ef2009-04-30 20:49:44 -04004134 local_set(&cpu_buffer->entries, 0);
Steven Rostedtfa743952009-06-16 12:37:57 -04004135 local_set(&cpu_buffer->committing, 0);
4136 local_set(&cpu_buffer->commits, 0);
Steven Rostedt77ae3652009-03-27 11:00:29 -04004137 cpu_buffer->read = 0;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004138 cpu_buffer->read_bytes = 0;
Steven Rostedt69507c02009-01-21 18:45:57 -05004139
4140 cpu_buffer->write_stamp = 0;
4141 cpu_buffer->read_stamp = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04004142
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004143 cpu_buffer->lost_events = 0;
4144 cpu_buffer->last_overrun = 0;
4145
Steven Rostedt77ae3652009-03-27 11:00:29 -04004146 rb_head_page_activate(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004147}
4148
4149/**
4150 * ring_buffer_reset_cpu - reset a ring buffer per CPU buffer
4151 * @buffer: The ring buffer to reset a per cpu buffer of
4152 * @cpu: The CPU buffer to be reset
4153 */
4154void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
4155{
4156 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4157 unsigned long flags;
4158
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304159 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004160 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004161
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004162 atomic_inc(&buffer->resize_disabled);
Steven Rostedt41ede232009-05-01 20:26:54 -04004163 atomic_inc(&cpu_buffer->record_disabled);
4164
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004165 /* Make sure all commits have finished */
4166 synchronize_sched();
4167
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004168 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004169
Steven Rostedt41b6a952009-09-02 09:59:48 -04004170 if (RB_WARN_ON(cpu_buffer, local_read(&cpu_buffer->committing)))
4171 goto out;
4172
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004173 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004174
4175 rb_reset_cpu(cpu_buffer);
4176
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004177 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004178
Steven Rostedt41b6a952009-09-02 09:59:48 -04004179 out:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004180 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt41ede232009-05-01 20:26:54 -04004181
4182 atomic_dec(&cpu_buffer->record_disabled);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004183 atomic_dec(&buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004184}
Robert Richterc4f50182008-12-11 16:49:22 +01004185EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004186
4187/**
4188 * ring_buffer_reset - reset a ring buffer
4189 * @buffer: The ring buffer to reset all cpu buffers
4190 */
4191void ring_buffer_reset(struct ring_buffer *buffer)
4192{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004193 int cpu;
4194
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004195 for_each_buffer_cpu(buffer, cpu)
Steven Rostedtd7690412008-10-01 00:29:53 -04004196 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004197}
Robert Richterc4f50182008-12-11 16:49:22 +01004198EXPORT_SYMBOL_GPL(ring_buffer_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004199
4200/**
4201 * rind_buffer_empty - is the ring buffer empty?
4202 * @buffer: The ring buffer to test
4203 */
4204int ring_buffer_empty(struct ring_buffer *buffer)
4205{
4206 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04004207 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04004208 int dolock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004209 int cpu;
Steven Rostedtd4788202009-06-17 00:39:43 -04004210 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004211
Steven Rostedt8d707e82009-06-16 21:22:48 -04004212 dolock = rb_ok_to_lock();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004213
4214 /* yes this is racy, but if you don't like the race, lock the buffer */
4215 for_each_buffer_cpu(buffer, cpu) {
4216 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004217 local_irq_save(flags);
4218 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004219 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedtd4788202009-06-17 00:39:43 -04004220 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004221 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004222 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004223 local_irq_restore(flags);
4224
Steven Rostedtd4788202009-06-17 00:39:43 -04004225 if (!ret)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004226 return 0;
4227 }
Steven Rostedt554f7862009-03-11 22:00:13 -04004228
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004229 return 1;
4230}
Robert Richterc4f50182008-12-11 16:49:22 +01004231EXPORT_SYMBOL_GPL(ring_buffer_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004232
4233/**
4234 * ring_buffer_empty_cpu - is a cpu buffer of a ring buffer empty?
4235 * @buffer: The ring buffer
4236 * @cpu: The CPU buffer to test
4237 */
4238int ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu)
4239{
4240 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04004241 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04004242 int dolock;
Steven Rostedt8aabee52009-03-12 13:13:49 -04004243 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004244
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304245 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004246 return 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004247
Steven Rostedt8d707e82009-06-16 21:22:48 -04004248 dolock = rb_ok_to_lock();
Steven Rostedt554f7862009-03-11 22:00:13 -04004249
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004250 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004251 local_irq_save(flags);
4252 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004253 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt554f7862009-03-11 22:00:13 -04004254 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004255 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004256 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004257 local_irq_restore(flags);
Steven Rostedt554f7862009-03-11 22:00:13 -04004258
4259 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004260}
Robert Richterc4f50182008-12-11 16:49:22 +01004261EXPORT_SYMBOL_GPL(ring_buffer_empty_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004262
Steven Rostedt85bac322009-09-04 14:24:40 -04004263#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004264/**
4265 * ring_buffer_swap_cpu - swap a CPU buffer between two ring buffers
4266 * @buffer_a: One buffer to swap with
4267 * @buffer_b: The other buffer to swap with
4268 *
4269 * This function is useful for tracers that want to take a "snapshot"
4270 * of a CPU buffer and has another back up buffer lying around.
4271 * it is expected that the tracer handles the cpu buffer not being
4272 * used at the moment.
4273 */
4274int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
4275 struct ring_buffer *buffer_b, int cpu)
4276{
4277 struct ring_buffer_per_cpu *cpu_buffer_a;
4278 struct ring_buffer_per_cpu *cpu_buffer_b;
Steven Rostedt554f7862009-03-11 22:00:13 -04004279 int ret = -EINVAL;
4280
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304281 if (!cpumask_test_cpu(cpu, buffer_a->cpumask) ||
4282 !cpumask_test_cpu(cpu, buffer_b->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04004283 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004284
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004285 cpu_buffer_a = buffer_a->buffers[cpu];
4286 cpu_buffer_b = buffer_b->buffers[cpu];
4287
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004288 /* At least make sure the two buffers are somewhat the same */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004289 if (cpu_buffer_a->nr_pages != cpu_buffer_b->nr_pages)
Steven Rostedt554f7862009-03-11 22:00:13 -04004290 goto out;
4291
4292 ret = -EAGAIN;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004293
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004294 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedt554f7862009-03-11 22:00:13 -04004295 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004296
4297 if (atomic_read(&buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004298 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004299
4300 if (atomic_read(&buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004301 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004302
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004303 if (atomic_read(&cpu_buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004304 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004305
4306 if (atomic_read(&cpu_buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004307 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004308
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004309 /*
4310 * We can't do a synchronize_sched here because this
4311 * function can be called in atomic context.
4312 * Normally this will be called from the same CPU as cpu.
4313 * If not it's up to the caller to protect this.
4314 */
4315 atomic_inc(&cpu_buffer_a->record_disabled);
4316 atomic_inc(&cpu_buffer_b->record_disabled);
4317
Steven Rostedt98277992009-09-02 10:56:15 -04004318 ret = -EBUSY;
4319 if (local_read(&cpu_buffer_a->committing))
4320 goto out_dec;
4321 if (local_read(&cpu_buffer_b->committing))
4322 goto out_dec;
4323
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004324 buffer_a->buffers[cpu] = cpu_buffer_b;
4325 buffer_b->buffers[cpu] = cpu_buffer_a;
4326
4327 cpu_buffer_b->buffer = buffer_a;
4328 cpu_buffer_a->buffer = buffer_b;
4329
Steven Rostedt98277992009-09-02 10:56:15 -04004330 ret = 0;
4331
4332out_dec:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004333 atomic_dec(&cpu_buffer_a->record_disabled);
4334 atomic_dec(&cpu_buffer_b->record_disabled);
Steven Rostedt554f7862009-03-11 22:00:13 -04004335out:
Steven Rostedt554f7862009-03-11 22:00:13 -04004336 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004337}
Robert Richterc4f50182008-12-11 16:49:22 +01004338EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
Steven Rostedt85bac322009-09-04 14:24:40 -04004339#endif /* CONFIG_RING_BUFFER_ALLOW_SWAP */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004340
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004341/**
4342 * ring_buffer_alloc_read_page - allocate a page to read from buffer
4343 * @buffer: the buffer to allocate for.
4344 *
4345 * This function is used in conjunction with ring_buffer_read_page.
4346 * When reading a full page from the ring buffer, these functions
4347 * can be used to speed up the process. The calling function should
4348 * allocate a few pages first with this function. Then when it
4349 * needs to get pages from the ring buffer, it passes the result
4350 * of this function into ring_buffer_read_page, which will swap
4351 * the page that was allocated, with the read page of the buffer.
4352 *
4353 * Returns:
4354 * The page allocated, or NULL on error.
4355 */
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004356void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004357{
Steven Rostedt044fa782008-12-02 23:50:03 -05004358 struct buffer_data_page *bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004359 struct page *page;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004360
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07004361 page = alloc_pages_node(cpu_to_node(cpu),
4362 GFP_KERNEL | __GFP_NORETRY, 0);
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004363 if (!page)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004364 return NULL;
4365
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004366 bpage = page_address(page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004367
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004368 rb_init_page(bpage);
4369
Steven Rostedt044fa782008-12-02 23:50:03 -05004370 return bpage;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004371}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004372EXPORT_SYMBOL_GPL(ring_buffer_alloc_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004373
4374/**
4375 * ring_buffer_free_read_page - free an allocated read page
4376 * @buffer: the buffer the page was allocate for
4377 * @data: the page to free
4378 *
4379 * Free a page allocated from ring_buffer_alloc_read_page.
4380 */
4381void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data)
4382{
4383 free_page((unsigned long)data);
4384}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004385EXPORT_SYMBOL_GPL(ring_buffer_free_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004386
4387/**
4388 * ring_buffer_read_page - extract a page from the ring buffer
4389 * @buffer: buffer to extract from
4390 * @data_page: the page to use allocated from ring_buffer_alloc_read_page
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004391 * @len: amount to extract
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004392 * @cpu: the cpu of the buffer to extract
4393 * @full: should the extraction only happen when the page is full.
4394 *
4395 * This function will pull out a page from the ring buffer and consume it.
4396 * @data_page must be the address of the variable that was returned
4397 * from ring_buffer_alloc_read_page. This is because the page might be used
4398 * to swap with a page in the ring buffer.
4399 *
4400 * for example:
Lai Jiangshanb85fa012009-02-09 14:21:14 +08004401 * rpage = ring_buffer_alloc_read_page(buffer);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004402 * if (!rpage)
4403 * return error;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004404 * ret = ring_buffer_read_page(buffer, &rpage, len, cpu, 0);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004405 * if (ret >= 0)
4406 * process_page(rpage, ret);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004407 *
4408 * When @full is set, the function will not return true unless
4409 * the writer is off the reader page.
4410 *
4411 * Note: it is up to the calling functions to handle sleeps and wakeups.
4412 * The ring buffer can be used anywhere in the kernel and can not
4413 * blindly call wake_up. The layer that uses the ring buffer must be
4414 * responsible for that.
4415 *
4416 * Returns:
Lai Jiangshan667d2412009-02-09 14:21:17 +08004417 * >=0 if data has been transferred, returns the offset of consumed data.
4418 * <0 if no data has been transferred.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004419 */
4420int ring_buffer_read_page(struct ring_buffer *buffer,
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004421 void **data_page, size_t len, int cpu, int full)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004422{
4423 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4424 struct ring_buffer_event *event;
Steven Rostedt044fa782008-12-02 23:50:03 -05004425 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004426 struct buffer_page *reader;
Steven Rostedtff0ff842010-03-31 22:11:42 -04004427 unsigned long missed_events;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004428 unsigned long flags;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004429 unsigned int commit;
Lai Jiangshan667d2412009-02-09 14:21:17 +08004430 unsigned int read;
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004431 u64 save_timestamp;
Lai Jiangshan667d2412009-02-09 14:21:17 +08004432 int ret = -1;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004433
Steven Rostedt554f7862009-03-11 22:00:13 -04004434 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4435 goto out;
4436
Steven Rostedt474d32b2009-03-03 19:51:40 -05004437 /*
4438 * If len is not big enough to hold the page header, then
4439 * we can not copy anything.
4440 */
4441 if (len <= BUF_PAGE_HDR_SIZE)
Steven Rostedt554f7862009-03-11 22:00:13 -04004442 goto out;
Steven Rostedt474d32b2009-03-03 19:51:40 -05004443
4444 len -= BUF_PAGE_HDR_SIZE;
4445
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004446 if (!data_page)
Steven Rostedt554f7862009-03-11 22:00:13 -04004447 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004448
Steven Rostedt044fa782008-12-02 23:50:03 -05004449 bpage = *data_page;
4450 if (!bpage)
Steven Rostedt554f7862009-03-11 22:00:13 -04004451 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004452
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004453 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004454
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004455 reader = rb_get_reader_page(cpu_buffer);
4456 if (!reader)
Steven Rostedt554f7862009-03-11 22:00:13 -04004457 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004458
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004459 event = rb_reader_event(cpu_buffer);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004460
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004461 read = reader->read;
4462 commit = rb_page_commit(reader);
4463
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004464 /* Check if any events were dropped */
Steven Rostedtff0ff842010-03-31 22:11:42 -04004465 missed_events = cpu_buffer->lost_events;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004466
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004467 /*
Steven Rostedt474d32b2009-03-03 19:51:40 -05004468 * If this page has been partially read or
4469 * if len is not big enough to read the rest of the page or
4470 * a writer is still on the page, then
4471 * we must copy the data from the page to the buffer.
4472 * Otherwise, we can simply swap the page with the one passed in.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004473 */
Steven Rostedt474d32b2009-03-03 19:51:40 -05004474 if (read || (len < (commit - read)) ||
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004475 cpu_buffer->reader_page == cpu_buffer->commit_page) {
Lai Jiangshan667d2412009-02-09 14:21:17 +08004476 struct buffer_data_page *rpage = cpu_buffer->reader_page->page;
Steven Rostedt474d32b2009-03-03 19:51:40 -05004477 unsigned int rpos = read;
4478 unsigned int pos = 0;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004479 unsigned int size;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004480
4481 if (full)
Steven Rostedt554f7862009-03-11 22:00:13 -04004482 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004483
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004484 if (len > (commit - read))
4485 len = (commit - read);
4486
Steven Rostedt69d1b832010-10-07 18:18:05 -04004487 /* Always keep the time extend and data together */
4488 size = rb_event_ts_length(event);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004489
4490 if (len < size)
Steven Rostedt554f7862009-03-11 22:00:13 -04004491 goto out_unlock;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004492
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004493 /* save the current timestamp, since the user will need it */
4494 save_timestamp = cpu_buffer->read_stamp;
4495
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004496 /* Need to copy one event at a time */
4497 do {
David Sharpe1e35922010-12-22 16:38:24 -08004498 /* We need the size of one event, because
4499 * rb_advance_reader only advances by one event,
4500 * whereas rb_event_ts_length may include the size of
4501 * one or two events.
4502 * We have already ensured there's enough space if this
4503 * is a time extend. */
4504 size = rb_event_length(event);
Steven Rostedt474d32b2009-03-03 19:51:40 -05004505 memcpy(bpage->data + pos, rpage->data + rpos, size);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004506
4507 len -= size;
4508
4509 rb_advance_reader(cpu_buffer);
Steven Rostedt474d32b2009-03-03 19:51:40 -05004510 rpos = reader->read;
4511 pos += size;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004512
Huang Ying18fab912010-07-28 14:14:01 +08004513 if (rpos >= commit)
4514 break;
4515
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004516 event = rb_reader_event(cpu_buffer);
Steven Rostedt69d1b832010-10-07 18:18:05 -04004517 /* Always keep the time extend and data together */
4518 size = rb_event_ts_length(event);
David Sharpe1e35922010-12-22 16:38:24 -08004519 } while (len >= size);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004520
4521 /* update bpage */
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004522 local_set(&bpage->commit, pos);
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004523 bpage->time_stamp = save_timestamp;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004524
Steven Rostedt474d32b2009-03-03 19:51:40 -05004525 /* we copied everything to the beginning */
4526 read = 0;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004527 } else {
Steven Rostedtafbab762009-05-01 19:40:05 -04004528 /* update the entry counter */
Steven Rostedt77ae3652009-03-27 11:00:29 -04004529 cpu_buffer->read += rb_page_entries(reader);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004530 cpu_buffer->read_bytes += BUF_PAGE_SIZE;
Steven Rostedtafbab762009-05-01 19:40:05 -04004531
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004532 /* swap the pages */
Steven Rostedt044fa782008-12-02 23:50:03 -05004533 rb_init_page(bpage);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004534 bpage = reader->page;
4535 reader->page = *data_page;
4536 local_set(&reader->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004537 local_set(&reader->entries, 0);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004538 reader->read = 0;
Steven Rostedt044fa782008-12-02 23:50:03 -05004539 *data_page = bpage;
Steven Rostedtff0ff842010-03-31 22:11:42 -04004540
4541 /*
4542 * Use the real_end for the data size,
4543 * This gives us a chance to store the lost events
4544 * on the page.
4545 */
4546 if (reader->real_end)
4547 local_set(&bpage->commit, reader->real_end);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004548 }
Lai Jiangshan667d2412009-02-09 14:21:17 +08004549 ret = read;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004550
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004551 cpu_buffer->lost_events = 0;
Steven Rostedt2711ca22010-05-21 13:32:26 -04004552
4553 commit = local_read(&bpage->commit);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004554 /*
4555 * Set a flag in the commit field if we lost events
4556 */
Steven Rostedtff0ff842010-03-31 22:11:42 -04004557 if (missed_events) {
Steven Rostedtff0ff842010-03-31 22:11:42 -04004558 /* If there is room at the end of the page to save the
4559 * missed events, then record it there.
4560 */
4561 if (BUF_PAGE_SIZE - commit >= sizeof(missed_events)) {
4562 memcpy(&bpage->data[commit], &missed_events,
4563 sizeof(missed_events));
4564 local_add(RB_MISSED_STORED, &bpage->commit);
Steven Rostedt2711ca22010-05-21 13:32:26 -04004565 commit += sizeof(missed_events);
Steven Rostedtff0ff842010-03-31 22:11:42 -04004566 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004567 local_add(RB_MISSED_EVENTS, &bpage->commit);
Steven Rostedtff0ff842010-03-31 22:11:42 -04004568 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004569
Steven Rostedt2711ca22010-05-21 13:32:26 -04004570 /*
4571 * This page may be off to user land. Zero it out here.
4572 */
4573 if (commit < BUF_PAGE_SIZE)
4574 memset(&bpage->data[commit], 0, BUF_PAGE_SIZE - commit);
4575
Steven Rostedt554f7862009-03-11 22:00:13 -04004576 out_unlock:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004577 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004578
Steven Rostedt554f7862009-03-11 22:00:13 -04004579 out:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004580 return ret;
4581}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004582EXPORT_SYMBOL_GPL(ring_buffer_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004583
Steven Rostedt59222ef2009-03-12 11:46:03 -04004584#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01004585static int rb_cpu_notify(struct notifier_block *self,
4586 unsigned long action, void *hcpu)
Steven Rostedt554f7862009-03-11 22:00:13 -04004587{
4588 struct ring_buffer *buffer =
4589 container_of(self, struct ring_buffer, cpu_notify);
4590 long cpu = (long)hcpu;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004591 int cpu_i, nr_pages_same;
4592 unsigned int nr_pages;
Steven Rostedt554f7862009-03-11 22:00:13 -04004593
4594 switch (action) {
4595 case CPU_UP_PREPARE:
4596 case CPU_UP_PREPARE_FROZEN:
Rusty Russell3f237a72009-06-12 21:15:30 +09304597 if (cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04004598 return NOTIFY_OK;
4599
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004600 nr_pages = 0;
4601 nr_pages_same = 1;
4602 /* check if all cpu sizes are same */
4603 for_each_buffer_cpu(buffer, cpu_i) {
4604 /* fill in the size from first enabled cpu */
4605 if (nr_pages == 0)
4606 nr_pages = buffer->buffers[cpu_i]->nr_pages;
4607 if (nr_pages != buffer->buffers[cpu_i]->nr_pages) {
4608 nr_pages_same = 0;
4609 break;
4610 }
4611 }
4612 /* allocate minimum pages, user can later expand it */
4613 if (!nr_pages_same)
4614 nr_pages = 2;
Steven Rostedt554f7862009-03-11 22:00:13 -04004615 buffer->buffers[cpu] =
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004616 rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
Steven Rostedt554f7862009-03-11 22:00:13 -04004617 if (!buffer->buffers[cpu]) {
4618 WARN(1, "failed to allocate ring buffer on CPU %ld\n",
4619 cpu);
4620 return NOTIFY_OK;
4621 }
4622 smp_wmb();
Rusty Russell3f237a72009-06-12 21:15:30 +09304623 cpumask_set_cpu(cpu, buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -04004624 break;
4625 case CPU_DOWN_PREPARE:
4626 case CPU_DOWN_PREPARE_FROZEN:
4627 /*
4628 * Do nothing.
4629 * If we were to free the buffer, then the user would
4630 * lose any trace that was in the buffer.
4631 */
4632 break;
4633 default:
4634 break;
4635 }
4636 return NOTIFY_OK;
4637}
4638#endif
Steven Rostedt (Red Hat)6c43e552013-03-15 11:32:53 -04004639
4640#ifdef CONFIG_RING_BUFFER_STARTUP_TEST
4641/*
4642 * This is a basic integrity check of the ring buffer.
4643 * Late in the boot cycle this test will run when configured in.
4644 * It will kick off a thread per CPU that will go into a loop
4645 * writing to the per cpu ring buffer various sizes of data.
4646 * Some of the data will be large items, some small.
4647 *
4648 * Another thread is created that goes into a spin, sending out
4649 * IPIs to the other CPUs to also write into the ring buffer.
4650 * this is to test the nesting ability of the buffer.
4651 *
4652 * Basic stats are recorded and reported. If something in the
4653 * ring buffer should happen that's not expected, a big warning
4654 * is displayed and all ring buffers are disabled.
4655 */
4656static struct task_struct *rb_threads[NR_CPUS] __initdata;
4657
4658struct rb_test_data {
4659 struct ring_buffer *buffer;
4660 unsigned long events;
4661 unsigned long bytes_written;
4662 unsigned long bytes_alloc;
4663 unsigned long bytes_dropped;
4664 unsigned long events_nested;
4665 unsigned long bytes_written_nested;
4666 unsigned long bytes_alloc_nested;
4667 unsigned long bytes_dropped_nested;
4668 int min_size_nested;
4669 int max_size_nested;
4670 int max_size;
4671 int min_size;
4672 int cpu;
4673 int cnt;
4674};
4675
4676static struct rb_test_data rb_data[NR_CPUS] __initdata;
4677
4678/* 1 meg per cpu */
4679#define RB_TEST_BUFFER_SIZE 1048576
4680
4681static char rb_string[] __initdata =
4682 "abcdefghijklmnopqrstuvwxyz1234567890!@#$%^&*()?+\\"
4683 "?+|:';\",.<>/?abcdefghijklmnopqrstuvwxyz1234567890"
4684 "!@#$%^&*()?+\\?+|:';\",.<>/?abcdefghijklmnopqrstuv";
4685
4686static bool rb_test_started __initdata;
4687
4688struct rb_item {
4689 int size;
4690 char str[];
4691};
4692
4693static __init int rb_write_something(struct rb_test_data *data, bool nested)
4694{
4695 struct ring_buffer_event *event;
4696 struct rb_item *item;
4697 bool started;
4698 int event_len;
4699 int size;
4700 int len;
4701 int cnt;
4702
4703 /* Have nested writes different that what is written */
4704 cnt = data->cnt + (nested ? 27 : 0);
4705
4706 /* Multiply cnt by ~e, to make some unique increment */
4707 size = (data->cnt * 68 / 25) % (sizeof(rb_string) - 1);
4708
4709 len = size + sizeof(struct rb_item);
4710
4711 started = rb_test_started;
4712 /* read rb_test_started before checking buffer enabled */
4713 smp_rmb();
4714
4715 event = ring_buffer_lock_reserve(data->buffer, len);
4716 if (!event) {
4717 /* Ignore dropped events before test starts. */
4718 if (started) {
4719 if (nested)
4720 data->bytes_dropped += len;
4721 else
4722 data->bytes_dropped_nested += len;
4723 }
4724 return len;
4725 }
4726
4727 event_len = ring_buffer_event_length(event);
4728
4729 if (RB_WARN_ON(data->buffer, event_len < len))
4730 goto out;
4731
4732 item = ring_buffer_event_data(event);
4733 item->size = size;
4734 memcpy(item->str, rb_string, size);
4735
4736 if (nested) {
4737 data->bytes_alloc_nested += event_len;
4738 data->bytes_written_nested += len;
4739 data->events_nested++;
4740 if (!data->min_size_nested || len < data->min_size_nested)
4741 data->min_size_nested = len;
4742 if (len > data->max_size_nested)
4743 data->max_size_nested = len;
4744 } else {
4745 data->bytes_alloc += event_len;
4746 data->bytes_written += len;
4747 data->events++;
4748 if (!data->min_size || len < data->min_size)
4749 data->max_size = len;
4750 if (len > data->max_size)
4751 data->max_size = len;
4752 }
4753
4754 out:
4755 ring_buffer_unlock_commit(data->buffer, event);
4756
4757 return 0;
4758}
4759
4760static __init int rb_test(void *arg)
4761{
4762 struct rb_test_data *data = arg;
4763
4764 while (!kthread_should_stop()) {
4765 rb_write_something(data, false);
4766 data->cnt++;
4767
4768 set_current_state(TASK_INTERRUPTIBLE);
4769 /* Now sleep between a min of 100-300us and a max of 1ms */
4770 usleep_range(((data->cnt % 3) + 1) * 100, 1000);
4771 }
4772
4773 return 0;
4774}
4775
4776static __init void rb_ipi(void *ignore)
4777{
4778 struct rb_test_data *data;
4779 int cpu = smp_processor_id();
4780
4781 data = &rb_data[cpu];
4782 rb_write_something(data, true);
4783}
4784
4785static __init int rb_hammer_test(void *arg)
4786{
4787 while (!kthread_should_stop()) {
4788
4789 /* Send an IPI to all cpus to write data! */
4790 smp_call_function(rb_ipi, NULL, 1);
4791 /* No sleep, but for non preempt, let others run */
4792 schedule();
4793 }
4794
4795 return 0;
4796}
4797
4798static __init int test_ringbuffer(void)
4799{
4800 struct task_struct *rb_hammer;
4801 struct ring_buffer *buffer;
4802 int cpu;
4803 int ret = 0;
4804
4805 pr_info("Running ring buffer tests...\n");
4806
4807 buffer = ring_buffer_alloc(RB_TEST_BUFFER_SIZE, RB_FL_OVERWRITE);
4808 if (WARN_ON(!buffer))
4809 return 0;
4810
4811 /* Disable buffer so that threads can't write to it yet */
4812 ring_buffer_record_off(buffer);
4813
4814 for_each_online_cpu(cpu) {
4815 rb_data[cpu].buffer = buffer;
4816 rb_data[cpu].cpu = cpu;
4817 rb_data[cpu].cnt = cpu;
4818 rb_threads[cpu] = kthread_create(rb_test, &rb_data[cpu],
4819 "rbtester/%d", cpu);
4820 if (WARN_ON(!rb_threads[cpu])) {
4821 pr_cont("FAILED\n");
4822 ret = -1;
4823 goto out_free;
4824 }
4825
4826 kthread_bind(rb_threads[cpu], cpu);
4827 wake_up_process(rb_threads[cpu]);
4828 }
4829
4830 /* Now create the rb hammer! */
4831 rb_hammer = kthread_run(rb_hammer_test, NULL, "rbhammer");
4832 if (WARN_ON(!rb_hammer)) {
4833 pr_cont("FAILED\n");
4834 ret = -1;
4835 goto out_free;
4836 }
4837
4838 ring_buffer_record_on(buffer);
4839 /*
4840 * Show buffer is enabled before setting rb_test_started.
4841 * Yes there's a small race window where events could be
4842 * dropped and the thread wont catch it. But when a ring
4843 * buffer gets enabled, there will always be some kind of
4844 * delay before other CPUs see it. Thus, we don't care about
4845 * those dropped events. We care about events dropped after
4846 * the threads see that the buffer is active.
4847 */
4848 smp_wmb();
4849 rb_test_started = true;
4850
4851 set_current_state(TASK_INTERRUPTIBLE);
4852 /* Just run for 10 seconds */;
4853 schedule_timeout(10 * HZ);
4854
4855 kthread_stop(rb_hammer);
4856
4857 out_free:
4858 for_each_online_cpu(cpu) {
4859 if (!rb_threads[cpu])
4860 break;
4861 kthread_stop(rb_threads[cpu]);
4862 }
4863 if (ret) {
4864 ring_buffer_free(buffer);
4865 return ret;
4866 }
4867
4868 /* Report! */
4869 pr_info("finished\n");
4870 for_each_online_cpu(cpu) {
4871 struct ring_buffer_event *event;
4872 struct rb_test_data *data = &rb_data[cpu];
4873 struct rb_item *item;
4874 unsigned long total_events;
4875 unsigned long total_dropped;
4876 unsigned long total_written;
4877 unsigned long total_alloc;
4878 unsigned long total_read = 0;
4879 unsigned long total_size = 0;
4880 unsigned long total_len = 0;
4881 unsigned long total_lost = 0;
4882 unsigned long lost;
4883 int big_event_size;
4884 int small_event_size;
4885
4886 ret = -1;
4887
4888 total_events = data->events + data->events_nested;
4889 total_written = data->bytes_written + data->bytes_written_nested;
4890 total_alloc = data->bytes_alloc + data->bytes_alloc_nested;
4891 total_dropped = data->bytes_dropped + data->bytes_dropped_nested;
4892
4893 big_event_size = data->max_size + data->max_size_nested;
4894 small_event_size = data->min_size + data->min_size_nested;
4895
4896 pr_info("CPU %d:\n", cpu);
4897 pr_info(" events: %ld\n", total_events);
4898 pr_info(" dropped bytes: %ld\n", total_dropped);
4899 pr_info(" alloced bytes: %ld\n", total_alloc);
4900 pr_info(" written bytes: %ld\n", total_written);
4901 pr_info(" biggest event: %d\n", big_event_size);
4902 pr_info(" smallest event: %d\n", small_event_size);
4903
4904 if (RB_WARN_ON(buffer, total_dropped))
4905 break;
4906
4907 ret = 0;
4908
4909 while ((event = ring_buffer_consume(buffer, cpu, NULL, &lost))) {
4910 total_lost += lost;
4911 item = ring_buffer_event_data(event);
4912 total_len += ring_buffer_event_length(event);
4913 total_size += item->size + sizeof(struct rb_item);
4914 if (memcmp(&item->str[0], rb_string, item->size) != 0) {
4915 pr_info("FAILED!\n");
4916 pr_info("buffer had: %.*s\n", item->size, item->str);
4917 pr_info("expected: %.*s\n", item->size, rb_string);
4918 RB_WARN_ON(buffer, 1);
4919 ret = -1;
4920 break;
4921 }
4922 total_read++;
4923 }
4924 if (ret)
4925 break;
4926
4927 ret = -1;
4928
4929 pr_info(" read events: %ld\n", total_read);
4930 pr_info(" lost events: %ld\n", total_lost);
4931 pr_info(" total events: %ld\n", total_lost + total_read);
4932 pr_info(" recorded len bytes: %ld\n", total_len);
4933 pr_info(" recorded size bytes: %ld\n", total_size);
4934 if (total_lost)
4935 pr_info(" With dropped events, record len and size may not match\n"
4936 " alloced and written from above\n");
4937 if (!total_lost) {
4938 if (RB_WARN_ON(buffer, total_len != total_alloc ||
4939 total_size != total_written))
4940 break;
4941 }
4942 if (RB_WARN_ON(buffer, total_lost + total_read != total_events))
4943 break;
4944
4945 ret = 0;
4946 }
4947 if (!ret)
4948 pr_info("Ring buffer PASSED!\n");
4949
4950 ring_buffer_free(buffer);
4951 return 0;
4952}
4953
4954late_initcall(test_ringbuffer);
4955#endif /* CONFIG_RING_BUFFER_STARTUP_TEST */