blob: 65fe2a4f98241bc4295276aee1fbec95463d7ce9 [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>
Vegard Nossum1744a212009-02-28 08:29:44 +010015#include <linux/kmemcheck.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040016#include <linux/module.h>
17#include <linux/percpu.h>
18#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040020#include <linux/init.h>
21#include <linux/hash.h>
22#include <linux/list.h>
Steven Rostedt554f7862009-03-11 22:00:13 -040023#include <linux/cpu.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040024#include <linux/fs.h>
25
Christoph Lameter79615762010-01-05 15:34:50 +090026#include <asm/local.h>
Steven Rostedt182e9f52008-11-03 23:15:56 -050027
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -070028static void update_pages_handler(struct work_struct *work);
29
Steven Rostedt033601a2008-11-21 12:41:55 -050030/*
Steven Rostedtd1b182a2009-04-15 16:53:47 -040031 * The ring buffer header is special. We must manually up keep it.
32 */
33int ring_buffer_print_entry_header(struct trace_seq *s)
34{
35 int ret;
36
Lai Jiangshan334d4162009-04-24 11:27:05 +080037 ret = trace_seq_printf(s, "# compressed entry header\n");
38 ret = trace_seq_printf(s, "\ttype_len : 5 bits\n");
Steven Rostedtd1b182a2009-04-15 16:53:47 -040039 ret = trace_seq_printf(s, "\ttime_delta : 27 bits\n");
40 ret = trace_seq_printf(s, "\tarray : 32 bits\n");
41 ret = trace_seq_printf(s, "\n");
42 ret = trace_seq_printf(s, "\tpadding : type == %d\n",
43 RINGBUF_TYPE_PADDING);
44 ret = trace_seq_printf(s, "\ttime_extend : type == %d\n",
45 RINGBUF_TYPE_TIME_EXTEND);
Lai Jiangshan334d4162009-04-24 11:27:05 +080046 ret = trace_seq_printf(s, "\tdata max type_len == %d\n",
47 RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedtd1b182a2009-04-15 16:53:47 -040048
49 return ret;
50}
51
52/*
Steven Rostedt5cc98542009-03-12 22:24:17 -040053 * The ring buffer is made up of a list of pages. A separate list of pages is
54 * allocated for each CPU. A writer may only write to a buffer that is
55 * associated with the CPU it is currently executing on. A reader may read
56 * from any per cpu buffer.
57 *
58 * The reader is special. For each per cpu buffer, the reader has its own
59 * reader page. When a reader has read the entire reader page, this reader
60 * page is swapped with another page in the ring buffer.
61 *
62 * Now, as long as the writer is off the reader page, the reader can do what
63 * ever it wants with that page. The writer will never write to that page
64 * again (as long as it is out of the ring buffer).
65 *
66 * Here's some silly ASCII art.
67 *
68 * +------+
69 * |reader| RING BUFFER
70 * |page |
71 * +------+ +---+ +---+ +---+
72 * | |-->| |-->| |
73 * +---+ +---+ +---+
74 * ^ |
75 * | |
76 * +---------------+
77 *
78 *
79 * +------+
80 * |reader| RING BUFFER
81 * |page |------------------v
82 * +------+ +---+ +---+ +---+
83 * | |-->| |-->| |
84 * +---+ +---+ +---+
85 * ^ |
86 * | |
87 * +---------------+
88 *
89 *
90 * +------+
91 * |reader| RING BUFFER
92 * |page |------------------v
93 * +------+ +---+ +---+ +---+
94 * ^ | |-->| |-->| |
95 * | +---+ +---+ +---+
96 * | |
97 * | |
98 * +------------------------------+
99 *
100 *
101 * +------+
102 * |buffer| RING BUFFER
103 * |page |------------------v
104 * +------+ +---+ +---+ +---+
105 * ^ | | | |-->| |
106 * | New +---+ +---+ +---+
107 * | Reader------^ |
108 * | page |
109 * +------------------------------+
110 *
111 *
112 * After we make this swap, the reader can hand this page off to the splice
113 * code and be done with it. It can even allocate a new page if it needs to
114 * and swap that into the ring buffer.
115 *
116 * We will be using cmpxchg soon to make all this lockless.
117 *
118 */
119
120/*
Steven Rostedt033601a2008-11-21 12:41:55 -0500121 * A fast way to enable or disable all ring buffers is to
122 * call tracing_on or tracing_off. Turning off the ring buffers
123 * prevents all ring buffers from being recorded to.
124 * Turning this switch on, makes it OK to write to the
125 * ring buffer, if the ring buffer is enabled itself.
126 *
127 * There's three layers that must be on in order to write
128 * to the ring buffer.
129 *
130 * 1) This global flag must be set.
131 * 2) The ring buffer must be enabled for recording.
132 * 3) The per cpu buffer must be enabled for recording.
133 *
134 * In case of an anomaly, this global flag has a bit set that
135 * will permantly disable all ring buffers.
136 */
137
138/*
139 * Global flag to disable all recording to ring buffers
140 * This has two bits: ON, DISABLED
141 *
142 * ON DISABLED
143 * ---- ----------
144 * 0 0 : ring buffers are off
145 * 1 0 : ring buffers are on
146 * X 1 : ring buffers are permanently disabled
147 */
148
149enum {
150 RB_BUFFERS_ON_BIT = 0,
151 RB_BUFFERS_DISABLED_BIT = 1,
152};
153
154enum {
155 RB_BUFFERS_ON = 1 << RB_BUFFERS_ON_BIT,
156 RB_BUFFERS_DISABLED = 1 << RB_BUFFERS_DISABLED_BIT,
157};
158
Hannes Eder5e398412009-02-10 19:44:34 +0100159static unsigned long ring_buffer_flags __read_mostly = RB_BUFFERS_ON;
Steven Rostedta3583242008-11-11 15:01:42 -0500160
Steven Rostedt499e5472012-02-22 15:50:28 -0500161/* Used for individual buffers (after the counter) */
162#define RB_BUFFER_OFF (1 << 20)
163
Steven Rostedt474d32b2009-03-03 19:51:40 -0500164#define BUF_PAGE_HDR_SIZE offsetof(struct buffer_data_page, data)
165
Steven Rostedta3583242008-11-11 15:01:42 -0500166/**
Steven Rostedt033601a2008-11-21 12:41:55 -0500167 * tracing_off_permanent - permanently disable ring buffers
168 *
169 * This function, once called, will disable all ring buffers
Wenji Huangc3706f02009-02-10 01:03:18 -0500170 * permanently.
Steven Rostedt033601a2008-11-21 12:41:55 -0500171 */
172void tracing_off_permanent(void)
173{
174 set_bit(RB_BUFFERS_DISABLED_BIT, &ring_buffer_flags);
Steven Rostedta3583242008-11-11 15:01:42 -0500175}
176
Steven Rostedte3d6bf02009-03-03 13:53:07 -0500177#define RB_EVNT_HDR_SIZE (offsetof(struct ring_buffer_event, array))
Andrew Morton67d34722009-01-09 12:27:09 -0800178#define RB_ALIGNMENT 4U
Lai Jiangshan334d4162009-04-24 11:27:05 +0800179#define RB_MAX_SMALL_DATA (RB_ALIGNMENT * RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedtc7b09302009-06-11 11:12:00 -0400180#define RB_EVNT_MIN_SIZE 8U /* two 32bit words */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800181
Steven Rostedt22710482010-03-18 17:54:19 -0400182#if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
183# define RB_FORCE_8BYTE_ALIGNMENT 0
184# define RB_ARCH_ALIGNMENT RB_ALIGNMENT
185#else
186# define RB_FORCE_8BYTE_ALIGNMENT 1
187# define RB_ARCH_ALIGNMENT 8U
188#endif
189
Lai Jiangshan334d4162009-04-24 11:27:05 +0800190/* define RINGBUF_TYPE_DATA for 'case RINGBUF_TYPE_DATA:' */
191#define RINGBUF_TYPE_DATA 0 ... RINGBUF_TYPE_DATA_TYPE_LEN_MAX
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400192
193enum {
194 RB_LEN_TIME_EXTEND = 8,
195 RB_LEN_TIME_STAMP = 16,
196};
197
Steven Rostedt69d1b832010-10-07 18:18:05 -0400198#define skip_time_extend(event) \
199 ((struct ring_buffer_event *)((char *)event + RB_LEN_TIME_EXTEND))
200
Tom Zanussi2d622712009-03-22 03:30:49 -0500201static inline int rb_null_event(struct ring_buffer_event *event)
202{
Steven Rostedta1863c22009-09-03 10:23:58 -0400203 return event->type_len == RINGBUF_TYPE_PADDING && !event->time_delta;
Tom Zanussi2d622712009-03-22 03:30:49 -0500204}
205
206static void rb_event_set_padding(struct ring_buffer_event *event)
207{
Steven Rostedta1863c22009-09-03 10:23:58 -0400208 /* padding has a NULL time_delta */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800209 event->type_len = RINGBUF_TYPE_PADDING;
Tom Zanussi2d622712009-03-22 03:30:49 -0500210 event->time_delta = 0;
211}
212
Tom Zanussi2d622712009-03-22 03:30:49 -0500213static unsigned
214rb_event_data_length(struct ring_buffer_event *event)
215{
216 unsigned length;
217
Lai Jiangshan334d4162009-04-24 11:27:05 +0800218 if (event->type_len)
219 length = event->type_len * RB_ALIGNMENT;
Tom Zanussi2d622712009-03-22 03:30:49 -0500220 else
221 length = event->array[0];
222 return length + RB_EVNT_HDR_SIZE;
223}
224
Steven Rostedt69d1b832010-10-07 18:18:05 -0400225/*
226 * Return the length of the given event. Will return
227 * the length of the time extend if the event is a
228 * time extend.
229 */
230static inline unsigned
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400231rb_event_length(struct ring_buffer_event *event)
232{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800233 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400234 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -0500235 if (rb_null_event(event))
236 /* undefined */
237 return -1;
Lai Jiangshan334d4162009-04-24 11:27:05 +0800238 return event->array[0] + RB_EVNT_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400239
240 case RINGBUF_TYPE_TIME_EXTEND:
241 return RB_LEN_TIME_EXTEND;
242
243 case RINGBUF_TYPE_TIME_STAMP:
244 return RB_LEN_TIME_STAMP;
245
246 case RINGBUF_TYPE_DATA:
Tom Zanussi2d622712009-03-22 03:30:49 -0500247 return rb_event_data_length(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400248 default:
249 BUG();
250 }
251 /* not hit */
252 return 0;
253}
254
Steven Rostedt69d1b832010-10-07 18:18:05 -0400255/*
256 * Return total length of time extend and data,
257 * or just the event length for all other events.
258 */
259static inline unsigned
260rb_event_ts_length(struct ring_buffer_event *event)
261{
262 unsigned len = 0;
263
264 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
265 /* time extends include the data event after it */
266 len = RB_LEN_TIME_EXTEND;
267 event = skip_time_extend(event);
268 }
269 return len + rb_event_length(event);
270}
271
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400272/**
273 * ring_buffer_event_length - return the length of the event
274 * @event: the event to get the length of
Steven Rostedt69d1b832010-10-07 18:18:05 -0400275 *
276 * Returns the size of the data load of a data event.
277 * If the event is something other than a data event, it
278 * returns the size of the event itself. With the exception
279 * of a TIME EXTEND, where it still returns the size of the
280 * data load of the data event after it.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400281 */
282unsigned ring_buffer_event_length(struct ring_buffer_event *event)
283{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400284 unsigned length;
285
286 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
287 event = skip_time_extend(event);
288
289 length = rb_event_length(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800290 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Robert Richter465634a2009-01-07 15:32:11 +0100291 return length;
292 length -= RB_EVNT_HDR_SIZE;
293 if (length > RB_MAX_SMALL_DATA + sizeof(event->array[0]))
294 length -= sizeof(event->array[0]);
295 return length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400296}
Robert Richterc4f50182008-12-11 16:49:22 +0100297EXPORT_SYMBOL_GPL(ring_buffer_event_length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400298
299/* inline for ring buffer fast paths */
Andrew Morton34a148b2009-01-09 12:27:09 -0800300static void *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400301rb_event_data(struct ring_buffer_event *event)
302{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400303 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
304 event = skip_time_extend(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800305 BUG_ON(event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400306 /* If length is in len field, then array[0] has the data */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800307 if (event->type_len)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400308 return (void *)&event->array[0];
309 /* Otherwise length is in array[0] and array[1] has the data */
310 return (void *)&event->array[1];
311}
312
313/**
314 * ring_buffer_event_data - return the data of the event
315 * @event: the event to get the data from
316 */
317void *ring_buffer_event_data(struct ring_buffer_event *event)
318{
319 return rb_event_data(event);
320}
Robert Richterc4f50182008-12-11 16:49:22 +0100321EXPORT_SYMBOL_GPL(ring_buffer_event_data);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400322
323#define for_each_buffer_cpu(buffer, cpu) \
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030324 for_each_cpu(cpu, buffer->cpumask)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400325
326#define TS_SHIFT 27
327#define TS_MASK ((1ULL << TS_SHIFT) - 1)
328#define TS_DELTA_TEST (~TS_MASK)
329
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400330/* Flag when events were overwritten */
331#define RB_MISSED_EVENTS (1 << 31)
Steven Rostedtff0ff842010-03-31 22:11:42 -0400332/* Missed count stored at end */
333#define RB_MISSED_STORED (1 << 30)
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400334
Steven Rostedtabc9b562008-12-02 15:34:06 -0500335struct buffer_data_page {
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400336 u64 time_stamp; /* page time stamp */
Wenji Huangc3706f02009-02-10 01:03:18 -0500337 local_t commit; /* write committed index */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500338 unsigned char data[]; /* data of buffer page */
339};
340
Steven Rostedt77ae3652009-03-27 11:00:29 -0400341/*
342 * Note, the buffer_page list must be first. The buffer pages
343 * are allocated in cache lines, which means that each buffer
344 * page will be at the beginning of a cache line, and thus
345 * the least significant bits will be zero. We use this to
346 * add flags in the list struct pointers, to make the ring buffer
347 * lockless.
348 */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500349struct buffer_page {
Steven Rostedt778c55d2009-05-01 18:44:45 -0400350 struct list_head list; /* list of buffer pages */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500351 local_t write; /* index for next write */
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400352 unsigned read; /* index for next read */
Steven Rostedt778c55d2009-05-01 18:44:45 -0400353 local_t entries; /* entries on this page */
Steven Rostedtff0ff842010-03-31 22:11:42 -0400354 unsigned long real_end; /* real end of data */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500355 struct buffer_data_page *page; /* Actual data page */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400356};
357
Steven Rostedt77ae3652009-03-27 11:00:29 -0400358/*
359 * The buffer page counters, write and entries, must be reset
360 * atomically when crossing page boundaries. To synchronize this
361 * update, two counters are inserted into the number. One is
362 * the actual counter for the write position or count on the page.
363 *
364 * The other is a counter of updaters. Before an update happens
365 * the update partition of the counter is incremented. This will
366 * allow the updater to update the counter atomically.
367 *
368 * The counter is 20 bits, and the state data is 12.
369 */
370#define RB_WRITE_MASK 0xfffff
371#define RB_WRITE_INTCNT (1 << 20)
372
Steven Rostedt044fa782008-12-02 23:50:03 -0500373static void rb_init_page(struct buffer_data_page *bpage)
Steven Rostedtabc9b562008-12-02 15:34:06 -0500374{
Steven Rostedt044fa782008-12-02 23:50:03 -0500375 local_set(&bpage->commit, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -0500376}
377
Steven Rostedt474d32b2009-03-03 19:51:40 -0500378/**
379 * ring_buffer_page_len - the size of data on the page.
380 * @page: The page to read
381 *
382 * Returns the amount of data on the page, including buffer page header.
383 */
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500384size_t ring_buffer_page_len(void *page)
385{
Steven Rostedt474d32b2009-03-03 19:51:40 -0500386 return local_read(&((struct buffer_data_page *)page)->commit)
387 + BUF_PAGE_HDR_SIZE;
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500388}
389
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400390/*
Steven Rostedted568292008-09-29 23:02:40 -0400391 * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing
392 * this issue out.
393 */
Andrew Morton34a148b2009-01-09 12:27:09 -0800394static void free_buffer_page(struct buffer_page *bpage)
Steven Rostedted568292008-09-29 23:02:40 -0400395{
Andrew Morton34a148b2009-01-09 12:27:09 -0800396 free_page((unsigned long)bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400397 kfree(bpage);
Steven Rostedted568292008-09-29 23:02:40 -0400398}
399
400/*
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400401 * We need to fit the time_stamp delta into 27 bits.
402 */
403static inline int test_time_stamp(u64 delta)
404{
405 if (delta & TS_DELTA_TEST)
406 return 1;
407 return 0;
408}
409
Steven Rostedt474d32b2009-03-03 19:51:40 -0500410#define BUF_PAGE_SIZE (PAGE_SIZE - BUF_PAGE_HDR_SIZE)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400411
Steven Rostedtbe957c42009-05-11 14:42:53 -0400412/* Max payload is BUF_PAGE_SIZE - header (8bytes) */
413#define BUF_MAX_DATA_SIZE (BUF_PAGE_SIZE - (sizeof(u32) * 2))
414
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400415int ring_buffer_print_page_header(struct trace_seq *s)
416{
417 struct buffer_data_page field;
418 int ret;
419
420 ret = trace_seq_printf(s, "\tfield: u64 timestamp;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500421 "offset:0;\tsize:%u;\tsigned:%u;\n",
422 (unsigned int)sizeof(field.time_stamp),
423 (unsigned int)is_signed_type(u64));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400424
425 ret = trace_seq_printf(s, "\tfield: local_t commit;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500426 "offset:%u;\tsize:%u;\tsigned:%u;\n",
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400427 (unsigned int)offsetof(typeof(field), commit),
Tom Zanussi26a50742009-10-06 01:09:50 -0500428 (unsigned int)sizeof(field.commit),
429 (unsigned int)is_signed_type(long));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400430
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400431 ret = trace_seq_printf(s, "\tfield: int overwrite;\t"
432 "offset:%u;\tsize:%u;\tsigned:%u;\n",
433 (unsigned int)offsetof(typeof(field), commit),
434 1,
435 (unsigned int)is_signed_type(long));
436
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400437 ret = trace_seq_printf(s, "\tfield: char data;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500438 "offset:%u;\tsize:%u;\tsigned:%u;\n",
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400439 (unsigned int)offsetof(typeof(field), data),
Tom Zanussi26a50742009-10-06 01:09:50 -0500440 (unsigned int)BUF_PAGE_SIZE,
441 (unsigned int)is_signed_type(char));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400442
443 return ret;
444}
445
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500446struct rb_irq_work {
447 struct irq_work work;
448 wait_queue_head_t waiters;
449 bool waiters_pending;
450};
451
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400452/*
453 * head_page == tail_page && head == tail then buffer is empty.
454 */
455struct ring_buffer_per_cpu {
456 int cpu;
Richard Kennedy985023d2010-03-25 11:27:36 +0000457 atomic_t record_disabled;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400458 struct ring_buffer *buffer;
Thomas Gleixner5389f6f2009-07-25 17:13:33 +0200459 raw_spinlock_t reader_lock; /* serialize readers */
Thomas Gleixner445c8952009-12-02 19:49:50 +0100460 arch_spinlock_t lock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400461 struct lock_class_key lock_key;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -0800462 unsigned int nr_pages;
Steven Rostedt3adc54f2009-03-30 15:32:01 -0400463 struct list_head *pages;
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400464 struct buffer_page *head_page; /* read from head */
465 struct buffer_page *tail_page; /* write to tail */
Wenji Huangc3706f02009-02-10 01:03:18 -0500466 struct buffer_page *commit_page; /* committed pages */
Steven Rostedtd7690412008-10-01 00:29:53 -0400467 struct buffer_page *reader_page;
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400468 unsigned long lost_events;
469 unsigned long last_overrun;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -0700470 local_t entries_bytes;
Steven Rostedte4906ef2009-04-30 20:49:44 -0400471 local_t entries;
Slava Pestov884bfe82011-07-15 14:23:58 -0700472 local_t overrun;
473 local_t commit_overrun;
474 local_t dropped_events;
Steven Rostedtfa743952009-06-16 12:37:57 -0400475 local_t committing;
476 local_t commits;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400477 unsigned long read;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -0700478 unsigned long read_bytes;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400479 u64 write_stamp;
480 u64 read_stamp;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -0800481 /* ring buffer pages to update, > 0 to add, < 0 to remove */
482 int nr_pages_to_update;
483 struct list_head new_pages; /* new pages to add */
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -0700484 struct work_struct update_pages_work;
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -0700485 struct completion update_done;
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500486
487 struct rb_irq_work irq_work;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400488};
489
490struct ring_buffer {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400491 unsigned flags;
492 int cpus;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400493 atomic_t record_disabled;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -0700494 atomic_t resize_disabled;
Arnaldo Carvalho de Melo00f62f62009-02-09 17:04:06 -0200495 cpumask_var_t cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400496
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +0200497 struct lock_class_key *reader_lock_key;
498
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400499 struct mutex mutex;
500
501 struct ring_buffer_per_cpu **buffers;
Steven Rostedt554f7862009-03-11 22:00:13 -0400502
Steven Rostedt59222ef2009-03-12 11:46:03 -0400503#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400504 struct notifier_block cpu_notify;
505#endif
Steven Rostedt37886f62009-03-17 17:22:06 -0400506 u64 (*clock)(void);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500507
508 struct rb_irq_work irq_work;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400509};
510
511struct ring_buffer_iter {
512 struct ring_buffer_per_cpu *cpu_buffer;
513 unsigned long head;
514 struct buffer_page *head_page;
Steven Rostedt492a74f2010-01-25 15:17:47 -0500515 struct buffer_page *cache_reader_page;
516 unsigned long cache_read;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400517 u64 read_stamp;
518};
519
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -0500520/*
521 * rb_wake_up_waiters - wake up tasks waiting for ring buffer input
522 *
523 * Schedules a delayed work to wake up any task that is blocked on the
524 * ring buffer waiters queue.
525 */
526static void rb_wake_up_waiters(struct irq_work *work)
527{
528 struct rb_irq_work *rbwork = container_of(work, struct rb_irq_work, work);
529
530 wake_up_all(&rbwork->waiters);
531}
532
533/**
534 * ring_buffer_wait - wait for input to the ring buffer
535 * @buffer: buffer to wait on
536 * @cpu: the cpu buffer to wait on
537 *
538 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
539 * as data is added to any of the @buffer's cpu buffers. Otherwise
540 * it will wait for data to be added to a specific cpu buffer.
541 */
542void ring_buffer_wait(struct ring_buffer *buffer, int cpu)
543{
544 struct ring_buffer_per_cpu *cpu_buffer;
545 DEFINE_WAIT(wait);
546 struct rb_irq_work *work;
547
548 /*
549 * Depending on what the caller is waiting for, either any
550 * data in any cpu buffer, or a specific buffer, put the
551 * caller on the appropriate wait queue.
552 */
553 if (cpu == RING_BUFFER_ALL_CPUS)
554 work = &buffer->irq_work;
555 else {
556 cpu_buffer = buffer->buffers[cpu];
557 work = &cpu_buffer->irq_work;
558 }
559
560
561 prepare_to_wait(&work->waiters, &wait, TASK_INTERRUPTIBLE);
562
563 /*
564 * The events can happen in critical sections where
565 * checking a work queue can cause deadlocks.
566 * After adding a task to the queue, this flag is set
567 * only to notify events to try to wake up the queue
568 * using irq_work.
569 *
570 * We don't clear it even if the buffer is no longer
571 * empty. The flag only causes the next event to run
572 * irq_work to do the work queue wake up. The worse
573 * that can happen if we race with !trace_empty() is that
574 * an event will cause an irq_work to try to wake up
575 * an empty queue.
576 *
577 * There's no reason to protect this flag either, as
578 * the work queue and irq_work logic will do the necessary
579 * synchronization for the wake ups. The only thing
580 * that is necessary is that the wake up happens after
581 * a task has been queued. It's OK for spurious wake ups.
582 */
583 work->waiters_pending = true;
584
585 if ((cpu == RING_BUFFER_ALL_CPUS && ring_buffer_empty(buffer)) ||
586 (cpu != RING_BUFFER_ALL_CPUS && ring_buffer_empty_cpu(buffer, cpu)))
587 schedule();
588
589 finish_wait(&work->waiters, &wait);
590}
591
592/**
593 * ring_buffer_poll_wait - poll on buffer input
594 * @buffer: buffer to wait on
595 * @cpu: the cpu buffer to wait on
596 * @filp: the file descriptor
597 * @poll_table: The poll descriptor
598 *
599 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
600 * as data is added to any of the @buffer's cpu buffers. Otherwise
601 * it will wait for data to be added to a specific cpu buffer.
602 *
603 * Returns POLLIN | POLLRDNORM if data exists in the buffers,
604 * zero otherwise.
605 */
606int ring_buffer_poll_wait(struct ring_buffer *buffer, int cpu,
607 struct file *filp, poll_table *poll_table)
608{
609 struct ring_buffer_per_cpu *cpu_buffer;
610 struct rb_irq_work *work;
611
612 if ((cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer)) ||
613 (cpu != RING_BUFFER_ALL_CPUS && !ring_buffer_empty_cpu(buffer, cpu)))
614 return POLLIN | POLLRDNORM;
615
616 if (cpu == RING_BUFFER_ALL_CPUS)
617 work = &buffer->irq_work;
618 else {
619 cpu_buffer = buffer->buffers[cpu];
620 work = &cpu_buffer->irq_work;
621 }
622
623 work->waiters_pending = true;
624 poll_wait(filp, &work->waiters, poll_table);
625
626 if ((cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer)) ||
627 (cpu != RING_BUFFER_ALL_CPUS && !ring_buffer_empty_cpu(buffer, cpu)))
628 return POLLIN | POLLRDNORM;
629 return 0;
630}
631
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500632/* buffer may be either ring_buffer or ring_buffer_per_cpu */
Steven Rostedt077c5402009-09-03 19:53:46 -0400633#define RB_WARN_ON(b, cond) \
634 ({ \
635 int _____ret = unlikely(cond); \
636 if (_____ret) { \
637 if (__same_type(*(b), struct ring_buffer_per_cpu)) { \
638 struct ring_buffer_per_cpu *__b = \
639 (void *)b; \
640 atomic_inc(&__b->buffer->record_disabled); \
641 } else \
642 atomic_inc(&b->record_disabled); \
643 WARN_ON(1); \
644 } \
645 _____ret; \
Steven Rostedt3e89c7b2008-11-11 15:28:41 -0500646 })
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500647
Steven Rostedt37886f62009-03-17 17:22:06 -0400648/* Up this if you want to test the TIME_EXTENTS and normalization */
649#define DEBUG_SHIFT 0
650
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400651static inline u64 rb_time_stamp(struct ring_buffer *buffer)
Steven Rostedt88eb0122009-05-11 16:28:23 -0400652{
653 /* shift to debug/test normalization and TIME_EXTENTS */
654 return buffer->clock() << DEBUG_SHIFT;
655}
656
Steven Rostedt37886f62009-03-17 17:22:06 -0400657u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu)
658{
659 u64 time;
660
661 preempt_disable_notrace();
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400662 time = rb_time_stamp(buffer);
Steven Rostedt37886f62009-03-17 17:22:06 -0400663 preempt_enable_no_resched_notrace();
664
665 return time;
666}
667EXPORT_SYMBOL_GPL(ring_buffer_time_stamp);
668
669void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
670 int cpu, u64 *ts)
671{
672 /* Just stupid testing the normalize function and deltas */
673 *ts >>= DEBUG_SHIFT;
674}
675EXPORT_SYMBOL_GPL(ring_buffer_normalize_time_stamp);
676
Steven Rostedt77ae3652009-03-27 11:00:29 -0400677/*
678 * Making the ring buffer lockless makes things tricky.
679 * Although writes only happen on the CPU that they are on,
680 * and they only need to worry about interrupts. Reads can
681 * happen on any CPU.
682 *
683 * The reader page is always off the ring buffer, but when the
684 * reader finishes with a page, it needs to swap its page with
685 * a new one from the buffer. The reader needs to take from
686 * the head (writes go to the tail). But if a writer is in overwrite
687 * mode and wraps, it must push the head page forward.
688 *
689 * Here lies the problem.
690 *
691 * The reader must be careful to replace only the head page, and
692 * not another one. As described at the top of the file in the
693 * ASCII art, the reader sets its old page to point to the next
694 * page after head. It then sets the page after head to point to
695 * the old reader page. But if the writer moves the head page
696 * during this operation, the reader could end up with the tail.
697 *
698 * We use cmpxchg to help prevent this race. We also do something
699 * special with the page before head. We set the LSB to 1.
700 *
701 * When the writer must push the page forward, it will clear the
702 * bit that points to the head page, move the head, and then set
703 * the bit that points to the new head page.
704 *
705 * We also don't want an interrupt coming in and moving the head
706 * page on another writer. Thus we use the second LSB to catch
707 * that too. Thus:
708 *
709 * head->list->prev->next bit 1 bit 0
710 * ------- -------
711 * Normal page 0 0
712 * Points to head page 0 1
713 * New head page 1 0
714 *
715 * Note we can not trust the prev pointer of the head page, because:
716 *
717 * +----+ +-----+ +-----+
718 * | |------>| T |---X--->| N |
719 * | |<------| | | |
720 * +----+ +-----+ +-----+
721 * ^ ^ |
722 * | +-----+ | |
723 * +----------| R |----------+ |
724 * | |<-----------+
725 * +-----+
726 *
727 * Key: ---X--> HEAD flag set in pointer
728 * T Tail page
729 * R Reader page
730 * N Next page
731 *
732 * (see __rb_reserve_next() to see where this happens)
733 *
734 * What the above shows is that the reader just swapped out
735 * the reader page with a page in the buffer, but before it
736 * could make the new header point back to the new page added
737 * it was preempted by a writer. The writer moved forward onto
738 * the new page added by the reader and is about to move forward
739 * again.
740 *
741 * You can see, it is legitimate for the previous pointer of
742 * the head (or any page) not to point back to itself. But only
743 * temporarially.
744 */
745
746#define RB_PAGE_NORMAL 0UL
747#define RB_PAGE_HEAD 1UL
748#define RB_PAGE_UPDATE 2UL
749
750
751#define RB_FLAG_MASK 3UL
752
753/* PAGE_MOVED is not part of the mask */
754#define RB_PAGE_MOVED 4UL
755
756/*
757 * rb_list_head - remove any bit
758 */
759static struct list_head *rb_list_head(struct list_head *list)
760{
761 unsigned long val = (unsigned long)list;
762
763 return (struct list_head *)(val & ~RB_FLAG_MASK);
764}
765
766/*
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400767 * rb_is_head_page - test if the given page is the head page
Steven Rostedt77ae3652009-03-27 11:00:29 -0400768 *
769 * Because the reader may move the head_page pointer, we can
770 * not trust what the head page is (it may be pointing to
771 * the reader page). But if the next page is a header page,
772 * its flags will be non zero.
773 */
Jesper Juhl42b16b32011-01-17 00:09:38 +0100774static inline int
Steven Rostedt77ae3652009-03-27 11:00:29 -0400775rb_is_head_page(struct ring_buffer_per_cpu *cpu_buffer,
776 struct buffer_page *page, struct list_head *list)
777{
778 unsigned long val;
779
780 val = (unsigned long)list->next;
781
782 if ((val & ~RB_FLAG_MASK) != (unsigned long)&page->list)
783 return RB_PAGE_MOVED;
784
785 return val & RB_FLAG_MASK;
786}
787
788/*
789 * rb_is_reader_page
790 *
791 * The unique thing about the reader page, is that, if the
792 * writer is ever on it, the previous pointer never points
793 * back to the reader page.
794 */
795static int rb_is_reader_page(struct buffer_page *page)
796{
797 struct list_head *list = page->list.prev;
798
799 return rb_list_head(list->next) != &page->list;
800}
801
802/*
803 * rb_set_list_to_head - set a list_head to be pointing to head.
804 */
805static void rb_set_list_to_head(struct ring_buffer_per_cpu *cpu_buffer,
806 struct list_head *list)
807{
808 unsigned long *ptr;
809
810 ptr = (unsigned long *)&list->next;
811 *ptr |= RB_PAGE_HEAD;
812 *ptr &= ~RB_PAGE_UPDATE;
813}
814
815/*
816 * rb_head_page_activate - sets up head page
817 */
818static void rb_head_page_activate(struct ring_buffer_per_cpu *cpu_buffer)
819{
820 struct buffer_page *head;
821
822 head = cpu_buffer->head_page;
823 if (!head)
824 return;
825
826 /*
827 * Set the previous list pointer to have the HEAD flag.
828 */
829 rb_set_list_to_head(cpu_buffer, head->list.prev);
830}
831
832static void rb_list_head_clear(struct list_head *list)
833{
834 unsigned long *ptr = (unsigned long *)&list->next;
835
836 *ptr &= ~RB_FLAG_MASK;
837}
838
839/*
840 * rb_head_page_dactivate - clears head page ptr (for free list)
841 */
842static void
843rb_head_page_deactivate(struct ring_buffer_per_cpu *cpu_buffer)
844{
845 struct list_head *hd;
846
847 /* Go through the whole list and clear any pointers found. */
848 rb_list_head_clear(cpu_buffer->pages);
849
850 list_for_each(hd, cpu_buffer->pages)
851 rb_list_head_clear(hd);
852}
853
854static int rb_head_page_set(struct ring_buffer_per_cpu *cpu_buffer,
855 struct buffer_page *head,
856 struct buffer_page *prev,
857 int old_flag, int new_flag)
858{
859 struct list_head *list;
860 unsigned long val = (unsigned long)&head->list;
861 unsigned long ret;
862
863 list = &prev->list;
864
865 val &= ~RB_FLAG_MASK;
866
Steven Rostedt08a40812009-09-14 09:31:35 -0400867 ret = cmpxchg((unsigned long *)&list->next,
868 val | old_flag, val | new_flag);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400869
870 /* check if the reader took the page */
871 if ((ret & ~RB_FLAG_MASK) != val)
872 return RB_PAGE_MOVED;
873
874 return ret & RB_FLAG_MASK;
875}
876
877static int rb_head_page_set_update(struct ring_buffer_per_cpu *cpu_buffer,
878 struct buffer_page *head,
879 struct buffer_page *prev,
880 int old_flag)
881{
882 return rb_head_page_set(cpu_buffer, head, prev,
883 old_flag, RB_PAGE_UPDATE);
884}
885
886static int rb_head_page_set_head(struct ring_buffer_per_cpu *cpu_buffer,
887 struct buffer_page *head,
888 struct buffer_page *prev,
889 int old_flag)
890{
891 return rb_head_page_set(cpu_buffer, head, prev,
892 old_flag, RB_PAGE_HEAD);
893}
894
895static int rb_head_page_set_normal(struct ring_buffer_per_cpu *cpu_buffer,
896 struct buffer_page *head,
897 struct buffer_page *prev,
898 int old_flag)
899{
900 return rb_head_page_set(cpu_buffer, head, prev,
901 old_flag, RB_PAGE_NORMAL);
902}
903
904static inline void rb_inc_page(struct ring_buffer_per_cpu *cpu_buffer,
905 struct buffer_page **bpage)
906{
907 struct list_head *p = rb_list_head((*bpage)->list.next);
908
909 *bpage = list_entry(p, struct buffer_page, list);
910}
911
912static struct buffer_page *
913rb_set_head_page(struct ring_buffer_per_cpu *cpu_buffer)
914{
915 struct buffer_page *head;
916 struct buffer_page *page;
917 struct list_head *list;
918 int i;
919
920 if (RB_WARN_ON(cpu_buffer, !cpu_buffer->head_page))
921 return NULL;
922
923 /* sanity check */
924 list = cpu_buffer->pages;
925 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev->next) != list))
926 return NULL;
927
928 page = head = cpu_buffer->head_page;
929 /*
930 * It is possible that the writer moves the header behind
931 * where we started, and we miss in one loop.
932 * A second loop should grab the header, but we'll do
933 * three loops just because I'm paranoid.
934 */
935 for (i = 0; i < 3; i++) {
936 do {
937 if (rb_is_head_page(cpu_buffer, page, page->list.prev)) {
938 cpu_buffer->head_page = page;
939 return page;
940 }
941 rb_inc_page(cpu_buffer, &page);
942 } while (page != head);
943 }
944
945 RB_WARN_ON(cpu_buffer, 1);
946
947 return NULL;
948}
949
950static int rb_head_page_replace(struct buffer_page *old,
951 struct buffer_page *new)
952{
953 unsigned long *ptr = (unsigned long *)&old->list.prev->next;
954 unsigned long val;
955 unsigned long ret;
956
957 val = *ptr & ~RB_FLAG_MASK;
958 val |= RB_PAGE_HEAD;
959
Steven Rostedt08a40812009-09-14 09:31:35 -0400960 ret = cmpxchg(ptr, val, (unsigned long)&new->list);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400961
962 return ret == val;
963}
964
965/*
966 * rb_tail_page_update - move the tail page forward
967 *
968 * Returns 1 if moved tail page, 0 if someone else did.
969 */
970static int rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
971 struct buffer_page *tail_page,
972 struct buffer_page *next_page)
973{
974 struct buffer_page *old_tail;
975 unsigned long old_entries;
976 unsigned long old_write;
977 int ret = 0;
978
979 /*
980 * The tail page now needs to be moved forward.
981 *
982 * We need to reset the tail page, but without messing
983 * with possible erasing of data brought in by interrupts
984 * that have moved the tail page and are currently on it.
985 *
986 * We add a counter to the write field to denote this.
987 */
988 old_write = local_add_return(RB_WRITE_INTCNT, &next_page->write);
989 old_entries = local_add_return(RB_WRITE_INTCNT, &next_page->entries);
990
991 /*
992 * Just make sure we have seen our old_write and synchronize
993 * with any interrupts that come in.
994 */
995 barrier();
996
997 /*
998 * If the tail page is still the same as what we think
999 * it is, then it is up to us to update the tail
1000 * pointer.
1001 */
1002 if (tail_page == cpu_buffer->tail_page) {
1003 /* Zero the write counter */
1004 unsigned long val = old_write & ~RB_WRITE_MASK;
1005 unsigned long eval = old_entries & ~RB_WRITE_MASK;
1006
1007 /*
1008 * This will only succeed if an interrupt did
1009 * not come in and change it. In which case, we
1010 * do not want to modify it.
Lai Jiangshanda706d82009-07-15 16:27:30 +08001011 *
1012 * We add (void) to let the compiler know that we do not care
1013 * about the return value of these functions. We use the
1014 * cmpxchg to only update if an interrupt did not already
1015 * do it for us. If the cmpxchg fails, we don't care.
Steven Rostedt77ae3652009-03-27 11:00:29 -04001016 */
Lai Jiangshanda706d82009-07-15 16:27:30 +08001017 (void)local_cmpxchg(&next_page->write, old_write, val);
1018 (void)local_cmpxchg(&next_page->entries, old_entries, eval);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001019
1020 /*
1021 * No need to worry about races with clearing out the commit.
1022 * it only can increment when a commit takes place. But that
1023 * only happens in the outer most nested commit.
1024 */
1025 local_set(&next_page->page->commit, 0);
1026
1027 old_tail = cmpxchg(&cpu_buffer->tail_page,
1028 tail_page, next_page);
1029
1030 if (old_tail == tail_page)
1031 ret = 1;
1032 }
1033
1034 return ret;
1035}
1036
1037static int rb_check_bpage(struct ring_buffer_per_cpu *cpu_buffer,
1038 struct buffer_page *bpage)
1039{
1040 unsigned long val = (unsigned long)bpage;
1041
1042 if (RB_WARN_ON(cpu_buffer, val & RB_FLAG_MASK))
1043 return 1;
1044
1045 return 0;
1046}
1047
1048/**
1049 * rb_check_list - make sure a pointer to a list has the last bits zero
1050 */
1051static int rb_check_list(struct ring_buffer_per_cpu *cpu_buffer,
1052 struct list_head *list)
1053{
1054 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev) != list->prev))
1055 return 1;
1056 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->next) != list->next))
1057 return 1;
1058 return 0;
1059}
1060
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001061/**
1062 * check_pages - integrity check of buffer pages
1063 * @cpu_buffer: CPU buffer with pages to test
1064 *
Wenji Huangc3706f02009-02-10 01:03:18 -05001065 * As a safety measure we check to make sure the data pages have not
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001066 * been corrupted.
1067 */
1068static int rb_check_pages(struct ring_buffer_per_cpu *cpu_buffer)
1069{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001070 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001071 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001072
Steven Rostedt308f7ee2012-05-16 19:46:32 -04001073 /* Reset the head page if it exists */
1074 if (cpu_buffer->head_page)
1075 rb_set_head_page(cpu_buffer);
1076
Steven Rostedt77ae3652009-03-27 11:00:29 -04001077 rb_head_page_deactivate(cpu_buffer);
1078
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001079 if (RB_WARN_ON(cpu_buffer, head->next->prev != head))
1080 return -1;
1081 if (RB_WARN_ON(cpu_buffer, head->prev->next != head))
1082 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001083
Steven Rostedt77ae3652009-03-27 11:00:29 -04001084 if (rb_check_list(cpu_buffer, head))
1085 return -1;
1086
Steven Rostedt044fa782008-12-02 23:50:03 -05001087 list_for_each_entry_safe(bpage, tmp, head, list) {
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001088 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001089 bpage->list.next->prev != &bpage->list))
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001090 return -1;
1091 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001092 bpage->list.prev->next != &bpage->list))
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05001093 return -1;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001094 if (rb_check_list(cpu_buffer, &bpage->list))
1095 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001096 }
1097
Steven Rostedt77ae3652009-03-27 11:00:29 -04001098 rb_head_page_activate(cpu_buffer);
1099
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001100 return 0;
1101}
1102
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001103static int __rb_allocate_pages(int nr_pages, struct list_head *pages, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001104{
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001105 int i;
Steven Rostedt044fa782008-12-02 23:50:03 -05001106 struct buffer_page *bpage, *tmp;
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001107
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001108 for (i = 0; i < nr_pages; i++) {
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001109 struct page *page;
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001110 /*
1111 * __GFP_NORETRY flag makes sure that the allocation fails
1112 * gracefully without invoking oom-killer and the system is
1113 * not destabilized.
1114 */
Steven Rostedt044fa782008-12-02 23:50:03 -05001115 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001116 GFP_KERNEL | __GFP_NORETRY,
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001117 cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001118 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001119 goto free_pages;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001120
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001121 list_add(&bpage->list, pages);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001122
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001123 page = alloc_pages_node(cpu_to_node(cpu),
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001124 GFP_KERNEL | __GFP_NORETRY, 0);
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001125 if (!page)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001126 goto free_pages;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001127 bpage->page = page_address(page);
Steven Rostedt044fa782008-12-02 23:50:03 -05001128 rb_init_page(bpage->page);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001129 }
1130
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001131 return 0;
1132
1133free_pages:
1134 list_for_each_entry_safe(bpage, tmp, pages, list) {
1135 list_del_init(&bpage->list);
1136 free_buffer_page(bpage);
1137 }
1138
1139 return -ENOMEM;
1140}
1141
1142static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
1143 unsigned nr_pages)
1144{
1145 LIST_HEAD(pages);
1146
1147 WARN_ON(!nr_pages);
1148
1149 if (__rb_allocate_pages(nr_pages, &pages, cpu_buffer->cpu))
1150 return -ENOMEM;
1151
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001152 /*
1153 * The ring buffer page list is a circular list that does not
1154 * start and end with a list head. All page list items point to
1155 * other pages.
1156 */
1157 cpu_buffer->pages = pages.next;
1158 list_del(&pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001159
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001160 cpu_buffer->nr_pages = nr_pages;
1161
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001162 rb_check_pages(cpu_buffer);
1163
1164 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001165}
1166
1167static struct ring_buffer_per_cpu *
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001168rb_allocate_cpu_buffer(struct ring_buffer *buffer, int nr_pages, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001169{
1170 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt044fa782008-12-02 23:50:03 -05001171 struct buffer_page *bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001172 struct page *page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001173 int ret;
1174
1175 cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
1176 GFP_KERNEL, cpu_to_node(cpu));
1177 if (!cpu_buffer)
1178 return NULL;
1179
1180 cpu_buffer->cpu = cpu;
1181 cpu_buffer->buffer = buffer;
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001182 raw_spin_lock_init(&cpu_buffer->reader_lock);
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001183 lockdep_set_class(&cpu_buffer->reader_lock, buffer->reader_lock_key);
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001184 cpu_buffer->lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001185 INIT_WORK(&cpu_buffer->update_pages_work, update_pages_handler);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001186 init_completion(&cpu_buffer->update_done);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001187 init_irq_work(&cpu_buffer->irq_work.work, rb_wake_up_waiters);
Steven Rostedt (Red Hat)f1dc6722013-03-04 17:33:05 -05001188 init_waitqueue_head(&cpu_buffer->irq_work.waiters);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001189
Steven Rostedt044fa782008-12-02 23:50:03 -05001190 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001191 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001192 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001193 goto fail_free_buffer;
1194
Steven Rostedt77ae3652009-03-27 11:00:29 -04001195 rb_check_bpage(cpu_buffer, bpage);
1196
Steven Rostedt044fa782008-12-02 23:50:03 -05001197 cpu_buffer->reader_page = bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001198 page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
1199 if (!page)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001200 goto fail_free_reader;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07001201 bpage->page = page_address(page);
Steven Rostedt044fa782008-12-02 23:50:03 -05001202 rb_init_page(bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001203
Steven Rostedtd7690412008-10-01 00:29:53 -04001204 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Vaibhav Nagarnaik44b99462012-06-22 11:50:05 -07001205 INIT_LIST_HEAD(&cpu_buffer->new_pages);
Steven Rostedtd7690412008-10-01 00:29:53 -04001206
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001207 ret = rb_allocate_pages(cpu_buffer, nr_pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001208 if (ret < 0)
Steven Rostedtd7690412008-10-01 00:29:53 -04001209 goto fail_free_reader;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001210
1211 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001212 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001213 cpu_buffer->tail_page = cpu_buffer->commit_page = cpu_buffer->head_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001214
Steven Rostedt77ae3652009-03-27 11:00:29 -04001215 rb_head_page_activate(cpu_buffer);
1216
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001217 return cpu_buffer;
1218
Steven Rostedtd7690412008-10-01 00:29:53 -04001219 fail_free_reader:
1220 free_buffer_page(cpu_buffer->reader_page);
1221
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001222 fail_free_buffer:
1223 kfree(cpu_buffer);
1224 return NULL;
1225}
1226
1227static void rb_free_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
1228{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001229 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001230 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001231
Steven Rostedtd7690412008-10-01 00:29:53 -04001232 free_buffer_page(cpu_buffer->reader_page);
1233
Steven Rostedt77ae3652009-03-27 11:00:29 -04001234 rb_head_page_deactivate(cpu_buffer);
1235
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001236 if (head) {
1237 list_for_each_entry_safe(bpage, tmp, head, list) {
1238 list_del_init(&bpage->list);
1239 free_buffer_page(bpage);
1240 }
1241 bpage = list_entry(head, struct buffer_page, list);
Steven Rostedt044fa782008-12-02 23:50:03 -05001242 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001243 }
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001244
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001245 kfree(cpu_buffer);
1246}
1247
Steven Rostedt59222ef2009-03-12 11:46:03 -04001248#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01001249static int rb_cpu_notify(struct notifier_block *self,
1250 unsigned long action, void *hcpu);
Steven Rostedt554f7862009-03-11 22:00:13 -04001251#endif
1252
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001253/**
1254 * ring_buffer_alloc - allocate a new ring_buffer
Robert Richter68814b52008-11-24 12:24:12 +01001255 * @size: the size in bytes per cpu that is needed.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001256 * @flags: attributes to set for the ring buffer.
1257 *
1258 * Currently the only flag that is available is the RB_FL_OVERWRITE
1259 * flag. This flag means that the buffer will overwrite old data
1260 * when the buffer wraps. If this flag is not set, the buffer will
1261 * drop data when the tail hits the head.
1262 */
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001263struct ring_buffer *__ring_buffer_alloc(unsigned long size, unsigned flags,
1264 struct lock_class_key *key)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001265{
1266 struct ring_buffer *buffer;
1267 int bsize;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001268 int cpu, nr_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001269
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001270 /* keep it in its own cache line */
1271 buffer = kzalloc(ALIGN(sizeof(*buffer), cache_line_size()),
1272 GFP_KERNEL);
1273 if (!buffer)
1274 return NULL;
1275
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301276 if (!alloc_cpumask_var(&buffer->cpumask, GFP_KERNEL))
1277 goto fail_free_buffer;
1278
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001279 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001280 buffer->flags = flags;
Steven Rostedt37886f62009-03-17 17:22:06 -04001281 buffer->clock = trace_clock_local;
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001282 buffer->reader_lock_key = key;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001283
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001284 init_irq_work(&buffer->irq_work.work, rb_wake_up_waiters);
Steven Rostedt (Red Hat)f1dc6722013-03-04 17:33:05 -05001285 init_waitqueue_head(&buffer->irq_work.waiters);
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05001286
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001287 /* need at least two pages */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001288 if (nr_pages < 2)
1289 nr_pages = 2;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001290
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +01001291 /*
1292 * In case of non-hotplug cpu, if the ring-buffer is allocated
1293 * in early initcall, it will not be notified of secondary cpus.
1294 * In that off case, we need to allocate for all possible cpus.
1295 */
1296#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001297 get_online_cpus();
1298 cpumask_copy(buffer->cpumask, cpu_online_mask);
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +01001299#else
1300 cpumask_copy(buffer->cpumask, cpu_possible_mask);
1301#endif
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001302 buffer->cpus = nr_cpu_ids;
1303
1304 bsize = sizeof(void *) * nr_cpu_ids;
1305 buffer->buffers = kzalloc(ALIGN(bsize, cache_line_size()),
1306 GFP_KERNEL);
1307 if (!buffer->buffers)
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301308 goto fail_free_cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001309
1310 for_each_buffer_cpu(buffer, cpu) {
1311 buffer->buffers[cpu] =
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001312 rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001313 if (!buffer->buffers[cpu])
1314 goto fail_free_buffers;
1315 }
1316
Steven Rostedt59222ef2009-03-12 11:46:03 -04001317#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001318 buffer->cpu_notify.notifier_call = rb_cpu_notify;
1319 buffer->cpu_notify.priority = 0;
1320 register_cpu_notifier(&buffer->cpu_notify);
1321#endif
1322
1323 put_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001324 mutex_init(&buffer->mutex);
1325
1326 return buffer;
1327
1328 fail_free_buffers:
1329 for_each_buffer_cpu(buffer, cpu) {
1330 if (buffer->buffers[cpu])
1331 rb_free_cpu_buffer(buffer->buffers[cpu]);
1332 }
1333 kfree(buffer->buffers);
1334
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301335 fail_free_cpumask:
1336 free_cpumask_var(buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -04001337 put_online_cpus();
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301338
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001339 fail_free_buffer:
1340 kfree(buffer);
1341 return NULL;
1342}
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001343EXPORT_SYMBOL_GPL(__ring_buffer_alloc);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001344
1345/**
1346 * ring_buffer_free - free a ring buffer.
1347 * @buffer: the buffer to free.
1348 */
1349void
1350ring_buffer_free(struct ring_buffer *buffer)
1351{
1352 int cpu;
1353
Steven Rostedt554f7862009-03-11 22:00:13 -04001354 get_online_cpus();
1355
Steven Rostedt59222ef2009-03-12 11:46:03 -04001356#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001357 unregister_cpu_notifier(&buffer->cpu_notify);
1358#endif
1359
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001360 for_each_buffer_cpu(buffer, cpu)
1361 rb_free_cpu_buffer(buffer->buffers[cpu]);
1362
Steven Rostedt554f7862009-03-11 22:00:13 -04001363 put_online_cpus();
1364
Eric Dumazetbd3f0222009-08-07 12:49:29 +02001365 kfree(buffer->buffers);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301366 free_cpumask_var(buffer->cpumask);
1367
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001368 kfree(buffer);
1369}
Robert Richterc4f50182008-12-11 16:49:22 +01001370EXPORT_SYMBOL_GPL(ring_buffer_free);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001371
Steven Rostedt37886f62009-03-17 17:22:06 -04001372void ring_buffer_set_clock(struct ring_buffer *buffer,
1373 u64 (*clock)(void))
1374{
1375 buffer->clock = clock;
1376}
1377
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001378static void rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer);
1379
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001380static inline unsigned long rb_page_entries(struct buffer_page *bpage)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001381{
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001382 return local_read(&bpage->entries) & RB_WRITE_MASK;
1383}
1384
1385static inline unsigned long rb_page_write(struct buffer_page *bpage)
1386{
1387 return local_read(&bpage->write) & RB_WRITE_MASK;
1388}
1389
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001390static int
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001391rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned int nr_pages)
1392{
1393 struct list_head *tail_page, *to_remove, *next_page;
1394 struct buffer_page *to_remove_page, *tmp_iter_page;
1395 struct buffer_page *last_page, *first_page;
1396 unsigned int nr_removed;
1397 unsigned long head_bit;
1398 int page_entries;
1399
1400 head_bit = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001401
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001402 raw_spin_lock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001403 atomic_inc(&cpu_buffer->record_disabled);
1404 /*
1405 * We don't race with the readers since we have acquired the reader
1406 * lock. We also don't race with writers after disabling recording.
1407 * This makes it easy to figure out the first and the last page to be
1408 * removed from the list. We unlink all the pages in between including
1409 * the first and last pages. This is done in a busy loop so that we
1410 * lose the least number of traces.
1411 * The pages are freed after we restart recording and unlock readers.
1412 */
1413 tail_page = &cpu_buffer->tail_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001414
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001415 /*
1416 * tail page might be on reader page, we remove the next page
1417 * from the ring buffer
1418 */
1419 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
1420 tail_page = rb_list_head(tail_page->next);
1421 to_remove = tail_page;
1422
1423 /* start of pages to remove */
1424 first_page = list_entry(rb_list_head(to_remove->next),
1425 struct buffer_page, list);
1426
1427 for (nr_removed = 0; nr_removed < nr_pages; nr_removed++) {
1428 to_remove = rb_list_head(to_remove)->next;
1429 head_bit |= (unsigned long)to_remove & RB_PAGE_HEAD;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001430 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001431
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001432 next_page = rb_list_head(to_remove)->next;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001433
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001434 /*
1435 * Now we remove all pages between tail_page and next_page.
1436 * Make sure that we have head_bit value preserved for the
1437 * next page
1438 */
1439 tail_page->next = (struct list_head *)((unsigned long)next_page |
1440 head_bit);
1441 next_page = rb_list_head(next_page);
1442 next_page->prev = tail_page;
1443
1444 /* make sure pages points to a valid page in the ring buffer */
1445 cpu_buffer->pages = next_page;
1446
1447 /* update head page */
1448 if (head_bit)
1449 cpu_buffer->head_page = list_entry(next_page,
1450 struct buffer_page, list);
1451
1452 /*
1453 * change read pointer to make sure any read iterators reset
1454 * themselves
1455 */
1456 cpu_buffer->read = 0;
1457
1458 /* pages are removed, resume tracing and then free the pages */
1459 atomic_dec(&cpu_buffer->record_disabled);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001460 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001461
1462 RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages));
1463
1464 /* last buffer page to remove */
1465 last_page = list_entry(rb_list_head(to_remove), struct buffer_page,
1466 list);
1467 tmp_iter_page = first_page;
1468
1469 do {
1470 to_remove_page = tmp_iter_page;
1471 rb_inc_page(cpu_buffer, &tmp_iter_page);
1472
1473 /* update the counters */
1474 page_entries = rb_page_entries(to_remove_page);
1475 if (page_entries) {
1476 /*
1477 * If something was added to this page, it was full
1478 * since it is not the tail page. So we deduct the
1479 * bytes consumed in ring buffer from here.
Vaibhav Nagarnaik48fdc722012-06-29 12:31:41 -07001480 * Increment overrun to account for the lost events.
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001481 */
Vaibhav Nagarnaik48fdc722012-06-29 12:31:41 -07001482 local_add(page_entries, &cpu_buffer->overrun);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001483 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
1484 }
1485
1486 /*
1487 * We have already removed references to this list item, just
1488 * free up the buffer_page and its page
1489 */
1490 free_buffer_page(to_remove_page);
1491 nr_removed--;
1492
1493 } while (to_remove_page != last_page);
1494
1495 RB_WARN_ON(cpu_buffer, nr_removed);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001496
1497 return nr_removed == 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001498}
1499
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001500static int
1501rb_insert_pages(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001502{
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001503 struct list_head *pages = &cpu_buffer->new_pages;
1504 int retries, success;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001505
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001506 raw_spin_lock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001507 /*
1508 * We are holding the reader lock, so the reader page won't be swapped
1509 * in the ring buffer. Now we are racing with the writer trying to
1510 * move head page and the tail page.
1511 * We are going to adapt the reader page update process where:
1512 * 1. We first splice the start and end of list of new pages between
1513 * the head page and its previous page.
1514 * 2. We cmpxchg the prev_page->next to point from head page to the
1515 * start of new pages list.
1516 * 3. Finally, we update the head->prev to the end of new list.
1517 *
1518 * We will try this process 10 times, to make sure that we don't keep
1519 * spinning.
1520 */
1521 retries = 10;
1522 success = 0;
1523 while (retries--) {
1524 struct list_head *head_page, *prev_page, *r;
1525 struct list_head *last_page, *first_page;
1526 struct list_head *head_page_with_bit;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001527
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001528 head_page = &rb_set_head_page(cpu_buffer)->list;
Steven Rostedt54f7be52012-11-29 22:27:22 -05001529 if (!head_page)
1530 break;
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001531 prev_page = head_page->prev;
1532
1533 first_page = pages->next;
1534 last_page = pages->prev;
1535
1536 head_page_with_bit = (struct list_head *)
1537 ((unsigned long)head_page | RB_PAGE_HEAD);
1538
1539 last_page->next = head_page_with_bit;
1540 first_page->prev = prev_page;
1541
1542 r = cmpxchg(&prev_page->next, head_page_with_bit, first_page);
1543
1544 if (r == head_page_with_bit) {
1545 /*
1546 * yay, we replaced the page pointer to our new list,
1547 * now, we just have to update to head page's prev
1548 * pointer to point to end of list
1549 */
1550 head_page->prev = last_page;
1551 success = 1;
1552 break;
1553 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001554 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001555
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001556 if (success)
1557 INIT_LIST_HEAD(pages);
1558 /*
1559 * If we weren't successful in adding in new pages, warn and stop
1560 * tracing
1561 */
1562 RB_WARN_ON(cpu_buffer, !success);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02001563 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001564
1565 /* free pages if they weren't inserted */
1566 if (!success) {
1567 struct buffer_page *bpage, *tmp;
1568 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1569 list) {
1570 list_del_init(&bpage->list);
1571 free_buffer_page(bpage);
1572 }
1573 }
1574 return success;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001575}
1576
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001577static void rb_update_pages(struct ring_buffer_per_cpu *cpu_buffer)
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001578{
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001579 int success;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001580
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07001581 if (cpu_buffer->nr_pages_to_update > 0)
1582 success = rb_insert_pages(cpu_buffer);
1583 else
1584 success = rb_remove_pages(cpu_buffer,
1585 -cpu_buffer->nr_pages_to_update);
1586
1587 if (success)
1588 cpu_buffer->nr_pages += cpu_buffer->nr_pages_to_update;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001589}
1590
1591static void update_pages_handler(struct work_struct *work)
1592{
1593 struct ring_buffer_per_cpu *cpu_buffer = container_of(work,
1594 struct ring_buffer_per_cpu, update_pages_work);
1595 rb_update_pages(cpu_buffer);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001596 complete(&cpu_buffer->update_done);
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001597}
1598
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001599/**
1600 * ring_buffer_resize - resize the ring buffer
1601 * @buffer: the buffer to resize.
1602 * @size: the new size.
1603 *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001604 * Minimum size is 2 * BUF_PAGE_SIZE.
1605 *
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001606 * Returns 0 on success and < 0 on failure.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001607 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001608int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size,
1609 int cpu_id)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001610{
1611 struct ring_buffer_per_cpu *cpu_buffer;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001612 unsigned nr_pages;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001613 int cpu, err = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001614
Ingo Molnaree51a1d2008-11-13 14:58:31 +01001615 /*
1616 * Always succeed at resizing a non-existent buffer:
1617 */
1618 if (!buffer)
1619 return size;
1620
Steven Rostedt6a31e1f2012-05-23 15:35:17 -04001621 /* Make sure the requested buffer exists */
1622 if (cpu_id != RING_BUFFER_ALL_CPUS &&
1623 !cpumask_test_cpu(cpu_id, buffer->cpumask))
1624 return size;
1625
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001626 size = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1627 size *= BUF_PAGE_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001628
1629 /* we need a minimum of two pages */
1630 if (size < BUF_PAGE_SIZE * 2)
1631 size = BUF_PAGE_SIZE * 2;
1632
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001633 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1634
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001635 /*
1636 * Don't succeed if resizing is disabled, as a reader might be
1637 * manipulating the ring buffer and is expecting a sane state while
1638 * this is true.
1639 */
1640 if (atomic_read(&buffer->resize_disabled))
1641 return -EBUSY;
1642
1643 /* prevent another thread from changing buffer sizes */
1644 mutex_lock(&buffer->mutex);
1645
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001646 if (cpu_id == RING_BUFFER_ALL_CPUS) {
1647 /* calculate the pages to update */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001648 for_each_buffer_cpu(buffer, cpu) {
1649 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001650
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001651 cpu_buffer->nr_pages_to_update = nr_pages -
1652 cpu_buffer->nr_pages;
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001653 /*
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001654 * nothing more to do for removing pages or no update
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07001655 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001656 if (cpu_buffer->nr_pages_to_update <= 0)
1657 continue;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001658 /*
1659 * to add pages, make sure all new pages can be
1660 * allocated without receiving ENOMEM
1661 */
1662 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1663 if (__rb_allocate_pages(cpu_buffer->nr_pages_to_update,
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001664 &cpu_buffer->new_pages, cpu)) {
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001665 /* not enough memory for new pages */
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001666 err = -ENOMEM;
1667 goto out_err;
1668 }
1669 }
1670
1671 get_online_cpus();
1672 /*
1673 * Fire off all the required work handlers
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001674 * We can't schedule on offline CPUs, but it's not necessary
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001675 * since we can change their buffer sizes without any race.
1676 */
1677 for_each_buffer_cpu(buffer, cpu) {
1678 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001679 if (!cpu_buffer->nr_pages_to_update)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001680 continue;
1681
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001682 if (cpu_online(cpu))
1683 schedule_work_on(cpu,
1684 &cpu_buffer->update_pages_work);
1685 else
1686 rb_update_pages(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001687 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001688
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001689 /* wait for all the updates to complete */
1690 for_each_buffer_cpu(buffer, cpu) {
1691 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001692 if (!cpu_buffer->nr_pages_to_update)
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001693 continue;
1694
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001695 if (cpu_online(cpu))
1696 wait_for_completion(&cpu_buffer->update_done);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001697 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001698 }
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001699
1700 put_online_cpus();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001701 } else {
Vaibhav Nagarnaik8e49f412012-10-10 16:40:27 -07001702 /* Make sure this CPU has been intitialized */
1703 if (!cpumask_test_cpu(cpu_id, buffer->cpumask))
1704 goto out;
1705
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001706 cpu_buffer = buffer->buffers[cpu_id];
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001707
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001708 if (nr_pages == cpu_buffer->nr_pages)
1709 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001710
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001711 cpu_buffer->nr_pages_to_update = nr_pages -
1712 cpu_buffer->nr_pages;
1713
1714 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1715 if (cpu_buffer->nr_pages_to_update > 0 &&
1716 __rb_allocate_pages(cpu_buffer->nr_pages_to_update,
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001717 &cpu_buffer->new_pages, cpu_id)) {
1718 err = -ENOMEM;
1719 goto out_err;
1720 }
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001721
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001722 get_online_cpus();
1723
1724 if (cpu_online(cpu_id)) {
1725 schedule_work_on(cpu_id,
1726 &cpu_buffer->update_pages_work);
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001727 wait_for_completion(&cpu_buffer->update_done);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001728 } else
1729 rb_update_pages(cpu_buffer);
1730
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001731 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik05fdd702012-05-18 13:29:51 -07001732 put_online_cpus();
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001733 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001734
1735 out:
Steven Rostedt659f4512012-05-14 17:02:33 -04001736 /*
1737 * The ring buffer resize can happen with the ring buffer
1738 * enabled, so that the update disturbs the tracing as little
1739 * as possible. But if the buffer is disabled, we do not need
1740 * to worry about that, and we can take the time to verify
1741 * that the buffer is not corrupt.
1742 */
1743 if (atomic_read(&buffer->record_disabled)) {
1744 atomic_inc(&buffer->record_disabled);
1745 /*
1746 * Even though the buffer was disabled, we must make sure
1747 * that it is truly disabled before calling rb_check_pages.
1748 * There could have been a race between checking
1749 * record_disable and incrementing it.
1750 */
1751 synchronize_sched();
1752 for_each_buffer_cpu(buffer, cpu) {
1753 cpu_buffer = buffer->buffers[cpu];
1754 rb_check_pages(cpu_buffer);
1755 }
1756 atomic_dec(&buffer->record_disabled);
1757 }
1758
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001759 mutex_unlock(&buffer->mutex);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001760 return size;
1761
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001762 out_err:
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001763 for_each_buffer_cpu(buffer, cpu) {
1764 struct buffer_page *bpage, *tmp;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001765
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001766 cpu_buffer = buffer->buffers[cpu];
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001767 cpu_buffer->nr_pages_to_update = 0;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001768
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001769 if (list_empty(&cpu_buffer->new_pages))
1770 continue;
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001771
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001772 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1773 list) {
1774 list_del_init(&bpage->list);
1775 free_buffer_page(bpage);
1776 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001777 }
Vegard Nossum641d2f62008-11-18 19:22:13 +01001778 mutex_unlock(&buffer->mutex);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07001779 return err;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001780}
Robert Richterc4f50182008-12-11 16:49:22 +01001781EXPORT_SYMBOL_GPL(ring_buffer_resize);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001782
David Sharp750912f2010-12-08 13:46:47 -08001783void ring_buffer_change_overwrite(struct ring_buffer *buffer, int val)
1784{
1785 mutex_lock(&buffer->mutex);
1786 if (val)
1787 buffer->flags |= RB_FL_OVERWRITE;
1788 else
1789 buffer->flags &= ~RB_FL_OVERWRITE;
1790 mutex_unlock(&buffer->mutex);
1791}
1792EXPORT_SYMBOL_GPL(ring_buffer_change_overwrite);
1793
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001794static inline void *
Steven Rostedt044fa782008-12-02 23:50:03 -05001795__rb_data_page_index(struct buffer_data_page *bpage, unsigned index)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001796{
Steven Rostedt044fa782008-12-02 23:50:03 -05001797 return bpage->data + index;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001798}
1799
Steven Rostedt044fa782008-12-02 23:50:03 -05001800static inline void *__rb_page_index(struct buffer_page *bpage, unsigned index)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001801{
Steven Rostedt044fa782008-12-02 23:50:03 -05001802 return bpage->page->data + index;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001803}
1804
1805static inline struct ring_buffer_event *
Steven Rostedtd7690412008-10-01 00:29:53 -04001806rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001807{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001808 return __rb_page_index(cpu_buffer->reader_page,
1809 cpu_buffer->reader_page->read);
1810}
1811
1812static inline struct ring_buffer_event *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001813rb_iter_head_event(struct ring_buffer_iter *iter)
1814{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001815 return __rb_page_index(iter->head_page, iter->head);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001816}
1817
Steven Rostedtbf41a152008-10-04 02:00:59 -04001818static inline unsigned rb_page_commit(struct buffer_page *bpage)
1819{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001820 return local_read(&bpage->page->commit);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001821}
1822
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001823/* Size is determined by what has been committed */
Steven Rostedtbf41a152008-10-04 02:00:59 -04001824static inline unsigned rb_page_size(struct buffer_page *bpage)
1825{
1826 return rb_page_commit(bpage);
1827}
1828
1829static inline unsigned
1830rb_commit_index(struct ring_buffer_per_cpu *cpu_buffer)
1831{
1832 return rb_page_commit(cpu_buffer->commit_page);
1833}
1834
Steven Rostedtbf41a152008-10-04 02:00:59 -04001835static inline unsigned
1836rb_event_index(struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001837{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001838 unsigned long addr = (unsigned long)event;
1839
Steven Rostedt22f470f2009-06-11 09:29:58 -04001840 return (addr & ~PAGE_MASK) - BUF_PAGE_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001841}
1842
Steven Rostedt0f0c85f2009-05-11 16:08:00 -04001843static inline int
Steven Rostedtfa743952009-06-16 12:37:57 -04001844rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
1845 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001846{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001847 unsigned long addr = (unsigned long)event;
1848 unsigned long index;
1849
1850 index = rb_event_index(event);
1851 addr &= PAGE_MASK;
1852
1853 return cpu_buffer->commit_page->page == (void *)addr &&
1854 rb_commit_index(cpu_buffer) == index;
1855}
1856
Andrew Morton34a148b2009-01-09 12:27:09 -08001857static void
Steven Rostedtbf41a152008-10-04 02:00:59 -04001858rb_set_commit_to_write(struct ring_buffer_per_cpu *cpu_buffer)
1859{
Steven Rostedt77ae3652009-03-27 11:00:29 -04001860 unsigned long max_count;
1861
Steven Rostedtbf41a152008-10-04 02:00:59 -04001862 /*
1863 * We only race with interrupts and NMIs on this CPU.
1864 * If we own the commit event, then we can commit
1865 * all others that interrupted us, since the interruptions
1866 * are in stack format (they finish before they come
1867 * back to us). This allows us to do a simple loop to
1868 * assign the commit to the tail.
1869 */
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001870 again:
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08001871 max_count = cpu_buffer->nr_pages * 100;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001872
Steven Rostedtbf41a152008-10-04 02:00:59 -04001873 while (cpu_buffer->commit_page != cpu_buffer->tail_page) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001874 if (RB_WARN_ON(cpu_buffer, !(--max_count)))
1875 return;
1876 if (RB_WARN_ON(cpu_buffer,
1877 rb_is_reader_page(cpu_buffer->tail_page)))
1878 return;
1879 local_set(&cpu_buffer->commit_page->page->commit,
1880 rb_page_write(cpu_buffer->commit_page));
Steven Rostedtbf41a152008-10-04 02:00:59 -04001881 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001882 cpu_buffer->write_stamp =
1883 cpu_buffer->commit_page->page->time_stamp;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001884 /* add barrier to keep gcc from optimizing too much */
1885 barrier();
1886 }
1887 while (rb_commit_index(cpu_buffer) !=
1888 rb_page_write(cpu_buffer->commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001889
1890 local_set(&cpu_buffer->commit_page->page->commit,
1891 rb_page_write(cpu_buffer->commit_page));
1892 RB_WARN_ON(cpu_buffer,
1893 local_read(&cpu_buffer->commit_page->page->commit) &
1894 ~RB_WRITE_MASK);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001895 barrier();
1896 }
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001897
1898 /* again, keep gcc from optimizing */
1899 barrier();
1900
1901 /*
1902 * If an interrupt came in just after the first while loop
1903 * and pushed the tail page forward, we will be left with
1904 * a dangling commit that will never go forward.
1905 */
1906 if (unlikely(cpu_buffer->commit_page != cpu_buffer->tail_page))
1907 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001908}
1909
Steven Rostedtd7690412008-10-01 00:29:53 -04001910static void rb_reset_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001911{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001912 cpu_buffer->read_stamp = cpu_buffer->reader_page->page->time_stamp;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001913 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04001914}
1915
Andrew Morton34a148b2009-01-09 12:27:09 -08001916static void rb_inc_iter(struct ring_buffer_iter *iter)
Steven Rostedtd7690412008-10-01 00:29:53 -04001917{
1918 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1919
1920 /*
1921 * The iterator could be on the reader page (it starts there).
1922 * But the head could have moved, since the reader was
1923 * found. Check for this case and assign the iterator
1924 * to the head page instead of next.
1925 */
1926 if (iter->head_page == cpu_buffer->reader_page)
Steven Rostedt77ae3652009-03-27 11:00:29 -04001927 iter->head_page = rb_set_head_page(cpu_buffer);
Steven Rostedtd7690412008-10-01 00:29:53 -04001928 else
1929 rb_inc_page(cpu_buffer, &iter->head_page);
1930
Steven Rostedtabc9b562008-12-02 15:34:06 -05001931 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001932 iter->head = 0;
1933}
1934
Steven Rostedt69d1b832010-10-07 18:18:05 -04001935/* Slow path, do not inline */
1936static noinline struct ring_buffer_event *
1937rb_add_time_stamp(struct ring_buffer_event *event, u64 delta)
1938{
1939 event->type_len = RINGBUF_TYPE_TIME_EXTEND;
1940
1941 /* Not the first event on the page? */
1942 if (rb_event_index(event)) {
1943 event->time_delta = delta & TS_MASK;
1944 event->array[0] = delta >> TS_SHIFT;
1945 } else {
1946 /* nope, just zero it */
1947 event->time_delta = 0;
1948 event->array[0] = 0;
1949 }
1950
1951 return skip_time_extend(event);
1952}
1953
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001954/**
David Sharp01e3e712012-06-07 16:46:24 -07001955 * rb_update_event - update event type and data
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001956 * @event: the even to update
1957 * @type: the type of event
1958 * @length: the size of the event field in the ring buffer
1959 *
1960 * Update the type and data fields of the event. The length
1961 * is the actual size that is written to the ring buffer,
1962 * and with this, we can determine what to place into the
1963 * data field.
1964 */
Andrew Morton34a148b2009-01-09 12:27:09 -08001965static void
Steven Rostedt69d1b832010-10-07 18:18:05 -04001966rb_update_event(struct ring_buffer_per_cpu *cpu_buffer,
1967 struct ring_buffer_event *event, unsigned length,
1968 int add_timestamp, u64 delta)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001969{
Steven Rostedt69d1b832010-10-07 18:18:05 -04001970 /* Only a commit updates the timestamp */
1971 if (unlikely(!rb_event_is_commit(cpu_buffer, event)))
1972 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001973
Steven Rostedt69d1b832010-10-07 18:18:05 -04001974 /*
1975 * If we need to add a timestamp, then we
1976 * add it to the start of the resevered space.
1977 */
1978 if (unlikely(add_timestamp)) {
1979 event = rb_add_time_stamp(event, delta);
1980 length -= RB_LEN_TIME_EXTEND;
1981 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001982 }
Steven Rostedt69d1b832010-10-07 18:18:05 -04001983
1984 event->time_delta = delta;
1985 length -= RB_EVNT_HDR_SIZE;
1986 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT) {
1987 event->type_len = 0;
1988 event->array[0] = length;
1989 } else
1990 event->type_len = DIV_ROUND_UP(length, RB_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001991}
1992
Steven Rostedt77ae3652009-03-27 11:00:29 -04001993/*
1994 * rb_handle_head_page - writer hit the head page
1995 *
1996 * Returns: +1 to retry page
1997 * 0 to continue
1998 * -1 on error
1999 */
2000static int
2001rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer,
2002 struct buffer_page *tail_page,
2003 struct buffer_page *next_page)
2004{
2005 struct buffer_page *new_head;
2006 int entries;
2007 int type;
2008 int ret;
2009
2010 entries = rb_page_entries(next_page);
2011
2012 /*
2013 * The hard part is here. We need to move the head
2014 * forward, and protect against both readers on
2015 * other CPUs and writers coming in via interrupts.
2016 */
2017 type = rb_head_page_set_update(cpu_buffer, next_page, tail_page,
2018 RB_PAGE_HEAD);
2019
2020 /*
2021 * type can be one of four:
2022 * NORMAL - an interrupt already moved it for us
2023 * HEAD - we are the first to get here.
2024 * UPDATE - we are the interrupt interrupting
2025 * a current move.
2026 * MOVED - a reader on another CPU moved the next
2027 * pointer to its reader page. Give up
2028 * and try again.
2029 */
2030
2031 switch (type) {
2032 case RB_PAGE_HEAD:
2033 /*
2034 * We changed the head to UPDATE, thus
2035 * it is our responsibility to update
2036 * the counters.
2037 */
2038 local_add(entries, &cpu_buffer->overrun);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002039 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002040
2041 /*
2042 * The entries will be zeroed out when we move the
2043 * tail page.
2044 */
2045
2046 /* still more to do */
2047 break;
2048
2049 case RB_PAGE_UPDATE:
2050 /*
2051 * This is an interrupt that interrupt the
2052 * previous update. Still more to do.
2053 */
2054 break;
2055 case RB_PAGE_NORMAL:
2056 /*
2057 * An interrupt came in before the update
2058 * and processed this for us.
2059 * Nothing left to do.
2060 */
2061 return 1;
2062 case RB_PAGE_MOVED:
2063 /*
2064 * The reader is on another CPU and just did
2065 * a swap with our next_page.
2066 * Try again.
2067 */
2068 return 1;
2069 default:
2070 RB_WARN_ON(cpu_buffer, 1); /* WTF??? */
2071 return -1;
2072 }
2073
2074 /*
2075 * Now that we are here, the old head pointer is
2076 * set to UPDATE. This will keep the reader from
2077 * swapping the head page with the reader page.
2078 * The reader (on another CPU) will spin till
2079 * we are finished.
2080 *
2081 * We just need to protect against interrupts
2082 * doing the job. We will set the next pointer
2083 * to HEAD. After that, we set the old pointer
2084 * to NORMAL, but only if it was HEAD before.
2085 * otherwise we are an interrupt, and only
2086 * want the outer most commit to reset it.
2087 */
2088 new_head = next_page;
2089 rb_inc_page(cpu_buffer, &new_head);
2090
2091 ret = rb_head_page_set_head(cpu_buffer, new_head, next_page,
2092 RB_PAGE_NORMAL);
2093
2094 /*
2095 * Valid returns are:
2096 * HEAD - an interrupt came in and already set it.
2097 * NORMAL - One of two things:
2098 * 1) We really set it.
2099 * 2) A bunch of interrupts came in and moved
2100 * the page forward again.
2101 */
2102 switch (ret) {
2103 case RB_PAGE_HEAD:
2104 case RB_PAGE_NORMAL:
2105 /* OK */
2106 break;
2107 default:
2108 RB_WARN_ON(cpu_buffer, 1);
2109 return -1;
2110 }
2111
2112 /*
2113 * It is possible that an interrupt came in,
2114 * set the head up, then more interrupts came in
2115 * and moved it again. When we get back here,
2116 * the page would have been set to NORMAL but we
2117 * just set it back to HEAD.
2118 *
2119 * How do you detect this? Well, if that happened
2120 * the tail page would have moved.
2121 */
2122 if (ret == RB_PAGE_NORMAL) {
2123 /*
2124 * If the tail had moved passed next, then we need
2125 * to reset the pointer.
2126 */
2127 if (cpu_buffer->tail_page != tail_page &&
2128 cpu_buffer->tail_page != next_page)
2129 rb_head_page_set_normal(cpu_buffer, new_head,
2130 next_page,
2131 RB_PAGE_HEAD);
2132 }
2133
2134 /*
2135 * If this was the outer most commit (the one that
2136 * changed the original pointer from HEAD to UPDATE),
2137 * then it is up to us to reset it to NORMAL.
2138 */
2139 if (type == RB_PAGE_HEAD) {
2140 ret = rb_head_page_set_normal(cpu_buffer, next_page,
2141 tail_page,
2142 RB_PAGE_UPDATE);
2143 if (RB_WARN_ON(cpu_buffer,
2144 ret != RB_PAGE_UPDATE))
2145 return -1;
2146 }
2147
2148 return 0;
2149}
2150
Andrew Morton34a148b2009-01-09 12:27:09 -08002151static unsigned rb_calculate_event_length(unsigned length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002152{
2153 struct ring_buffer_event event; /* Used only for sizeof array */
2154
2155 /* zero length can cause confusions */
2156 if (!length)
2157 length = 1;
2158
Steven Rostedt22710482010-03-18 17:54:19 -04002159 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002160 length += sizeof(event.array[0]);
2161
2162 length += RB_EVNT_HDR_SIZE;
Steven Rostedt22710482010-03-18 17:54:19 -04002163 length = ALIGN(length, RB_ARCH_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002164
2165 return length;
2166}
2167
Steven Rostedtc7b09302009-06-11 11:12:00 -04002168static inline void
2169rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
2170 struct buffer_page *tail_page,
2171 unsigned long tail, unsigned long length)
2172{
2173 struct ring_buffer_event *event;
2174
2175 /*
2176 * Only the event that crossed the page boundary
2177 * must fill the old tail_page with padding.
2178 */
2179 if (tail >= BUF_PAGE_SIZE) {
Steven Rostedtb3230c82010-05-21 11:55:21 -04002180 /*
2181 * If the page was filled, then we still need
2182 * to update the real_end. Reset it to zero
2183 * and the reader will ignore it.
2184 */
2185 if (tail == BUF_PAGE_SIZE)
2186 tail_page->real_end = 0;
2187
Steven Rostedtc7b09302009-06-11 11:12:00 -04002188 local_sub(length, &tail_page->write);
2189 return;
2190 }
2191
2192 event = __rb_page_index(tail_page, tail);
Linus Torvaldsb0b70652009-06-20 10:56:46 -07002193 kmemcheck_annotate_bitfield(event, bitfield);
Steven Rostedtc7b09302009-06-11 11:12:00 -04002194
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002195 /* account for padding bytes */
2196 local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes);
2197
Steven Rostedtc7b09302009-06-11 11:12:00 -04002198 /*
Steven Rostedtff0ff842010-03-31 22:11:42 -04002199 * Save the original length to the meta data.
2200 * This will be used by the reader to add lost event
2201 * counter.
2202 */
2203 tail_page->real_end = tail;
2204
2205 /*
Steven Rostedtc7b09302009-06-11 11:12:00 -04002206 * If this event is bigger than the minimum size, then
2207 * we need to be careful that we don't subtract the
2208 * write counter enough to allow another writer to slip
2209 * in on this page.
2210 * We put in a discarded commit instead, to make sure
2211 * that this space is not used again.
2212 *
2213 * If we are less than the minimum size, we don't need to
2214 * worry about it.
2215 */
2216 if (tail > (BUF_PAGE_SIZE - RB_EVNT_MIN_SIZE)) {
2217 /* No room for any events */
2218
2219 /* Mark the rest of the page with padding */
2220 rb_event_set_padding(event);
2221
2222 /* Set the write back to the previous setting */
2223 local_sub(length, &tail_page->write);
2224 return;
2225 }
2226
2227 /* Put in a discarded event */
2228 event->array[0] = (BUF_PAGE_SIZE - tail) - RB_EVNT_HDR_SIZE;
2229 event->type_len = RINGBUF_TYPE_PADDING;
2230 /* time delta must be non zero */
2231 event->time_delta = 1;
Steven Rostedtc7b09302009-06-11 11:12:00 -04002232
2233 /* Set write to end of buffer */
2234 length = (tail + length) - BUF_PAGE_SIZE;
2235 local_sub(length, &tail_page->write);
2236}
Steven Rostedt6634ff22009-05-06 15:30:07 -04002237
Steven Rostedt747e94a2010-10-08 13:51:48 -04002238/*
2239 * This is the slow path, force gcc not to inline it.
2240 */
2241static noinline struct ring_buffer_event *
Steven Rostedt6634ff22009-05-06 15:30:07 -04002242rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
2243 unsigned long length, unsigned long tail,
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002244 struct buffer_page *tail_page, u64 ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002245{
Steven Rostedt5a50e332009-11-17 08:43:01 -05002246 struct buffer_page *commit_page = cpu_buffer->commit_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002247 struct ring_buffer *buffer = cpu_buffer->buffer;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002248 struct buffer_page *next_page;
2249 int ret;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002250
2251 next_page = tail_page;
2252
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002253 rb_inc_page(cpu_buffer, &next_page);
2254
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002255 /*
2256 * If for some reason, we had an interrupt storm that made
2257 * it all the way around the buffer, bail, and warn
2258 * about it.
2259 */
2260 if (unlikely(next_page == commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002261 local_inc(&cpu_buffer->commit_overrun);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002262 goto out_reset;
2263 }
2264
Steven Rostedt77ae3652009-03-27 11:00:29 -04002265 /*
2266 * This is where the fun begins!
2267 *
2268 * We are fighting against races between a reader that
2269 * could be on another CPU trying to swap its reader
2270 * page with the buffer head.
2271 *
2272 * We are also fighting against interrupts coming in and
2273 * moving the head or tail on us as well.
2274 *
2275 * If the next page is the head page then we have filled
2276 * the buffer, unless the commit page is still on the
2277 * reader page.
2278 */
2279 if (rb_is_head_page(cpu_buffer, next_page, &tail_page->list)) {
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002280
Steven Rostedt77ae3652009-03-27 11:00:29 -04002281 /*
2282 * If the commit is not on the reader page, then
2283 * move the header page.
2284 */
2285 if (!rb_is_reader_page(cpu_buffer->commit_page)) {
2286 /*
2287 * If we are not in overwrite mode,
2288 * this is easy, just stop here.
2289 */
Slava Pestov884bfe82011-07-15 14:23:58 -07002290 if (!(buffer->flags & RB_FL_OVERWRITE)) {
2291 local_inc(&cpu_buffer->dropped_events);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002292 goto out_reset;
Slava Pestov884bfe82011-07-15 14:23:58 -07002293 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002294
Steven Rostedt77ae3652009-03-27 11:00:29 -04002295 ret = rb_handle_head_page(cpu_buffer,
2296 tail_page,
2297 next_page);
2298 if (ret < 0)
2299 goto out_reset;
2300 if (ret)
2301 goto out_again;
2302 } else {
2303 /*
2304 * We need to be careful here too. The
2305 * commit page could still be on the reader
2306 * page. We could have a small buffer, and
2307 * have filled up the buffer with events
2308 * from interrupts and such, and wrapped.
2309 *
2310 * Note, if the tail page is also the on the
2311 * reader_page, we let it move out.
2312 */
2313 if (unlikely((cpu_buffer->commit_page !=
2314 cpu_buffer->tail_page) &&
2315 (cpu_buffer->commit_page ==
2316 cpu_buffer->reader_page))) {
2317 local_inc(&cpu_buffer->commit_overrun);
2318 goto out_reset;
2319 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002320 }
2321 }
2322
Steven Rostedt77ae3652009-03-27 11:00:29 -04002323 ret = rb_tail_page_update(cpu_buffer, tail_page, next_page);
2324 if (ret) {
2325 /*
2326 * Nested commits always have zero deltas, so
2327 * just reread the time stamp
2328 */
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002329 ts = rb_time_stamp(buffer);
2330 next_page->page->time_stamp = ts;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002331 }
2332
Steven Rostedt77ae3652009-03-27 11:00:29 -04002333 out_again:
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002334
Steven Rostedt77ae3652009-03-27 11:00:29 -04002335 rb_reset_tail(cpu_buffer, tail_page, tail, length);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04002336
2337 /* fail and let the caller try again */
2338 return ERR_PTR(-EAGAIN);
2339
Steven Rostedt45141d42009-02-12 13:19:48 -05002340 out_reset:
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08002341 /* reset write */
Steven Rostedtc7b09302009-06-11 11:12:00 -04002342 rb_reset_tail(cpu_buffer, tail_page, tail, length);
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08002343
Steven Rostedtbf41a152008-10-04 02:00:59 -04002344 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002345}
2346
Steven Rostedt6634ff22009-05-06 15:30:07 -04002347static struct ring_buffer_event *
2348__rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt69d1b832010-10-07 18:18:05 -04002349 unsigned long length, u64 ts,
2350 u64 delta, int add_timestamp)
Steven Rostedt6634ff22009-05-06 15:30:07 -04002351{
Steven Rostedt5a50e332009-11-17 08:43:01 -05002352 struct buffer_page *tail_page;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002353 struct ring_buffer_event *event;
2354 unsigned long tail, write;
2355
Steven Rostedt69d1b832010-10-07 18:18:05 -04002356 /*
2357 * If the time delta since the last event is too big to
2358 * hold in the time field of the event, then we append a
2359 * TIME EXTEND event ahead of the data event.
2360 */
2361 if (unlikely(add_timestamp))
2362 length += RB_LEN_TIME_EXTEND;
2363
Steven Rostedt6634ff22009-05-06 15:30:07 -04002364 tail_page = cpu_buffer->tail_page;
2365 write = local_add_return(length, &tail_page->write);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002366
2367 /* set write to only the index of the write */
2368 write &= RB_WRITE_MASK;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002369 tail = write - length;
2370
2371 /* See if we shot pass the end of this buffer page */
Steven Rostedt747e94a2010-10-08 13:51:48 -04002372 if (unlikely(write > BUF_PAGE_SIZE))
Steven Rostedt6634ff22009-05-06 15:30:07 -04002373 return rb_move_tail(cpu_buffer, length, tail,
Steven Rostedt5a50e332009-11-17 08:43:01 -05002374 tail_page, ts);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002375
2376 /* We reserved something on the buffer */
2377
Steven Rostedt6634ff22009-05-06 15:30:07 -04002378 event = __rb_page_index(tail_page, tail);
Vegard Nossum1744a212009-02-28 08:29:44 +01002379 kmemcheck_annotate_bitfield(event, bitfield);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002380 rb_update_event(cpu_buffer, event, length, add_timestamp, delta);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002381
Steven Rostedt69d1b832010-10-07 18:18:05 -04002382 local_inc(&tail_page->entries);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002383
2384 /*
Steven Rostedtfa743952009-06-16 12:37:57 -04002385 * If this is the first commit on the page, then update
2386 * its timestamp.
Steven Rostedt6634ff22009-05-06 15:30:07 -04002387 */
Steven Rostedtfa743952009-06-16 12:37:57 -04002388 if (!tail)
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002389 tail_page->page->time_stamp = ts;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002390
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002391 /* account for these added bytes */
2392 local_add(length, &cpu_buffer->entries_bytes);
2393
Steven Rostedt6634ff22009-05-06 15:30:07 -04002394 return event;
2395}
2396
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002397static inline int
2398rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
2399 struct ring_buffer_event *event)
2400{
2401 unsigned long new_index, old_index;
2402 struct buffer_page *bpage;
2403 unsigned long index;
2404 unsigned long addr;
2405
2406 new_index = rb_event_index(event);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002407 old_index = new_index + rb_event_ts_length(event);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002408 addr = (unsigned long)event;
2409 addr &= PAGE_MASK;
2410
2411 bpage = cpu_buffer->tail_page;
2412
2413 if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002414 unsigned long write_mask =
2415 local_read(&bpage->write) & ~RB_WRITE_MASK;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002416 unsigned long event_length = rb_event_length(event);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002417 /*
2418 * This is on the tail page. It is possible that
2419 * a write could come in and move the tail page
2420 * and write to the next page. That is fine
2421 * because we just shorten what is on this page.
2422 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04002423 old_index += write_mask;
2424 new_index += write_mask;
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002425 index = local_cmpxchg(&bpage->write, old_index, new_index);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002426 if (index == old_index) {
2427 /* update counters */
2428 local_sub(event_length, &cpu_buffer->entries_bytes);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002429 return 1;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07002430 }
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002431 }
2432
2433 /* could not discard */
2434 return 0;
2435}
2436
Steven Rostedtfa743952009-06-16 12:37:57 -04002437static void rb_start_commit(struct ring_buffer_per_cpu *cpu_buffer)
2438{
2439 local_inc(&cpu_buffer->committing);
2440 local_inc(&cpu_buffer->commits);
2441}
2442
Steven Rostedtd9abde22010-10-19 13:17:08 -04002443static inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtfa743952009-06-16 12:37:57 -04002444{
2445 unsigned long commits;
2446
2447 if (RB_WARN_ON(cpu_buffer,
2448 !local_read(&cpu_buffer->committing)))
2449 return;
2450
2451 again:
2452 commits = local_read(&cpu_buffer->commits);
2453 /* synchronize with interrupts */
2454 barrier();
2455 if (local_read(&cpu_buffer->committing) == 1)
2456 rb_set_commit_to_write(cpu_buffer);
2457
2458 local_dec(&cpu_buffer->committing);
2459
2460 /* synchronize with interrupts */
2461 barrier();
2462
2463 /*
2464 * Need to account for interrupts coming in between the
2465 * updating of the commit page and the clearing of the
2466 * committing counter.
2467 */
2468 if (unlikely(local_read(&cpu_buffer->commits) != commits) &&
2469 !local_read(&cpu_buffer->committing)) {
2470 local_inc(&cpu_buffer->committing);
2471 goto again;
2472 }
2473}
2474
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002475static struct ring_buffer_event *
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002476rb_reserve_next_event(struct ring_buffer *buffer,
2477 struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt1cd8d732009-05-11 14:08:09 -04002478 unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002479{
2480 struct ring_buffer_event *event;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002481 u64 ts, delta;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002482 int nr_loops = 0;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002483 int add_timestamp;
Steven Rostedt140ff892010-10-08 10:50:30 -04002484 u64 diff;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002485
Steven Rostedtfa743952009-06-16 12:37:57 -04002486 rb_start_commit(cpu_buffer);
2487
Steven Rostedt85bac322009-09-04 14:24:40 -04002488#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002489 /*
2490 * Due to the ability to swap a cpu buffer from a buffer
2491 * it is possible it was swapped before we committed.
2492 * (committing stops a swap). We check for it here and
2493 * if it happened, we have to fail the write.
2494 */
2495 barrier();
2496 if (unlikely(ACCESS_ONCE(cpu_buffer->buffer) != buffer)) {
2497 local_dec(&cpu_buffer->committing);
2498 local_dec(&cpu_buffer->commits);
2499 return NULL;
2500 }
Steven Rostedt85bac322009-09-04 14:24:40 -04002501#endif
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002502
Steven Rostedtbe957c42009-05-11 14:42:53 -04002503 length = rb_calculate_event_length(length);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002504 again:
Steven Rostedt69d1b832010-10-07 18:18:05 -04002505 add_timestamp = 0;
2506 delta = 0;
2507
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002508 /*
2509 * We allow for interrupts to reenter here and do a trace.
2510 * If one does, it will cause this original code to loop
2511 * back here. Even with heavy interrupts happening, this
2512 * should only happen a few times in a row. If this happens
2513 * 1000 times in a row, there must be either an interrupt
2514 * storm or we have something buggy.
2515 * Bail!
2516 */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05002517 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))
Steven Rostedtfa743952009-06-16 12:37:57 -04002518 goto out_fail;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002519
Jiri Olsa6d3f1e12009-10-23 19:36:19 -04002520 ts = rb_time_stamp(cpu_buffer->buffer);
Steven Rostedt140ff892010-10-08 10:50:30 -04002521 diff = ts - cpu_buffer->write_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002522
Steven Rostedt140ff892010-10-08 10:50:30 -04002523 /* make sure this diff is calculated here */
2524 barrier();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002525
Steven Rostedt140ff892010-10-08 10:50:30 -04002526 /* Did the write stamp get updated already? */
2527 if (likely(ts >= cpu_buffer->write_stamp)) {
Steven Rostedt168b6b12009-05-11 22:11:05 -04002528 delta = diff;
2529 if (unlikely(test_time_stamp(delta))) {
Jiri Olsa31274d72011-02-18 15:52:19 +01002530 int local_clock_stable = 1;
2531#ifdef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
2532 local_clock_stable = sched_clock_stable;
2533#endif
Steven Rostedt69d1b832010-10-07 18:18:05 -04002534 WARN_ONCE(delta > (1ULL << 59),
Jiri Olsa31274d72011-02-18 15:52:19 +01002535 KERN_WARNING "Delta way too big! %llu ts=%llu write stamp = %llu\n%s",
Steven Rostedt69d1b832010-10-07 18:18:05 -04002536 (unsigned long long)delta,
2537 (unsigned long long)ts,
Jiri Olsa31274d72011-02-18 15:52:19 +01002538 (unsigned long long)cpu_buffer->write_stamp,
2539 local_clock_stable ? "" :
2540 "If you just came from a suspend/resume,\n"
2541 "please switch to the trace global clock:\n"
2542 " echo global > /sys/kernel/debug/tracing/trace_clock\n");
Steven Rostedt69d1b832010-10-07 18:18:05 -04002543 add_timestamp = 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002544 }
Steven Rostedt168b6b12009-05-11 22:11:05 -04002545 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002546
Steven Rostedt69d1b832010-10-07 18:18:05 -04002547 event = __rb_reserve_next(cpu_buffer, length, ts,
2548 delta, add_timestamp);
Steven Rostedt168b6b12009-05-11 22:11:05 -04002549 if (unlikely(PTR_ERR(event) == -EAGAIN))
Steven Rostedtbf41a152008-10-04 02:00:59 -04002550 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002551
Steven Rostedtfa743952009-06-16 12:37:57 -04002552 if (!event)
2553 goto out_fail;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002554
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002555 return event;
Steven Rostedtfa743952009-06-16 12:37:57 -04002556
2557 out_fail:
2558 rb_end_commit(cpu_buffer);
2559 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002560}
2561
Paul Mundt1155de42009-06-25 14:30:12 +09002562#ifdef CONFIG_TRACING
2563
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002564/*
2565 * The lock and unlock are done within a preempt disable section.
2566 * The current_context per_cpu variable can only be modified
2567 * by the current task between lock and unlock. But it can
2568 * be modified more than once via an interrupt. To pass this
2569 * information from the lock to the unlock without having to
2570 * access the 'in_interrupt()' functions again (which do show
2571 * a bit of overhead in something as critical as function tracing,
2572 * we use a bitmask trick.
2573 *
2574 * bit 0 = NMI context
2575 * bit 1 = IRQ context
2576 * bit 2 = SoftIRQ context
2577 * bit 3 = normal context.
2578 *
2579 * This works because this is the order of contexts that can
2580 * preempt other contexts. A SoftIRQ never preempts an IRQ
2581 * context.
2582 *
2583 * When the context is determined, the corresponding bit is
2584 * checked and set (if it was set, then a recursion of that context
2585 * happened).
2586 *
2587 * On unlock, we need to clear this bit. To do so, just subtract
2588 * 1 from the current_context and AND it to itself.
2589 *
2590 * (binary)
2591 * 101 - 1 = 100
2592 * 101 & 100 = 100 (clearing bit zero)
2593 *
2594 * 1010 - 1 = 1001
2595 * 1010 & 1001 = 1000 (clearing bit 1)
2596 *
2597 * The least significant bit can be cleared this way, and it
2598 * just so happens that it is the same bit corresponding to
2599 * the current context.
2600 */
2601static DEFINE_PER_CPU(unsigned int, current_context);
Steven Rostedt261842b2009-04-16 21:41:52 -04002602
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002603static __always_inline int trace_recursive_lock(void)
Steven Rostedt261842b2009-04-16 21:41:52 -04002604{
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002605 unsigned int val = this_cpu_read(current_context);
2606 int bit;
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02002607
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002608 if (in_interrupt()) {
2609 if (in_nmi())
2610 bit = 0;
2611 else if (in_irq())
2612 bit = 1;
2613 else
2614 bit = 2;
2615 } else
2616 bit = 3;
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02002617
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002618 if (unlikely(val & (1 << bit)))
2619 return 1;
2620
2621 val |= (1 << bit);
2622 this_cpu_write(current_context, val);
2623
2624 return 0;
Steven Rostedtd9abde22010-10-19 13:17:08 -04002625}
2626
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002627static __always_inline void trace_recursive_unlock(void)
Steven Rostedtd9abde22010-10-19 13:17:08 -04002628{
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002629 unsigned int val = this_cpu_read(current_context);
Steven Rostedtd9abde22010-10-19 13:17:08 -04002630
Steven Rostedt567cd4d2012-11-02 18:33:05 -04002631 val--;
2632 val &= this_cpu_read(current_context);
2633 this_cpu_write(current_context, val);
Steven Rostedt261842b2009-04-16 21:41:52 -04002634}
2635
Paul Mundt1155de42009-06-25 14:30:12 +09002636#else
2637
2638#define trace_recursive_lock() (0)
2639#define trace_recursive_unlock() do { } while (0)
2640
2641#endif
2642
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002643/**
2644 * ring_buffer_lock_reserve - reserve a part of the buffer
2645 * @buffer: the ring buffer to reserve from
2646 * @length: the length of the data to reserve (excluding event header)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002647 *
2648 * Returns a reseverd event on the ring buffer to copy directly to.
2649 * The user of this interface will need to get the body to write into
2650 * and can use the ring_buffer_event_data() interface.
2651 *
2652 * The length is the length of the data needed, not the event length
2653 * which also includes the event header.
2654 *
2655 * Must be paired with ring_buffer_unlock_commit, unless NULL is returned.
2656 * If NULL is returned, then nothing has been allocated or locked.
2657 */
2658struct ring_buffer_event *
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002659ring_buffer_lock_reserve(struct ring_buffer *buffer, unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002660{
2661 struct ring_buffer_per_cpu *cpu_buffer;
2662 struct ring_buffer_event *event;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002663 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002664
Steven Rostedt033601a2008-11-21 12:41:55 -05002665 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05002666 return NULL;
2667
Steven Rostedtbf41a152008-10-04 02:00:59 -04002668 /* If we are tracing schedule, we don't want to recurse */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002669 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002670
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08002671 if (atomic_read(&buffer->record_disabled))
2672 goto out_nocheck;
2673
Steven Rostedt261842b2009-04-16 21:41:52 -04002674 if (trace_recursive_lock())
2675 goto out_nocheck;
2676
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002677 cpu = raw_smp_processor_id();
2678
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302679 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04002680 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002681
2682 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002683
2684 if (atomic_read(&cpu_buffer->record_disabled))
Steven Rostedtd7690412008-10-01 00:29:53 -04002685 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002686
Steven Rostedtbe957c42009-05-11 14:42:53 -04002687 if (length > BUF_MAX_DATA_SIZE)
Steven Rostedtbf41a152008-10-04 02:00:59 -04002688 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002689
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002690 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002691 if (!event)
Steven Rostedtd7690412008-10-01 00:29:53 -04002692 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002693
2694 return event;
2695
Steven Rostedtd7690412008-10-01 00:29:53 -04002696 out:
Steven Rostedt261842b2009-04-16 21:41:52 -04002697 trace_recursive_unlock();
2698
2699 out_nocheck:
Steven Rostedt5168ae52010-06-03 09:36:50 -04002700 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002701 return NULL;
2702}
Robert Richterc4f50182008-12-11 16:49:22 +01002703EXPORT_SYMBOL_GPL(ring_buffer_lock_reserve);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002704
Steven Rostedta1863c22009-09-03 10:23:58 -04002705static void
2706rb_update_write_stamp(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002707 struct ring_buffer_event *event)
2708{
Steven Rostedt69d1b832010-10-07 18:18:05 -04002709 u64 delta;
2710
Steven Rostedtfa743952009-06-16 12:37:57 -04002711 /*
2712 * The event first in the commit queue updates the
2713 * time stamp.
2714 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04002715 if (rb_event_is_commit(cpu_buffer, event)) {
2716 /*
2717 * A commit event that is first on a page
2718 * updates the write timestamp with the page stamp
2719 */
2720 if (!rb_event_index(event))
2721 cpu_buffer->write_stamp =
2722 cpu_buffer->commit_page->page->time_stamp;
2723 else if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
2724 delta = event->array[0];
2725 delta <<= TS_SHIFT;
2726 delta += event->time_delta;
2727 cpu_buffer->write_stamp += delta;
2728 } else
2729 cpu_buffer->write_stamp += event->time_delta;
2730 }
Steven Rostedta1863c22009-09-03 10:23:58 -04002731}
Steven Rostedtbf41a152008-10-04 02:00:59 -04002732
Steven Rostedta1863c22009-09-03 10:23:58 -04002733static void rb_commit(struct ring_buffer_per_cpu *cpu_buffer,
2734 struct ring_buffer_event *event)
2735{
2736 local_inc(&cpu_buffer->entries);
2737 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa743952009-06-16 12:37:57 -04002738 rb_end_commit(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002739}
2740
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05002741static __always_inline void
2742rb_wakeups(struct ring_buffer *buffer, struct ring_buffer_per_cpu *cpu_buffer)
2743{
2744 if (buffer->irq_work.waiters_pending) {
2745 buffer->irq_work.waiters_pending = false;
2746 /* irq_work_queue() supplies it's own memory barriers */
2747 irq_work_queue(&buffer->irq_work.work);
2748 }
2749
2750 if (cpu_buffer->irq_work.waiters_pending) {
2751 cpu_buffer->irq_work.waiters_pending = false;
2752 /* irq_work_queue() supplies it's own memory barriers */
2753 irq_work_queue(&cpu_buffer->irq_work.work);
2754 }
2755}
2756
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002757/**
2758 * ring_buffer_unlock_commit - commit a reserved
2759 * @buffer: The buffer to commit to
2760 * @event: The event pointer to commit.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002761 *
2762 * This commits the data to the ring buffer, and releases any locks held.
2763 *
2764 * Must be paired with ring_buffer_lock_reserve.
2765 */
2766int ring_buffer_unlock_commit(struct ring_buffer *buffer,
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002767 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002768{
2769 struct ring_buffer_per_cpu *cpu_buffer;
2770 int cpu = raw_smp_processor_id();
2771
2772 cpu_buffer = buffer->buffers[cpu];
2773
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002774 rb_commit(cpu_buffer, event);
2775
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05002776 rb_wakeups(buffer, cpu_buffer);
2777
Steven Rostedt261842b2009-04-16 21:41:52 -04002778 trace_recursive_unlock();
2779
Steven Rostedt5168ae52010-06-03 09:36:50 -04002780 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002781
2782 return 0;
2783}
Robert Richterc4f50182008-12-11 16:49:22 +01002784EXPORT_SYMBOL_GPL(ring_buffer_unlock_commit);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002785
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002786static inline void rb_event_discard(struct ring_buffer_event *event)
2787{
Steven Rostedt69d1b832010-10-07 18:18:05 -04002788 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
2789 event = skip_time_extend(event);
2790
Lai Jiangshan334d4162009-04-24 11:27:05 +08002791 /* array[0] holds the actual length for the discarded event */
2792 event->array[0] = rb_event_data_length(event) - RB_EVNT_HDR_SIZE;
2793 event->type_len = RINGBUF_TYPE_PADDING;
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002794 /* time delta must be non zero */
2795 if (!event->time_delta)
2796 event->time_delta = 1;
2797}
2798
Steven Rostedta1863c22009-09-03 10:23:58 -04002799/*
2800 * Decrement the entries to the page that an event is on.
2801 * The event does not even need to exist, only the pointer
2802 * to the page it is on. This may only be called before the commit
2803 * takes place.
2804 */
2805static inline void
2806rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
2807 struct ring_buffer_event *event)
2808{
2809 unsigned long addr = (unsigned long)event;
2810 struct buffer_page *bpage = cpu_buffer->commit_page;
2811 struct buffer_page *start;
2812
2813 addr &= PAGE_MASK;
2814
2815 /* Do the likely case first */
2816 if (likely(bpage->page == (void *)addr)) {
2817 local_dec(&bpage->entries);
2818 return;
2819 }
2820
2821 /*
2822 * Because the commit page may be on the reader page we
2823 * start with the next page and check the end loop there.
2824 */
2825 rb_inc_page(cpu_buffer, &bpage);
2826 start = bpage;
2827 do {
2828 if (bpage->page == (void *)addr) {
2829 local_dec(&bpage->entries);
2830 return;
2831 }
2832 rb_inc_page(cpu_buffer, &bpage);
2833 } while (bpage != start);
2834
2835 /* commit not part of this buffer?? */
2836 RB_WARN_ON(cpu_buffer, 1);
2837}
2838
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002839/**
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002840 * ring_buffer_commit_discard - discard an event that has not been committed
2841 * @buffer: the ring buffer
2842 * @event: non committed event to discard
2843 *
Steven Rostedtdc892f72009-09-03 15:33:41 -04002844 * Sometimes an event that is in the ring buffer needs to be ignored.
2845 * This function lets the user discard an event in the ring buffer
2846 * and then that event will not be read later.
2847 *
2848 * This function only works if it is called before the the item has been
2849 * committed. It will try to free the event from the ring buffer
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002850 * if another event has not been added behind it.
2851 *
2852 * If another event has been added behind it, it will set the event
2853 * up as discarded, and perform the commit.
2854 *
2855 * If this function is called, do not call ring_buffer_unlock_commit on
2856 * the event.
2857 */
2858void ring_buffer_discard_commit(struct ring_buffer *buffer,
2859 struct ring_buffer_event *event)
2860{
2861 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002862 int cpu;
2863
2864 /* The event is discarded regardless */
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002865 rb_event_discard(event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002866
Steven Rostedtfa743952009-06-16 12:37:57 -04002867 cpu = smp_processor_id();
2868 cpu_buffer = buffer->buffers[cpu];
2869
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002870 /*
2871 * This must only be called if the event has not been
2872 * committed yet. Thus we can assume that preemption
2873 * is still disabled.
2874 */
Steven Rostedtfa743952009-06-16 12:37:57 -04002875 RB_WARN_ON(buffer, !local_read(&cpu_buffer->committing));
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002876
Steven Rostedta1863c22009-09-03 10:23:58 -04002877 rb_decrement_entry(cpu_buffer, event);
Steven Rostedt0f2541d2009-08-05 12:02:48 -04002878 if (rb_try_to_discard(cpu_buffer, event))
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002879 goto out;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002880
2881 /*
2882 * The commit is still visible by the reader, so we
Steven Rostedta1863c22009-09-03 10:23:58 -04002883 * must still update the timestamp.
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002884 */
Steven Rostedta1863c22009-09-03 10:23:58 -04002885 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002886 out:
Steven Rostedtfa743952009-06-16 12:37:57 -04002887 rb_end_commit(cpu_buffer);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002888
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002889 trace_recursive_unlock();
2890
Steven Rostedt5168ae52010-06-03 09:36:50 -04002891 preempt_enable_notrace();
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002892
2893}
2894EXPORT_SYMBOL_GPL(ring_buffer_discard_commit);
2895
2896/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002897 * ring_buffer_write - write data to the buffer without reserving
2898 * @buffer: The ring buffer to write to.
2899 * @length: The length of the data being written (excluding the event header)
2900 * @data: The data to write to the buffer.
2901 *
2902 * This is like ring_buffer_lock_reserve and ring_buffer_unlock_commit as
2903 * one function. If you already have the data to write to the buffer, it
2904 * may be easier to simply call this function.
2905 *
2906 * Note, like ring_buffer_lock_reserve, the length is the length of the data
2907 * and not the length of the event which would hold the header.
2908 */
2909int ring_buffer_write(struct ring_buffer *buffer,
David Sharp01e3e712012-06-07 16:46:24 -07002910 unsigned long length,
2911 void *data)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002912{
2913 struct ring_buffer_per_cpu *cpu_buffer;
2914 struct ring_buffer_event *event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002915 void *body;
2916 int ret = -EBUSY;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002917 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002918
Steven Rostedt033601a2008-11-21 12:41:55 -05002919 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05002920 return -EBUSY;
2921
Steven Rostedt5168ae52010-06-03 09:36:50 -04002922 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002923
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08002924 if (atomic_read(&buffer->record_disabled))
2925 goto out;
2926
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002927 cpu = raw_smp_processor_id();
2928
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302929 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04002930 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002931
2932 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002933
2934 if (atomic_read(&cpu_buffer->record_disabled))
2935 goto out;
2936
Steven Rostedtbe957c42009-05-11 14:42:53 -04002937 if (length > BUF_MAX_DATA_SIZE)
2938 goto out;
2939
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002940 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002941 if (!event)
2942 goto out;
2943
2944 body = rb_event_data(event);
2945
2946 memcpy(body, data, length);
2947
2948 rb_commit(cpu_buffer, event);
2949
Steven Rostedt (Red Hat)15693452013-02-28 19:59:17 -05002950 rb_wakeups(buffer, cpu_buffer);
2951
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002952 ret = 0;
2953 out:
Steven Rostedt5168ae52010-06-03 09:36:50 -04002954 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002955
2956 return ret;
2957}
Robert Richterc4f50182008-12-11 16:49:22 +01002958EXPORT_SYMBOL_GPL(ring_buffer_write);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002959
Andrew Morton34a148b2009-01-09 12:27:09 -08002960static int rb_per_cpu_empty(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtbf41a152008-10-04 02:00:59 -04002961{
2962 struct buffer_page *reader = cpu_buffer->reader_page;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002963 struct buffer_page *head = rb_set_head_page(cpu_buffer);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002964 struct buffer_page *commit = cpu_buffer->commit_page;
2965
Steven Rostedt77ae3652009-03-27 11:00:29 -04002966 /* In case of error, head will be NULL */
2967 if (unlikely(!head))
2968 return 1;
2969
Steven Rostedtbf41a152008-10-04 02:00:59 -04002970 return reader->read == rb_page_commit(reader) &&
2971 (commit == reader ||
2972 (commit == head &&
2973 head->read == rb_page_commit(commit)));
2974}
2975
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002976/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002977 * ring_buffer_record_disable - stop all writes into the buffer
2978 * @buffer: The ring buffer to stop writes to.
2979 *
2980 * This prevents all writes to the buffer. Any attempt to write
2981 * to the buffer after this will fail and return NULL.
2982 *
2983 * The caller should call synchronize_sched() after this.
2984 */
2985void ring_buffer_record_disable(struct ring_buffer *buffer)
2986{
2987 atomic_inc(&buffer->record_disabled);
2988}
Robert Richterc4f50182008-12-11 16:49:22 +01002989EXPORT_SYMBOL_GPL(ring_buffer_record_disable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002990
2991/**
2992 * ring_buffer_record_enable - enable writes to the buffer
2993 * @buffer: The ring buffer to enable writes
2994 *
2995 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002996 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002997 */
2998void ring_buffer_record_enable(struct ring_buffer *buffer)
2999{
3000 atomic_dec(&buffer->record_disabled);
3001}
Robert Richterc4f50182008-12-11 16:49:22 +01003002EXPORT_SYMBOL_GPL(ring_buffer_record_enable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003003
3004/**
Steven Rostedt499e5472012-02-22 15:50:28 -05003005 * ring_buffer_record_off - stop all writes into the buffer
3006 * @buffer: The ring buffer to stop writes to.
3007 *
3008 * This prevents all writes to the buffer. Any attempt to write
3009 * to the buffer after this will fail and return NULL.
3010 *
3011 * This is different than ring_buffer_record_disable() as
Wang Tianhong87abb3b2012-08-02 14:02:00 +08003012 * it works like an on/off switch, where as the disable() version
Steven Rostedt499e5472012-02-22 15:50:28 -05003013 * must be paired with a enable().
3014 */
3015void ring_buffer_record_off(struct ring_buffer *buffer)
3016{
3017 unsigned int rd;
3018 unsigned int new_rd;
3019
3020 do {
3021 rd = atomic_read(&buffer->record_disabled);
3022 new_rd = rd | RB_BUFFER_OFF;
3023 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3024}
3025EXPORT_SYMBOL_GPL(ring_buffer_record_off);
3026
3027/**
3028 * ring_buffer_record_on - restart writes into the buffer
3029 * @buffer: The ring buffer to start writes to.
3030 *
3031 * This enables all writes to the buffer that was disabled by
3032 * ring_buffer_record_off().
3033 *
3034 * This is different than ring_buffer_record_enable() as
Wang Tianhong87abb3b2012-08-02 14:02:00 +08003035 * it works like an on/off switch, where as the enable() version
Steven Rostedt499e5472012-02-22 15:50:28 -05003036 * must be paired with a disable().
3037 */
3038void ring_buffer_record_on(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_on);
3049
3050/**
3051 * ring_buffer_record_is_on - return true if the ring buffer can write
3052 * @buffer: The ring buffer to see if write is enabled
3053 *
3054 * Returns true if the ring buffer is in a state that it accepts writes.
3055 */
3056int ring_buffer_record_is_on(struct ring_buffer *buffer)
3057{
3058 return !atomic_read(&buffer->record_disabled);
3059}
3060
3061/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003062 * ring_buffer_record_disable_cpu - stop all writes into the cpu_buffer
3063 * @buffer: The ring buffer to stop writes to.
3064 * @cpu: The CPU buffer to stop
3065 *
3066 * This prevents all writes to the buffer. Any attempt to write
3067 * to the buffer after this will fail and return NULL.
3068 *
3069 * The caller should call synchronize_sched() after this.
3070 */
3071void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu)
3072{
3073 struct ring_buffer_per_cpu *cpu_buffer;
3074
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303075 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003076 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003077
3078 cpu_buffer = buffer->buffers[cpu];
3079 atomic_inc(&cpu_buffer->record_disabled);
3080}
Robert Richterc4f50182008-12-11 16:49:22 +01003081EXPORT_SYMBOL_GPL(ring_buffer_record_disable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003082
3083/**
3084 * ring_buffer_record_enable_cpu - enable writes to the buffer
3085 * @buffer: The ring buffer to enable writes
3086 * @cpu: The CPU to enable.
3087 *
3088 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003089 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003090 */
3091void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu)
3092{
3093 struct ring_buffer_per_cpu *cpu_buffer;
3094
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303095 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003096 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003097
3098 cpu_buffer = buffer->buffers[cpu];
3099 atomic_dec(&cpu_buffer->record_disabled);
3100}
Robert Richterc4f50182008-12-11 16:49:22 +01003101EXPORT_SYMBOL_GPL(ring_buffer_record_enable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003102
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003103/*
3104 * The total entries in the ring buffer is the running counter
3105 * of entries entered into the ring buffer, minus the sum of
3106 * the entries read from the ring buffer and the number of
3107 * entries that were overwritten.
3108 */
3109static inline unsigned long
3110rb_num_of_entries(struct ring_buffer_per_cpu *cpu_buffer)
3111{
3112 return local_read(&cpu_buffer->entries) -
3113 (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
3114}
3115
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003116/**
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003117 * ring_buffer_oldest_event_ts - get the oldest event timestamp from the buffer
3118 * @buffer: The ring buffer
3119 * @cpu: The per CPU buffer to read from.
3120 */
Yoshihiro YUNOMAE50ecf2c2012-10-11 16:27:54 -07003121u64 ring_buffer_oldest_event_ts(struct ring_buffer *buffer, int cpu)
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003122{
3123 unsigned long flags;
3124 struct ring_buffer_per_cpu *cpu_buffer;
3125 struct buffer_page *bpage;
Linus Torvaldsda830e52012-12-11 18:18:58 -08003126 u64 ret = 0;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003127
3128 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3129 return 0;
3130
3131 cpu_buffer = buffer->buffers[cpu];
Linus Torvalds7115e3f2011-10-26 17:03:38 +02003132 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003133 /*
3134 * if the tail is on reader_page, oldest time stamp is on the reader
3135 * page
3136 */
3137 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
3138 bpage = cpu_buffer->reader_page;
3139 else
3140 bpage = rb_set_head_page(cpu_buffer);
Steven Rostedt54f7be52012-11-29 22:27:22 -05003141 if (bpage)
3142 ret = bpage->page->time_stamp;
Linus Torvalds7115e3f2011-10-26 17:03:38 +02003143 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07003144
3145 return ret;
3146}
3147EXPORT_SYMBOL_GPL(ring_buffer_oldest_event_ts);
3148
3149/**
3150 * ring_buffer_bytes_cpu - get the number of bytes consumed in a cpu buffer
3151 * @buffer: The ring buffer
3152 * @cpu: The per CPU buffer to read from.
3153 */
3154unsigned long ring_buffer_bytes_cpu(struct ring_buffer *buffer, int cpu)
3155{
3156 struct ring_buffer_per_cpu *cpu_buffer;
3157 unsigned long ret;
3158
3159 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3160 return 0;
3161
3162 cpu_buffer = buffer->buffers[cpu];
3163 ret = local_read(&cpu_buffer->entries_bytes) - cpu_buffer->read_bytes;
3164
3165 return ret;
3166}
3167EXPORT_SYMBOL_GPL(ring_buffer_bytes_cpu);
3168
3169/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003170 * ring_buffer_entries_cpu - get the number of entries in a cpu buffer
3171 * @buffer: The ring buffer
3172 * @cpu: The per CPU buffer to get the entries from.
3173 */
3174unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
3175{
3176 struct ring_buffer_per_cpu *cpu_buffer;
3177
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303178 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003179 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003180
3181 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04003182
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003183 return rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003184}
Robert Richterc4f50182008-12-11 16:49:22 +01003185EXPORT_SYMBOL_GPL(ring_buffer_entries_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003186
3187/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003188 * ring_buffer_overrun_cpu - get the number of overruns caused by the ring
3189 * buffer wrapping around (only if RB_FL_OVERWRITE is on).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003190 * @buffer: The ring buffer
3191 * @cpu: The per CPU buffer to get the number of overruns from
3192 */
3193unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
3194{
3195 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003196 unsigned long ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003197
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303198 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003199 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003200
3201 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003202 ret = local_read(&cpu_buffer->overrun);
Steven Rostedt554f7862009-03-11 22:00:13 -04003203
3204 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003205}
Robert Richterc4f50182008-12-11 16:49:22 +01003206EXPORT_SYMBOL_GPL(ring_buffer_overrun_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003207
3208/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003209 * ring_buffer_commit_overrun_cpu - get the number of overruns caused by
3210 * commits failing due to the buffer wrapping around while there are uncommitted
3211 * events, such as during an interrupt storm.
Steven Rostedtf0d2c682009-04-29 13:43:37 -04003212 * @buffer: The ring buffer
3213 * @cpu: The per CPU buffer to get the number of overruns from
3214 */
3215unsigned long
3216ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
3217{
3218 struct ring_buffer_per_cpu *cpu_buffer;
3219 unsigned long ret;
3220
3221 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3222 return 0;
3223
3224 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04003225 ret = local_read(&cpu_buffer->commit_overrun);
Steven Rostedtf0d2c682009-04-29 13:43:37 -04003226
3227 return ret;
3228}
3229EXPORT_SYMBOL_GPL(ring_buffer_commit_overrun_cpu);
3230
3231/**
Slava Pestov884bfe82011-07-15 14:23:58 -07003232 * ring_buffer_dropped_events_cpu - get the number of dropped events caused by
3233 * the ring buffer filling up (only if RB_FL_OVERWRITE is off).
3234 * @buffer: The ring buffer
3235 * @cpu: The per CPU buffer to get the number of overruns from
3236 */
3237unsigned long
3238ring_buffer_dropped_events_cpu(struct ring_buffer *buffer, int cpu)
3239{
3240 struct ring_buffer_per_cpu *cpu_buffer;
3241 unsigned long ret;
3242
3243 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3244 return 0;
3245
3246 cpu_buffer = buffer->buffers[cpu];
3247 ret = local_read(&cpu_buffer->dropped_events);
3248
3249 return ret;
3250}
3251EXPORT_SYMBOL_GPL(ring_buffer_dropped_events_cpu);
3252
3253/**
Steven Rostedt (Red Hat)ad964702013-01-29 17:45:49 -05003254 * ring_buffer_read_events_cpu - get the number of events successfully read
3255 * @buffer: The ring buffer
3256 * @cpu: The per CPU buffer to get the number of events read
3257 */
3258unsigned long
3259ring_buffer_read_events_cpu(struct ring_buffer *buffer, int cpu)
3260{
3261 struct ring_buffer_per_cpu *cpu_buffer;
3262
3263 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3264 return 0;
3265
3266 cpu_buffer = buffer->buffers[cpu];
3267 return cpu_buffer->read;
3268}
3269EXPORT_SYMBOL_GPL(ring_buffer_read_events_cpu);
3270
3271/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003272 * ring_buffer_entries - get the number of entries in a buffer
3273 * @buffer: The ring buffer
3274 *
3275 * Returns the total number of entries in the ring buffer
3276 * (all CPU entries)
3277 */
3278unsigned long ring_buffer_entries(struct ring_buffer *buffer)
3279{
3280 struct ring_buffer_per_cpu *cpu_buffer;
3281 unsigned long entries = 0;
3282 int cpu;
3283
3284 /* if you care about this being correct, lock the buffer */
3285 for_each_buffer_cpu(buffer, cpu) {
3286 cpu_buffer = buffer->buffers[cpu];
Steven Rostedtf6195aa2010-09-01 12:23:12 -04003287 entries += rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003288 }
3289
3290 return entries;
3291}
Robert Richterc4f50182008-12-11 16:49:22 +01003292EXPORT_SYMBOL_GPL(ring_buffer_entries);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003293
3294/**
Jiri Olsa67b394f2009-10-23 19:36:18 -04003295 * ring_buffer_overruns - get the number of overruns in buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003296 * @buffer: The ring buffer
3297 *
3298 * Returns the total number of overruns in the ring buffer
3299 * (all CPU entries)
3300 */
3301unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
3302{
3303 struct ring_buffer_per_cpu *cpu_buffer;
3304 unsigned long overruns = 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 Rostedt77ae3652009-03-27 11:00:29 -04003310 overruns += local_read(&cpu_buffer->overrun);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003311 }
3312
3313 return overruns;
3314}
Robert Richterc4f50182008-12-11 16:49:22 +01003315EXPORT_SYMBOL_GPL(ring_buffer_overruns);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003316
Steven Rostedt642edba2008-11-12 00:01:26 -05003317static void rb_iter_reset(struct ring_buffer_iter *iter)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003318{
3319 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3320
Steven Rostedtd7690412008-10-01 00:29:53 -04003321 /* Iterator usage is expected to have record disabled */
3322 if (list_empty(&cpu_buffer->reader_page->list)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04003323 iter->head_page = rb_set_head_page(cpu_buffer);
3324 if (unlikely(!iter->head_page))
3325 return;
3326 iter->head = iter->head_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04003327 } else {
3328 iter->head_page = cpu_buffer->reader_page;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003329 iter->head = cpu_buffer->reader_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04003330 }
3331 if (iter->head)
3332 iter->read_stamp = cpu_buffer->read_stamp;
3333 else
Steven Rostedtabc9b562008-12-02 15:34:06 -05003334 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt492a74f2010-01-25 15:17:47 -05003335 iter->cache_reader_page = cpu_buffer->reader_page;
3336 iter->cache_read = cpu_buffer->read;
Steven Rostedt642edba2008-11-12 00:01:26 -05003337}
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003338
Steven Rostedt642edba2008-11-12 00:01:26 -05003339/**
3340 * ring_buffer_iter_reset - reset an iterator
3341 * @iter: The iterator to reset
3342 *
3343 * Resets the iterator, so that it will start from the beginning
3344 * again.
3345 */
3346void ring_buffer_iter_reset(struct ring_buffer_iter *iter)
3347{
Steven Rostedt554f7862009-03-11 22:00:13 -04003348 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt642edba2008-11-12 00:01:26 -05003349 unsigned long flags;
3350
Steven Rostedt554f7862009-03-11 22:00:13 -04003351 if (!iter)
3352 return;
3353
3354 cpu_buffer = iter->cpu_buffer;
3355
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003356 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt642edba2008-11-12 00:01:26 -05003357 rb_iter_reset(iter);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003358 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003359}
Robert Richterc4f50182008-12-11 16:49:22 +01003360EXPORT_SYMBOL_GPL(ring_buffer_iter_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003361
3362/**
3363 * ring_buffer_iter_empty - check if an iterator has no more to read
3364 * @iter: The iterator to check
3365 */
3366int ring_buffer_iter_empty(struct ring_buffer_iter *iter)
3367{
3368 struct ring_buffer_per_cpu *cpu_buffer;
3369
3370 cpu_buffer = iter->cpu_buffer;
3371
Steven Rostedtbf41a152008-10-04 02:00:59 -04003372 return iter->head_page == cpu_buffer->commit_page &&
3373 iter->head == rb_commit_index(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003374}
Robert Richterc4f50182008-12-11 16:49:22 +01003375EXPORT_SYMBOL_GPL(ring_buffer_iter_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003376
3377static void
3378rb_update_read_stamp(struct ring_buffer_per_cpu *cpu_buffer,
3379 struct ring_buffer_event *event)
3380{
3381 u64 delta;
3382
Lai Jiangshan334d4162009-04-24 11:27:05 +08003383 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003384 case RINGBUF_TYPE_PADDING:
3385 return;
3386
3387 case RINGBUF_TYPE_TIME_EXTEND:
3388 delta = event->array[0];
3389 delta <<= TS_SHIFT;
3390 delta += event->time_delta;
3391 cpu_buffer->read_stamp += delta;
3392 return;
3393
3394 case RINGBUF_TYPE_TIME_STAMP:
3395 /* FIXME: not implemented */
3396 return;
3397
3398 case RINGBUF_TYPE_DATA:
3399 cpu_buffer->read_stamp += event->time_delta;
3400 return;
3401
3402 default:
3403 BUG();
3404 }
3405 return;
3406}
3407
3408static void
3409rb_update_iter_read_stamp(struct ring_buffer_iter *iter,
3410 struct ring_buffer_event *event)
3411{
3412 u64 delta;
3413
Lai Jiangshan334d4162009-04-24 11:27:05 +08003414 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003415 case RINGBUF_TYPE_PADDING:
3416 return;
3417
3418 case RINGBUF_TYPE_TIME_EXTEND:
3419 delta = event->array[0];
3420 delta <<= TS_SHIFT;
3421 delta += event->time_delta;
3422 iter->read_stamp += delta;
3423 return;
3424
3425 case RINGBUF_TYPE_TIME_STAMP:
3426 /* FIXME: not implemented */
3427 return;
3428
3429 case RINGBUF_TYPE_DATA:
3430 iter->read_stamp += event->time_delta;
3431 return;
3432
3433 default:
3434 BUG();
3435 }
3436 return;
3437}
3438
Steven Rostedtd7690412008-10-01 00:29:53 -04003439static struct buffer_page *
3440rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003441{
Steven Rostedtd7690412008-10-01 00:29:53 -04003442 struct buffer_page *reader = NULL;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003443 unsigned long overwrite;
Steven Rostedtd7690412008-10-01 00:29:53 -04003444 unsigned long flags;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003445 int nr_loops = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003446 int ret;
Steven Rostedtd7690412008-10-01 00:29:53 -04003447
Steven Rostedt3e03fb72008-11-06 00:09:43 -05003448 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003449 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedtd7690412008-10-01 00:29:53 -04003450
3451 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003452 /*
3453 * This should normally only loop twice. But because the
3454 * start of the reader inserts an empty page, it causes
3455 * a case where we will loop three times. There should be no
3456 * reason to loop four times (that I know of).
3457 */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003458 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003459 reader = NULL;
3460 goto out;
3461 }
3462
Steven Rostedtd7690412008-10-01 00:29:53 -04003463 reader = cpu_buffer->reader_page;
3464
3465 /* If there's more to read, return this page */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003466 if (cpu_buffer->reader_page->read < rb_page_size(reader))
Steven Rostedtd7690412008-10-01 00:29:53 -04003467 goto out;
3468
3469 /* Never should we have an index greater than the size */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003470 if (RB_WARN_ON(cpu_buffer,
3471 cpu_buffer->reader_page->read > rb_page_size(reader)))
3472 goto out;
Steven Rostedtd7690412008-10-01 00:29:53 -04003473
3474 /* check if we caught up to the tail */
3475 reader = NULL;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003476 if (cpu_buffer->commit_page == cpu_buffer->reader_page)
Steven Rostedtd7690412008-10-01 00:29:53 -04003477 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003478
Steven Rostedta5fb8332012-06-28 13:35:04 -04003479 /* Don't bother swapping if the ring buffer is empty */
3480 if (rb_num_of_entries(cpu_buffer) == 0)
3481 goto out;
3482
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003483 /*
Steven Rostedtd7690412008-10-01 00:29:53 -04003484 * Reset the reader page to size zero.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003485 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04003486 local_set(&cpu_buffer->reader_page->write, 0);
3487 local_set(&cpu_buffer->reader_page->entries, 0);
3488 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedtff0ff842010-03-31 22:11:42 -04003489 cpu_buffer->reader_page->real_end = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003490
Steven Rostedt77ae3652009-03-27 11:00:29 -04003491 spin:
3492 /*
3493 * Splice the empty reader page into the list around the head.
3494 */
3495 reader = rb_set_head_page(cpu_buffer);
Steven Rostedt54f7be52012-11-29 22:27:22 -05003496 if (!reader)
3497 goto out;
Steven Rostedt0e1ff5d2010-01-06 20:40:44 -05003498 cpu_buffer->reader_page->list.next = rb_list_head(reader->list.next);
Steven Rostedtd7690412008-10-01 00:29:53 -04003499 cpu_buffer->reader_page->list.prev = reader->list.prev;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003500
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003501 /*
3502 * cpu_buffer->pages just needs to point to the buffer, it
3503 * has no specific buffer page to point to. Lets move it out
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003504 * of our way so we don't accidentally swap it.
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003505 */
3506 cpu_buffer->pages = reader->list.prev;
3507
Steven Rostedt77ae3652009-03-27 11:00:29 -04003508 /* The reader page will be pointing to the new head */
3509 rb_set_list_to_head(cpu_buffer, &cpu_buffer->reader_page->list);
Steven Rostedtd7690412008-10-01 00:29:53 -04003510
3511 /*
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003512 * We want to make sure we read the overruns after we set up our
3513 * pointers to the next object. The writer side does a
3514 * cmpxchg to cross pages which acts as the mb on the writer
3515 * side. Note, the reader will constantly fail the swap
3516 * while the writer is updating the pointers, so this
3517 * guarantees that the overwrite recorded here is the one we
3518 * want to compare with the last_overrun.
3519 */
3520 smp_mb();
3521 overwrite = local_read(&(cpu_buffer->overrun));
3522
3523 /*
Steven Rostedt77ae3652009-03-27 11:00:29 -04003524 * Here's the tricky part.
3525 *
3526 * We need to move the pointer past the header page.
3527 * But we can only do that if a writer is not currently
3528 * moving it. The page before the header page has the
3529 * flag bit '1' set if it is pointing to the page we want.
3530 * but if the writer is in the process of moving it
3531 * than it will be '2' or already moved '0'.
Steven Rostedtd7690412008-10-01 00:29:53 -04003532 */
Steven Rostedtd7690412008-10-01 00:29:53 -04003533
Steven Rostedt77ae3652009-03-27 11:00:29 -04003534 ret = rb_head_page_replace(reader, cpu_buffer->reader_page);
3535
3536 /*
3537 * If we did not convert it, then we must try again.
3538 */
3539 if (!ret)
3540 goto spin;
3541
3542 /*
3543 * Yeah! We succeeded in replacing the page.
3544 *
3545 * Now make the new head point back to the reader page.
3546 */
David Sharp5ded3dc62010-01-06 17:12:07 -08003547 rb_list_head(reader->list.next)->prev = &cpu_buffer->reader_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003548 rb_inc_page(cpu_buffer, &cpu_buffer->head_page);
Steven Rostedtd7690412008-10-01 00:29:53 -04003549
3550 /* Finally update the reader page to the new head */
3551 cpu_buffer->reader_page = reader;
3552 rb_reset_reader_page(cpu_buffer);
3553
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003554 if (overwrite != cpu_buffer->last_overrun) {
3555 cpu_buffer->lost_events = overwrite - cpu_buffer->last_overrun;
3556 cpu_buffer->last_overrun = overwrite;
3557 }
3558
Steven Rostedtd7690412008-10-01 00:29:53 -04003559 goto again;
3560
3561 out:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003562 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05003563 local_irq_restore(flags);
Steven Rostedtd7690412008-10-01 00:29:53 -04003564
3565 return reader;
3566}
3567
3568static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer)
3569{
3570 struct ring_buffer_event *event;
3571 struct buffer_page *reader;
3572 unsigned length;
3573
3574 reader = rb_get_reader_page(cpu_buffer);
3575
3576 /* This function should not be called when buffer is empty */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003577 if (RB_WARN_ON(cpu_buffer, !reader))
3578 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003579
3580 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003581
Steven Rostedta1863c22009-09-03 10:23:58 -04003582 if (event->type_len <= RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedte4906ef2009-04-30 20:49:44 -04003583 cpu_buffer->read++;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003584
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003585 rb_update_read_stamp(cpu_buffer, event);
3586
Steven Rostedtd7690412008-10-01 00:29:53 -04003587 length = rb_event_length(event);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003588 cpu_buffer->reader_page->read += length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003589}
3590
3591static void rb_advance_iter(struct ring_buffer_iter *iter)
3592{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003593 struct ring_buffer_per_cpu *cpu_buffer;
3594 struct ring_buffer_event *event;
3595 unsigned length;
3596
3597 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003598
3599 /*
3600 * Check if we are at the end of the buffer.
3601 */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003602 if (iter->head >= rb_page_size(iter->head_page)) {
Steven Rostedtea05b572009-06-03 09:30:10 -04003603 /* discarded commits can make the page empty */
3604 if (iter->head_page == cpu_buffer->commit_page)
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003605 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003606 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003607 return;
3608 }
3609
3610 event = rb_iter_head_event(iter);
3611
3612 length = rb_event_length(event);
3613
3614 /*
3615 * This should not be called to advance the header if we are
3616 * at the tail of the buffer.
3617 */
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003618 if (RB_WARN_ON(cpu_buffer,
Steven Rostedtf536aaf2008-11-10 23:07:30 -05003619 (iter->head_page == cpu_buffer->commit_page) &&
Steven Rostedt3e89c7b2008-11-11 15:28:41 -05003620 (iter->head + length > rb_commit_index(cpu_buffer))))
3621 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003622
3623 rb_update_iter_read_stamp(iter, event);
3624
3625 iter->head += length;
3626
3627 /* check for end of page padding */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003628 if ((iter->head >= rb_page_size(iter->head_page)) &&
3629 (iter->head_page != cpu_buffer->commit_page))
Steven Rostedt771e0382012-11-30 10:41:57 -05003630 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003631}
3632
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003633static int rb_lost_events(struct ring_buffer_per_cpu *cpu_buffer)
3634{
3635 return cpu_buffer->lost_events;
3636}
3637
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003638static struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003639rb_buffer_peek(struct ring_buffer_per_cpu *cpu_buffer, u64 *ts,
3640 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003641{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003642 struct ring_buffer_event *event;
Steven Rostedtd7690412008-10-01 00:29:53 -04003643 struct buffer_page *reader;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003644 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003645
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003646 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003647 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003648 * We repeat when a time extend is encountered.
3649 * Since the time extend is always attached to a data event,
3650 * we should never loop more than once.
3651 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003652 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003653 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003654 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003655
Steven Rostedtd7690412008-10-01 00:29:53 -04003656 reader = rb_get_reader_page(cpu_buffer);
3657 if (!reader)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003658 return NULL;
3659
Steven Rostedtd7690412008-10-01 00:29:53 -04003660 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003661
Lai Jiangshan334d4162009-04-24 11:27:05 +08003662 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003663 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003664 if (rb_null_event(event))
3665 RB_WARN_ON(cpu_buffer, 1);
3666 /*
3667 * Because the writer could be discarding every
3668 * event it creates (which would probably be bad)
3669 * if we were to go back to "again" then we may never
3670 * catch up, and will trigger the warn on, or lock
3671 * the box. Return the padding, and we will release
3672 * the current locks, and try again.
3673 */
Tom Zanussi2d622712009-03-22 03:30:49 -05003674 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003675
3676 case RINGBUF_TYPE_TIME_EXTEND:
3677 /* Internal data, OK to advance */
Steven Rostedtd7690412008-10-01 00:29:53 -04003678 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003679 goto again;
3680
3681 case RINGBUF_TYPE_TIME_STAMP:
3682 /* FIXME: not implemented */
Steven Rostedtd7690412008-10-01 00:29:53 -04003683 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003684 goto again;
3685
3686 case RINGBUF_TYPE_DATA:
3687 if (ts) {
3688 *ts = cpu_buffer->read_stamp + event->time_delta;
Robert Richterd8eeb2d2009-07-31 14:58:04 +02003689 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
Steven Rostedt37886f62009-03-17 17:22:06 -04003690 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003691 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003692 if (lost_events)
3693 *lost_events = rb_lost_events(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003694 return event;
3695
3696 default:
3697 BUG();
3698 }
3699
3700 return NULL;
3701}
Robert Richterc4f50182008-12-11 16:49:22 +01003702EXPORT_SYMBOL_GPL(ring_buffer_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003703
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003704static struct ring_buffer_event *
3705rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003706{
3707 struct ring_buffer *buffer;
3708 struct ring_buffer_per_cpu *cpu_buffer;
3709 struct ring_buffer_event *event;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003710 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003711
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003712 cpu_buffer = iter->cpu_buffer;
3713 buffer = cpu_buffer->buffer;
3714
Steven Rostedt492a74f2010-01-25 15:17:47 -05003715 /*
3716 * Check if someone performed a consuming read to
3717 * the buffer. A consuming read invalidates the iterator
3718 * and we need to reset the iterator in this case.
3719 */
3720 if (unlikely(iter->cache_read != cpu_buffer->read ||
3721 iter->cache_reader_page != cpu_buffer->reader_page))
3722 rb_iter_reset(iter);
3723
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003724 again:
Steven Rostedt3c05d742010-01-26 16:14:08 -05003725 if (ring_buffer_iter_empty(iter))
3726 return NULL;
3727
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003728 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003729 * We repeat when a time extend is encountered.
3730 * Since the time extend is always attached to a data event,
3731 * we should never loop more than once.
3732 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003733 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003734 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003735 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003736
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003737 if (rb_per_cpu_empty(cpu_buffer))
3738 return NULL;
3739
Steven Rostedt3c05d742010-01-26 16:14:08 -05003740 if (iter->head >= local_read(&iter->head_page->page->commit)) {
3741 rb_inc_iter(iter);
3742 goto again;
3743 }
3744
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003745 event = rb_iter_head_event(iter);
3746
Lai Jiangshan334d4162009-04-24 11:27:05 +08003747 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003748 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003749 if (rb_null_event(event)) {
3750 rb_inc_iter(iter);
3751 goto again;
3752 }
3753 rb_advance_iter(iter);
3754 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003755
3756 case RINGBUF_TYPE_TIME_EXTEND:
3757 /* Internal data, OK to advance */
3758 rb_advance_iter(iter);
3759 goto again;
3760
3761 case RINGBUF_TYPE_TIME_STAMP:
3762 /* FIXME: not implemented */
3763 rb_advance_iter(iter);
3764 goto again;
3765
3766 case RINGBUF_TYPE_DATA:
3767 if (ts) {
3768 *ts = iter->read_stamp + event->time_delta;
Steven Rostedt37886f62009-03-17 17:22:06 -04003769 ring_buffer_normalize_time_stamp(buffer,
3770 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003771 }
3772 return event;
3773
3774 default:
3775 BUG();
3776 }
3777
3778 return NULL;
3779}
Robert Richterc4f50182008-12-11 16:49:22 +01003780EXPORT_SYMBOL_GPL(ring_buffer_iter_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003781
Steven Rostedt8d707e82009-06-16 21:22:48 -04003782static inline int rb_ok_to_lock(void)
3783{
3784 /*
3785 * If an NMI die dumps out the content of the ring buffer
3786 * do not grab locks. We also permanently disable the ring
3787 * buffer too. A one time deal is all you get from reading
3788 * the ring buffer from an NMI.
3789 */
Steven Rostedt464e85e2009-08-05 15:26:37 -04003790 if (likely(!in_nmi()))
Steven Rostedt8d707e82009-06-16 21:22:48 -04003791 return 1;
3792
3793 tracing_off_permanent();
3794 return 0;
3795}
3796
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003797/**
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003798 * ring_buffer_peek - peek at the next event to be read
3799 * @buffer: The ring buffer to read
3800 * @cpu: The cpu to peak at
3801 * @ts: The timestamp counter of this event.
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003802 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003803 *
3804 * This will return the event that will be read next, but does
3805 * not consume the data.
3806 */
3807struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003808ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
3809 unsigned long *lost_events)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003810{
3811 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8aabee52009-03-12 13:13:49 -04003812 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003813 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003814 int dolock;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003815
Steven Rostedt554f7862009-03-11 22:00:13 -04003816 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003817 return NULL;
Steven Rostedt554f7862009-03-11 22:00:13 -04003818
Steven Rostedt8d707e82009-06-16 21:22:48 -04003819 dolock = rb_ok_to_lock();
Tom Zanussi2d622712009-03-22 03:30:49 -05003820 again:
Steven Rostedt8d707e82009-06-16 21:22:48 -04003821 local_irq_save(flags);
3822 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003823 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003824 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
Robert Richter469535a2009-07-30 19:19:18 +02003825 if (event && event->type_len == RINGBUF_TYPE_PADDING)
3826 rb_advance_reader(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003827 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003828 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003829 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003830
Steven Rostedt1b959e12009-09-03 10:12:13 -04003831 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003832 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003833
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003834 return event;
3835}
3836
3837/**
3838 * ring_buffer_iter_peek - peek at the next event to be read
3839 * @iter: The ring buffer iterator
3840 * @ts: The timestamp counter of this event.
3841 *
3842 * This will return the event that will be read next, but does
3843 * not increment the iterator.
3844 */
3845struct ring_buffer_event *
3846ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
3847{
3848 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3849 struct ring_buffer_event *event;
3850 unsigned long flags;
3851
Tom Zanussi2d622712009-03-22 03:30:49 -05003852 again:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003853 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003854 event = rb_iter_peek(iter, ts);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003855 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003856
Steven Rostedt1b959e12009-09-03 10:12:13 -04003857 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003858 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003859
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003860 return event;
3861}
3862
3863/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003864 * ring_buffer_consume - return an event and consume it
3865 * @buffer: The ring buffer to get the next event from
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003866 * @cpu: the cpu to read the buffer from
3867 * @ts: a variable to store the timestamp (may be NULL)
3868 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003869 *
3870 * Returns the next event in the ring buffer, and that event is consumed.
3871 * Meaning, that sequential reads will keep returning a different event,
3872 * and eventually empty the ring buffer if the producer is slower.
3873 */
3874struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003875ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
3876 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003877{
Steven Rostedt554f7862009-03-11 22:00:13 -04003878 struct ring_buffer_per_cpu *cpu_buffer;
3879 struct ring_buffer_event *event = NULL;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003880 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003881 int dolock;
3882
3883 dolock = rb_ok_to_lock();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003884
Tom Zanussi2d622712009-03-22 03:30:49 -05003885 again:
Steven Rostedt554f7862009-03-11 22:00:13 -04003886 /* might be called in atomic */
3887 preempt_disable();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003888
Steven Rostedt554f7862009-03-11 22:00:13 -04003889 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3890 goto out;
3891
3892 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04003893 local_irq_save(flags);
3894 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003895 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003896
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003897 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
3898 if (event) {
3899 cpu_buffer->lost_events = 0;
Robert Richter469535a2009-07-30 19:19:18 +02003900 rb_advance_reader(cpu_buffer);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003901 }
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003902
Steven Rostedt8d707e82009-06-16 21:22:48 -04003903 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003904 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003905 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003906
Steven Rostedt554f7862009-03-11 22:00:13 -04003907 out:
3908 preempt_enable();
3909
Steven Rostedt1b959e12009-09-03 10:12:13 -04003910 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003911 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003912
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003913 return event;
3914}
Robert Richterc4f50182008-12-11 16:49:22 +01003915EXPORT_SYMBOL_GPL(ring_buffer_consume);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003916
3917/**
David Miller72c9ddf2010-04-20 15:47:11 -07003918 * ring_buffer_read_prepare - Prepare for a non consuming read of the buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003919 * @buffer: The ring buffer to read from
3920 * @cpu: The cpu buffer to iterate over
3921 *
David Miller72c9ddf2010-04-20 15:47:11 -07003922 * This performs the initial preparations necessary to iterate
3923 * through the buffer. Memory is allocated, buffer recording
3924 * is disabled, and the iterator pointer is returned to the caller.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003925 *
David Miller72c9ddf2010-04-20 15:47:11 -07003926 * Disabling buffer recordng prevents the reading from being
3927 * corrupted. This is not a consuming read, so a producer is not
3928 * expected.
3929 *
3930 * After a sequence of ring_buffer_read_prepare calls, the user is
3931 * expected to make at least one call to ring_buffer_prepare_sync.
3932 * Afterwards, ring_buffer_read_start is invoked to get things going
3933 * for real.
3934 *
3935 * This overall must be paired with ring_buffer_finish.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003936 */
3937struct ring_buffer_iter *
David Miller72c9ddf2010-04-20 15:47:11 -07003938ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003939{
3940 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003941 struct ring_buffer_iter *iter;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003942
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303943 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003944 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003945
3946 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3947 if (!iter)
Steven Rostedt8aabee52009-03-12 13:13:49 -04003948 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003949
3950 cpu_buffer = buffer->buffers[cpu];
3951
3952 iter->cpu_buffer = cpu_buffer;
3953
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07003954 atomic_inc(&buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003955 atomic_inc(&cpu_buffer->record_disabled);
David Miller72c9ddf2010-04-20 15:47:11 -07003956
3957 return iter;
3958}
3959EXPORT_SYMBOL_GPL(ring_buffer_read_prepare);
3960
3961/**
3962 * ring_buffer_read_prepare_sync - Synchronize a set of prepare calls
3963 *
3964 * All previously invoked ring_buffer_read_prepare calls to prepare
3965 * iterators will be synchronized. Afterwards, read_buffer_read_start
3966 * calls on those iterators are allowed.
3967 */
3968void
3969ring_buffer_read_prepare_sync(void)
3970{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003971 synchronize_sched();
David Miller72c9ddf2010-04-20 15:47:11 -07003972}
3973EXPORT_SYMBOL_GPL(ring_buffer_read_prepare_sync);
3974
3975/**
3976 * ring_buffer_read_start - start a non consuming read of the buffer
3977 * @iter: The iterator returned by ring_buffer_read_prepare
3978 *
3979 * This finalizes the startup of an iteration through the buffer.
3980 * The iterator comes from a call to ring_buffer_read_prepare and
3981 * an intervening ring_buffer_read_prepare_sync must have been
3982 * performed.
3983 *
3984 * Must be paired with ring_buffer_finish.
3985 */
3986void
3987ring_buffer_read_start(struct ring_buffer_iter *iter)
3988{
3989 struct ring_buffer_per_cpu *cpu_buffer;
3990 unsigned long flags;
3991
3992 if (!iter)
3993 return;
3994
3995 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003996
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02003997 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003998 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt642edba2008-11-12 00:01:26 -05003999 rb_iter_reset(iter);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004000 arch_spin_unlock(&cpu_buffer->lock);
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004001 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004002}
Robert Richterc4f50182008-12-11 16:49:22 +01004003EXPORT_SYMBOL_GPL(ring_buffer_read_start);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004004
4005/**
4006 * ring_buffer_finish - finish reading the iterator of the buffer
4007 * @iter: The iterator retrieved by ring_buffer_start
4008 *
4009 * This re-enables the recording to the buffer, and frees the
4010 * iterator.
4011 */
4012void
4013ring_buffer_read_finish(struct ring_buffer_iter *iter)
4014{
4015 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004016 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004017
Steven Rostedt659f4512012-05-14 17:02:33 -04004018 /*
4019 * Ring buffer is disabled from recording, here's a good place
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004020 * to check the integrity of the ring buffer.
4021 * Must prevent readers from trying to read, as the check
4022 * clears the HEAD page and readers require it.
Steven Rostedt659f4512012-05-14 17:02:33 -04004023 */
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004024 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt659f4512012-05-14 17:02:33 -04004025 rb_check_pages(cpu_buffer);
Steven Rostedt9366c1b2012-11-29 22:31:16 -05004026 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt659f4512012-05-14 17:02:33 -04004027
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004028 atomic_dec(&cpu_buffer->record_disabled);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004029 atomic_dec(&cpu_buffer->buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004030 kfree(iter);
4031}
Robert Richterc4f50182008-12-11 16:49:22 +01004032EXPORT_SYMBOL_GPL(ring_buffer_read_finish);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004033
4034/**
4035 * ring_buffer_read - read the next item in the ring buffer by the iterator
4036 * @iter: The ring buffer iterator
4037 * @ts: The time stamp of the event read.
4038 *
4039 * This reads the next event in the ring buffer and increments the iterator.
4040 */
4041struct ring_buffer_event *
4042ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts)
4043{
4044 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004045 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4046 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004047
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004048 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt7e9391c2009-09-03 10:02:09 -04004049 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004050 event = rb_iter_peek(iter, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004051 if (!event)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004052 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004053
Steven Rostedt7e9391c2009-09-03 10:02:09 -04004054 if (event->type_len == RINGBUF_TYPE_PADDING)
4055 goto again;
4056
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004057 rb_advance_iter(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004058 out:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004059 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004060
4061 return event;
4062}
Robert Richterc4f50182008-12-11 16:49:22 +01004063EXPORT_SYMBOL_GPL(ring_buffer_read);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004064
4065/**
4066 * ring_buffer_size - return the size of the ring buffer (in bytes)
4067 * @buffer: The ring buffer.
4068 */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004069unsigned long ring_buffer_size(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004070{
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004071 /*
4072 * Earlier, this method returned
4073 * BUF_PAGE_SIZE * buffer->nr_pages
4074 * Since the nr_pages field is now removed, we have converted this to
4075 * return the per cpu buffer value.
4076 */
4077 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4078 return 0;
4079
4080 return BUF_PAGE_SIZE * buffer->buffers[cpu]->nr_pages;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004081}
Robert Richterc4f50182008-12-11 16:49:22 +01004082EXPORT_SYMBOL_GPL(ring_buffer_size);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004083
4084static void
4085rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
4086{
Steven Rostedt77ae3652009-03-27 11:00:29 -04004087 rb_head_page_deactivate(cpu_buffer);
4088
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004089 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04004090 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04004091 local_set(&cpu_buffer->head_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004092 local_set(&cpu_buffer->head_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05004093 local_set(&cpu_buffer->head_page->page->commit, 0);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004094
Steven Rostedt6f807ac2008-10-04 02:00:58 -04004095 cpu_buffer->head_page->read = 0;
Steven Rostedtbf41a152008-10-04 02:00:59 -04004096
4097 cpu_buffer->tail_page = cpu_buffer->head_page;
4098 cpu_buffer->commit_page = cpu_buffer->head_page;
4099
4100 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Vaibhav Nagarnaik5040b4b2012-05-03 18:59:51 -07004101 INIT_LIST_HEAD(&cpu_buffer->new_pages);
Steven Rostedtbf41a152008-10-04 02:00:59 -04004102 local_set(&cpu_buffer->reader_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004103 local_set(&cpu_buffer->reader_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05004104 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04004105 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04004106
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004107 local_set(&cpu_buffer->entries_bytes, 0);
Steven Rostedt77ae3652009-03-27 11:00:29 -04004108 local_set(&cpu_buffer->overrun, 0);
Slava Pestov884bfe82011-07-15 14:23:58 -07004109 local_set(&cpu_buffer->commit_overrun, 0);
4110 local_set(&cpu_buffer->dropped_events, 0);
Steven Rostedte4906ef2009-04-30 20:49:44 -04004111 local_set(&cpu_buffer->entries, 0);
Steven Rostedtfa743952009-06-16 12:37:57 -04004112 local_set(&cpu_buffer->committing, 0);
4113 local_set(&cpu_buffer->commits, 0);
Steven Rostedt77ae3652009-03-27 11:00:29 -04004114 cpu_buffer->read = 0;
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004115 cpu_buffer->read_bytes = 0;
Steven Rostedt69507c02009-01-21 18:45:57 -05004116
4117 cpu_buffer->write_stamp = 0;
4118 cpu_buffer->read_stamp = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04004119
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004120 cpu_buffer->lost_events = 0;
4121 cpu_buffer->last_overrun = 0;
4122
Steven Rostedt77ae3652009-03-27 11:00:29 -04004123 rb_head_page_activate(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004124}
4125
4126/**
4127 * ring_buffer_reset_cpu - reset a ring buffer per CPU buffer
4128 * @buffer: The ring buffer to reset a per cpu buffer of
4129 * @cpu: The CPU buffer to be reset
4130 */
4131void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
4132{
4133 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4134 unsigned long flags;
4135
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304136 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004137 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004138
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004139 atomic_inc(&buffer->resize_disabled);
Steven Rostedt41ede232009-05-01 20:26:54 -04004140 atomic_inc(&cpu_buffer->record_disabled);
4141
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004142 /* Make sure all commits have finished */
4143 synchronize_sched();
4144
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004145 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004146
Steven Rostedt41b6a952009-09-02 09:59:48 -04004147 if (RB_WARN_ON(cpu_buffer, local_read(&cpu_buffer->committing)))
4148 goto out;
4149
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004150 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004151
4152 rb_reset_cpu(cpu_buffer);
4153
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004154 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01004155
Steven Rostedt41b6a952009-09-02 09:59:48 -04004156 out:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004157 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt41ede232009-05-01 20:26:54 -04004158
4159 atomic_dec(&cpu_buffer->record_disabled);
Vaibhav Nagarnaik83f40312012-05-03 18:59:50 -07004160 atomic_dec(&buffer->resize_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004161}
Robert Richterc4f50182008-12-11 16:49:22 +01004162EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004163
4164/**
4165 * ring_buffer_reset - reset a ring buffer
4166 * @buffer: The ring buffer to reset all cpu buffers
4167 */
4168void ring_buffer_reset(struct ring_buffer *buffer)
4169{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004170 int cpu;
4171
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004172 for_each_buffer_cpu(buffer, cpu)
Steven Rostedtd7690412008-10-01 00:29:53 -04004173 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004174}
Robert Richterc4f50182008-12-11 16:49:22 +01004175EXPORT_SYMBOL_GPL(ring_buffer_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004176
4177/**
4178 * rind_buffer_empty - is the ring buffer empty?
4179 * @buffer: The ring buffer to test
4180 */
4181int ring_buffer_empty(struct ring_buffer *buffer)
4182{
4183 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04004184 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04004185 int dolock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004186 int cpu;
Steven Rostedtd4788202009-06-17 00:39:43 -04004187 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004188
Steven Rostedt8d707e82009-06-16 21:22:48 -04004189 dolock = rb_ok_to_lock();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004190
4191 /* yes this is racy, but if you don't like the race, lock the buffer */
4192 for_each_buffer_cpu(buffer, cpu) {
4193 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004194 local_irq_save(flags);
4195 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004196 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedtd4788202009-06-17 00:39:43 -04004197 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004198 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004199 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004200 local_irq_restore(flags);
4201
Steven Rostedtd4788202009-06-17 00:39:43 -04004202 if (!ret)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004203 return 0;
4204 }
Steven Rostedt554f7862009-03-11 22:00:13 -04004205
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004206 return 1;
4207}
Robert Richterc4f50182008-12-11 16:49:22 +01004208EXPORT_SYMBOL_GPL(ring_buffer_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004209
4210/**
4211 * ring_buffer_empty_cpu - is a cpu buffer of a ring buffer empty?
4212 * @buffer: The ring buffer
4213 * @cpu: The CPU buffer to test
4214 */
4215int ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu)
4216{
4217 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04004218 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04004219 int dolock;
Steven Rostedt8aabee52009-03-12 13:13:49 -04004220 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004221
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304222 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04004223 return 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004224
Steven Rostedt8d707e82009-06-16 21:22:48 -04004225 dolock = rb_ok_to_lock();
Steven Rostedt554f7862009-03-11 22:00:13 -04004226
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004227 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04004228 local_irq_save(flags);
4229 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004230 raw_spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt554f7862009-03-11 22:00:13 -04004231 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004232 if (dolock)
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004233 raw_spin_unlock(&cpu_buffer->reader_lock);
Steven Rostedt8d707e82009-06-16 21:22:48 -04004234 local_irq_restore(flags);
Steven Rostedt554f7862009-03-11 22:00:13 -04004235
4236 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004237}
Robert Richterc4f50182008-12-11 16:49:22 +01004238EXPORT_SYMBOL_GPL(ring_buffer_empty_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004239
Steven Rostedt85bac322009-09-04 14:24:40 -04004240#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004241/**
4242 * ring_buffer_swap_cpu - swap a CPU buffer between two ring buffers
4243 * @buffer_a: One buffer to swap with
4244 * @buffer_b: The other buffer to swap with
4245 *
4246 * This function is useful for tracers that want to take a "snapshot"
4247 * of a CPU buffer and has another back up buffer lying around.
4248 * it is expected that the tracer handles the cpu buffer not being
4249 * used at the moment.
4250 */
4251int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
4252 struct ring_buffer *buffer_b, int cpu)
4253{
4254 struct ring_buffer_per_cpu *cpu_buffer_a;
4255 struct ring_buffer_per_cpu *cpu_buffer_b;
Steven Rostedt554f7862009-03-11 22:00:13 -04004256 int ret = -EINVAL;
4257
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304258 if (!cpumask_test_cpu(cpu, buffer_a->cpumask) ||
4259 !cpumask_test_cpu(cpu, buffer_b->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04004260 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004261
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004262 cpu_buffer_a = buffer_a->buffers[cpu];
4263 cpu_buffer_b = buffer_b->buffers[cpu];
4264
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004265 /* At least make sure the two buffers are somewhat the same */
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004266 if (cpu_buffer_a->nr_pages != cpu_buffer_b->nr_pages)
Steven Rostedt554f7862009-03-11 22:00:13 -04004267 goto out;
4268
4269 ret = -EAGAIN;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004270
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004271 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedt554f7862009-03-11 22:00:13 -04004272 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004273
4274 if (atomic_read(&buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004275 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004276
4277 if (atomic_read(&buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004278 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004279
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004280 if (atomic_read(&cpu_buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004281 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004282
4283 if (atomic_read(&cpu_buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04004284 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05004285
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004286 /*
4287 * We can't do a synchronize_sched here because this
4288 * function can be called in atomic context.
4289 * Normally this will be called from the same CPU as cpu.
4290 * If not it's up to the caller to protect this.
4291 */
4292 atomic_inc(&cpu_buffer_a->record_disabled);
4293 atomic_inc(&cpu_buffer_b->record_disabled);
4294
Steven Rostedt98277992009-09-02 10:56:15 -04004295 ret = -EBUSY;
4296 if (local_read(&cpu_buffer_a->committing))
4297 goto out_dec;
4298 if (local_read(&cpu_buffer_b->committing))
4299 goto out_dec;
4300
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004301 buffer_a->buffers[cpu] = cpu_buffer_b;
4302 buffer_b->buffers[cpu] = cpu_buffer_a;
4303
4304 cpu_buffer_b->buffer = buffer_a;
4305 cpu_buffer_a->buffer = buffer_b;
4306
Steven Rostedt98277992009-09-02 10:56:15 -04004307 ret = 0;
4308
4309out_dec:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004310 atomic_dec(&cpu_buffer_a->record_disabled);
4311 atomic_dec(&cpu_buffer_b->record_disabled);
Steven Rostedt554f7862009-03-11 22:00:13 -04004312out:
Steven Rostedt554f7862009-03-11 22:00:13 -04004313 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004314}
Robert Richterc4f50182008-12-11 16:49:22 +01004315EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
Steven Rostedt85bac322009-09-04 14:24:40 -04004316#endif /* CONFIG_RING_BUFFER_ALLOW_SWAP */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04004317
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004318/**
4319 * ring_buffer_alloc_read_page - allocate a page to read from buffer
4320 * @buffer: the buffer to allocate for.
4321 *
4322 * This function is used in conjunction with ring_buffer_read_page.
4323 * When reading a full page from the ring buffer, these functions
4324 * can be used to speed up the process. The calling function should
4325 * allocate a few pages first with this function. Then when it
4326 * needs to get pages from the ring buffer, it passes the result
4327 * of this function into ring_buffer_read_page, which will swap
4328 * the page that was allocated, with the read page of the buffer.
4329 *
4330 * Returns:
4331 * The page allocated, or NULL on error.
4332 */
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004333void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004334{
Steven Rostedt044fa782008-12-02 23:50:03 -05004335 struct buffer_data_page *bpage;
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004336 struct page *page;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004337
Vaibhav Nagarnaikd7ec4bf2011-06-07 17:01:42 -07004338 page = alloc_pages_node(cpu_to_node(cpu),
4339 GFP_KERNEL | __GFP_NORETRY, 0);
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004340 if (!page)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004341 return NULL;
4342
Vaibhav Nagarnaik7ea59062011-05-03 17:56:42 -07004343 bpage = page_address(page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004344
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004345 rb_init_page(bpage);
4346
Steven Rostedt044fa782008-12-02 23:50:03 -05004347 return bpage;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004348}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004349EXPORT_SYMBOL_GPL(ring_buffer_alloc_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004350
4351/**
4352 * ring_buffer_free_read_page - free an allocated read page
4353 * @buffer: the buffer the page was allocate for
4354 * @data: the page to free
4355 *
4356 * Free a page allocated from ring_buffer_alloc_read_page.
4357 */
4358void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data)
4359{
4360 free_page((unsigned long)data);
4361}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004362EXPORT_SYMBOL_GPL(ring_buffer_free_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004363
4364/**
4365 * ring_buffer_read_page - extract a page from the ring buffer
4366 * @buffer: buffer to extract from
4367 * @data_page: the page to use allocated from ring_buffer_alloc_read_page
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004368 * @len: amount to extract
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004369 * @cpu: the cpu of the buffer to extract
4370 * @full: should the extraction only happen when the page is full.
4371 *
4372 * This function will pull out a page from the ring buffer and consume it.
4373 * @data_page must be the address of the variable that was returned
4374 * from ring_buffer_alloc_read_page. This is because the page might be used
4375 * to swap with a page in the ring buffer.
4376 *
4377 * for example:
Lai Jiangshanb85fa012009-02-09 14:21:14 +08004378 * rpage = ring_buffer_alloc_read_page(buffer);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004379 * if (!rpage)
4380 * return error;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004381 * ret = ring_buffer_read_page(buffer, &rpage, len, cpu, 0);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004382 * if (ret >= 0)
4383 * process_page(rpage, ret);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004384 *
4385 * When @full is set, the function will not return true unless
4386 * the writer is off the reader page.
4387 *
4388 * Note: it is up to the calling functions to handle sleeps and wakeups.
4389 * The ring buffer can be used anywhere in the kernel and can not
4390 * blindly call wake_up. The layer that uses the ring buffer must be
4391 * responsible for that.
4392 *
4393 * Returns:
Lai Jiangshan667d2412009-02-09 14:21:17 +08004394 * >=0 if data has been transferred, returns the offset of consumed data.
4395 * <0 if no data has been transferred.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004396 */
4397int ring_buffer_read_page(struct ring_buffer *buffer,
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004398 void **data_page, size_t len, int cpu, int full)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004399{
4400 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4401 struct ring_buffer_event *event;
Steven Rostedt044fa782008-12-02 23:50:03 -05004402 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004403 struct buffer_page *reader;
Steven Rostedtff0ff842010-03-31 22:11:42 -04004404 unsigned long missed_events;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004405 unsigned long flags;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004406 unsigned int commit;
Lai Jiangshan667d2412009-02-09 14:21:17 +08004407 unsigned int read;
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004408 u64 save_timestamp;
Lai Jiangshan667d2412009-02-09 14:21:17 +08004409 int ret = -1;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004410
Steven Rostedt554f7862009-03-11 22:00:13 -04004411 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4412 goto out;
4413
Steven Rostedt474d32b2009-03-03 19:51:40 -05004414 /*
4415 * If len is not big enough to hold the page header, then
4416 * we can not copy anything.
4417 */
4418 if (len <= BUF_PAGE_HDR_SIZE)
Steven Rostedt554f7862009-03-11 22:00:13 -04004419 goto out;
Steven Rostedt474d32b2009-03-03 19:51:40 -05004420
4421 len -= BUF_PAGE_HDR_SIZE;
4422
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004423 if (!data_page)
Steven Rostedt554f7862009-03-11 22:00:13 -04004424 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004425
Steven Rostedt044fa782008-12-02 23:50:03 -05004426 bpage = *data_page;
4427 if (!bpage)
Steven Rostedt554f7862009-03-11 22:00:13 -04004428 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004429
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004430 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004431
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004432 reader = rb_get_reader_page(cpu_buffer);
4433 if (!reader)
Steven Rostedt554f7862009-03-11 22:00:13 -04004434 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004435
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004436 event = rb_reader_event(cpu_buffer);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004437
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004438 read = reader->read;
4439 commit = rb_page_commit(reader);
4440
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004441 /* Check if any events were dropped */
Steven Rostedtff0ff842010-03-31 22:11:42 -04004442 missed_events = cpu_buffer->lost_events;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004443
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004444 /*
Steven Rostedt474d32b2009-03-03 19:51:40 -05004445 * If this page has been partially read or
4446 * if len is not big enough to read the rest of the page or
4447 * a writer is still on the page, then
4448 * we must copy the data from the page to the buffer.
4449 * Otherwise, we can simply swap the page with the one passed in.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004450 */
Steven Rostedt474d32b2009-03-03 19:51:40 -05004451 if (read || (len < (commit - read)) ||
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004452 cpu_buffer->reader_page == cpu_buffer->commit_page) {
Lai Jiangshan667d2412009-02-09 14:21:17 +08004453 struct buffer_data_page *rpage = cpu_buffer->reader_page->page;
Steven Rostedt474d32b2009-03-03 19:51:40 -05004454 unsigned int rpos = read;
4455 unsigned int pos = 0;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004456 unsigned int size;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004457
4458 if (full)
Steven Rostedt554f7862009-03-11 22:00:13 -04004459 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004460
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004461 if (len > (commit - read))
4462 len = (commit - read);
4463
Steven Rostedt69d1b832010-10-07 18:18:05 -04004464 /* Always keep the time extend and data together */
4465 size = rb_event_ts_length(event);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004466
4467 if (len < size)
Steven Rostedt554f7862009-03-11 22:00:13 -04004468 goto out_unlock;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004469
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004470 /* save the current timestamp, since the user will need it */
4471 save_timestamp = cpu_buffer->read_stamp;
4472
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004473 /* Need to copy one event at a time */
4474 do {
David Sharpe1e35922010-12-22 16:38:24 -08004475 /* We need the size of one event, because
4476 * rb_advance_reader only advances by one event,
4477 * whereas rb_event_ts_length may include the size of
4478 * one or two events.
4479 * We have already ensured there's enough space if this
4480 * is a time extend. */
4481 size = rb_event_length(event);
Steven Rostedt474d32b2009-03-03 19:51:40 -05004482 memcpy(bpage->data + pos, rpage->data + rpos, size);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004483
4484 len -= size;
4485
4486 rb_advance_reader(cpu_buffer);
Steven Rostedt474d32b2009-03-03 19:51:40 -05004487 rpos = reader->read;
4488 pos += size;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004489
Huang Ying18fab912010-07-28 14:14:01 +08004490 if (rpos >= commit)
4491 break;
4492
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004493 event = rb_reader_event(cpu_buffer);
Steven Rostedt69d1b832010-10-07 18:18:05 -04004494 /* Always keep the time extend and data together */
4495 size = rb_event_ts_length(event);
David Sharpe1e35922010-12-22 16:38:24 -08004496 } while (len >= size);
Lai Jiangshan667d2412009-02-09 14:21:17 +08004497
4498 /* update bpage */
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004499 local_set(&bpage->commit, pos);
Steven Rostedt4f3640f2009-03-03 23:52:42 -05004500 bpage->time_stamp = save_timestamp;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004501
Steven Rostedt474d32b2009-03-03 19:51:40 -05004502 /* we copied everything to the beginning */
4503 read = 0;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004504 } else {
Steven Rostedtafbab762009-05-01 19:40:05 -04004505 /* update the entry counter */
Steven Rostedt77ae3652009-03-27 11:00:29 -04004506 cpu_buffer->read += rb_page_entries(reader);
Vaibhav Nagarnaikc64e1482011-08-16 14:46:16 -07004507 cpu_buffer->read_bytes += BUF_PAGE_SIZE;
Steven Rostedtafbab762009-05-01 19:40:05 -04004508
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004509 /* swap the pages */
Steven Rostedt044fa782008-12-02 23:50:03 -05004510 rb_init_page(bpage);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004511 bpage = reader->page;
4512 reader->page = *data_page;
4513 local_set(&reader->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04004514 local_set(&reader->entries, 0);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05004515 reader->read = 0;
Steven Rostedt044fa782008-12-02 23:50:03 -05004516 *data_page = bpage;
Steven Rostedtff0ff842010-03-31 22:11:42 -04004517
4518 /*
4519 * Use the real_end for the data size,
4520 * This gives us a chance to store the lost events
4521 * on the page.
4522 */
4523 if (reader->real_end)
4524 local_set(&bpage->commit, reader->real_end);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004525 }
Lai Jiangshan667d2412009-02-09 14:21:17 +08004526 ret = read;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004527
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004528 cpu_buffer->lost_events = 0;
Steven Rostedt2711ca22010-05-21 13:32:26 -04004529
4530 commit = local_read(&bpage->commit);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004531 /*
4532 * Set a flag in the commit field if we lost events
4533 */
Steven Rostedtff0ff842010-03-31 22:11:42 -04004534 if (missed_events) {
Steven Rostedtff0ff842010-03-31 22:11:42 -04004535 /* If there is room at the end of the page to save the
4536 * missed events, then record it there.
4537 */
4538 if (BUF_PAGE_SIZE - commit >= sizeof(missed_events)) {
4539 memcpy(&bpage->data[commit], &missed_events,
4540 sizeof(missed_events));
4541 local_add(RB_MISSED_STORED, &bpage->commit);
Steven Rostedt2711ca22010-05-21 13:32:26 -04004542 commit += sizeof(missed_events);
Steven Rostedtff0ff842010-03-31 22:11:42 -04004543 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004544 local_add(RB_MISSED_EVENTS, &bpage->commit);
Steven Rostedtff0ff842010-03-31 22:11:42 -04004545 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04004546
Steven Rostedt2711ca22010-05-21 13:32:26 -04004547 /*
4548 * This page may be off to user land. Zero it out here.
4549 */
4550 if (commit < BUF_PAGE_SIZE)
4551 memset(&bpage->data[commit], 0, BUF_PAGE_SIZE - commit);
4552
Steven Rostedt554f7862009-03-11 22:00:13 -04004553 out_unlock:
Thomas Gleixner5389f6f2009-07-25 17:13:33 +02004554 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004555
Steven Rostedt554f7862009-03-11 22:00:13 -04004556 out:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004557 return ret;
4558}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04004559EXPORT_SYMBOL_GPL(ring_buffer_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05004560
Steven Rostedt59222ef2009-03-12 11:46:03 -04004561#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01004562static int rb_cpu_notify(struct notifier_block *self,
4563 unsigned long action, void *hcpu)
Steven Rostedt554f7862009-03-11 22:00:13 -04004564{
4565 struct ring_buffer *buffer =
4566 container_of(self, struct ring_buffer, cpu_notify);
4567 long cpu = (long)hcpu;
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004568 int cpu_i, nr_pages_same;
4569 unsigned int nr_pages;
Steven Rostedt554f7862009-03-11 22:00:13 -04004570
4571 switch (action) {
4572 case CPU_UP_PREPARE:
4573 case CPU_UP_PREPARE_FROZEN:
Rusty Russell3f237a72009-06-12 21:15:30 +09304574 if (cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04004575 return NOTIFY_OK;
4576
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004577 nr_pages = 0;
4578 nr_pages_same = 1;
4579 /* check if all cpu sizes are same */
4580 for_each_buffer_cpu(buffer, cpu_i) {
4581 /* fill in the size from first enabled cpu */
4582 if (nr_pages == 0)
4583 nr_pages = buffer->buffers[cpu_i]->nr_pages;
4584 if (nr_pages != buffer->buffers[cpu_i]->nr_pages) {
4585 nr_pages_same = 0;
4586 break;
4587 }
4588 }
4589 /* allocate minimum pages, user can later expand it */
4590 if (!nr_pages_same)
4591 nr_pages = 2;
Steven Rostedt554f7862009-03-11 22:00:13 -04004592 buffer->buffers[cpu] =
Vaibhav Nagarnaik438ced12012-02-02 12:00:41 -08004593 rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
Steven Rostedt554f7862009-03-11 22:00:13 -04004594 if (!buffer->buffers[cpu]) {
4595 WARN(1, "failed to allocate ring buffer on CPU %ld\n",
4596 cpu);
4597 return NOTIFY_OK;
4598 }
4599 smp_wmb();
Rusty Russell3f237a72009-06-12 21:15:30 +09304600 cpumask_set_cpu(cpu, buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -04004601 break;
4602 case CPU_DOWN_PREPARE:
4603 case CPU_DOWN_PREPARE_FROZEN:
4604 /*
4605 * Do nothing.
4606 * If we were to free the buffer, then the user would
4607 * lose any trace that was in the buffer.
4608 */
4609 break;
4610 default:
4611 break;
4612 }
4613 return NOTIFY_OK;
4614}
4615#endif