blob: 269db80a961e8b8fb01b27b52ae4072829b7d2d5 [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 */
6#include <linux/ring_buffer.h>
Ingo Molnar14131f22009-02-26 18:47:11 +01007#include <linux/trace_clock.h>
Steven Rostedt78d904b2009-02-05 18:43:07 -05008#include <linux/ftrace_irq.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04009#include <linux/spinlock.h>
10#include <linux/debugfs.h>
11#include <linux/uaccess.h>
Steven Rostedta81bd802009-02-06 01:45:16 -050012#include <linux/hardirq.h>
Vegard Nossum1744a212009-02-28 08:29:44 +010013#include <linux/kmemcheck.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040014#include <linux/module.h>
15#include <linux/percpu.h>
16#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040018#include <linux/init.h>
19#include <linux/hash.h>
20#include <linux/list.h>
Steven Rostedt554f7862009-03-11 22:00:13 -040021#include <linux/cpu.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040022#include <linux/fs.h>
23
Christoph Lameter79615762010-01-05 15:34:50 +090024#include <asm/local.h>
Steven Rostedt182e9f52008-11-03 23:15:56 -050025#include "trace.h"
26
Steven Rostedt033601a2008-11-21 12:41:55 -050027/*
Steven Rostedtd1b182a2009-04-15 16:53:47 -040028 * The ring buffer header is special. We must manually up keep it.
29 */
30int ring_buffer_print_entry_header(struct trace_seq *s)
31{
32 int ret;
33
Lai Jiangshan334d4162009-04-24 11:27:05 +080034 ret = trace_seq_printf(s, "# compressed entry header\n");
35 ret = trace_seq_printf(s, "\ttype_len : 5 bits\n");
Steven Rostedtd1b182a2009-04-15 16:53:47 -040036 ret = trace_seq_printf(s, "\ttime_delta : 27 bits\n");
37 ret = trace_seq_printf(s, "\tarray : 32 bits\n");
38 ret = trace_seq_printf(s, "\n");
39 ret = trace_seq_printf(s, "\tpadding : type == %d\n",
40 RINGBUF_TYPE_PADDING);
41 ret = trace_seq_printf(s, "\ttime_extend : type == %d\n",
42 RINGBUF_TYPE_TIME_EXTEND);
Lai Jiangshan334d4162009-04-24 11:27:05 +080043 ret = trace_seq_printf(s, "\tdata max type_len == %d\n",
44 RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedtd1b182a2009-04-15 16:53:47 -040045
46 return ret;
47}
48
49/*
Steven Rostedt5cc98542009-03-12 22:24:17 -040050 * The ring buffer is made up of a list of pages. A separate list of pages is
51 * allocated for each CPU. A writer may only write to a buffer that is
52 * associated with the CPU it is currently executing on. A reader may read
53 * from any per cpu buffer.
54 *
55 * The reader is special. For each per cpu buffer, the reader has its own
56 * reader page. When a reader has read the entire reader page, this reader
57 * page is swapped with another page in the ring buffer.
58 *
59 * Now, as long as the writer is off the reader page, the reader can do what
60 * ever it wants with that page. The writer will never write to that page
61 * again (as long as it is out of the ring buffer).
62 *
63 * Here's some silly ASCII art.
64 *
65 * +------+
66 * |reader| RING BUFFER
67 * |page |
68 * +------+ +---+ +---+ +---+
69 * | |-->| |-->| |
70 * +---+ +---+ +---+
71 * ^ |
72 * | |
73 * +---------------+
74 *
75 *
76 * +------+
77 * |reader| RING BUFFER
78 * |page |------------------v
79 * +------+ +---+ +---+ +---+
80 * | |-->| |-->| |
81 * +---+ +---+ +---+
82 * ^ |
83 * | |
84 * +---------------+
85 *
86 *
87 * +------+
88 * |reader| RING BUFFER
89 * |page |------------------v
90 * +------+ +---+ +---+ +---+
91 * ^ | |-->| |-->| |
92 * | +---+ +---+ +---+
93 * | |
94 * | |
95 * +------------------------------+
96 *
97 *
98 * +------+
99 * |buffer| RING BUFFER
100 * |page |------------------v
101 * +------+ +---+ +---+ +---+
102 * ^ | | | |-->| |
103 * | New +---+ +---+ +---+
104 * | Reader------^ |
105 * | page |
106 * +------------------------------+
107 *
108 *
109 * After we make this swap, the reader can hand this page off to the splice
110 * code and be done with it. It can even allocate a new page if it needs to
111 * and swap that into the ring buffer.
112 *
113 * We will be using cmpxchg soon to make all this lockless.
114 *
115 */
116
117/*
Steven Rostedt033601a2008-11-21 12:41:55 -0500118 * A fast way to enable or disable all ring buffers is to
119 * call tracing_on or tracing_off. Turning off the ring buffers
120 * prevents all ring buffers from being recorded to.
121 * Turning this switch on, makes it OK to write to the
122 * ring buffer, if the ring buffer is enabled itself.
123 *
124 * There's three layers that must be on in order to write
125 * to the ring buffer.
126 *
127 * 1) This global flag must be set.
128 * 2) The ring buffer must be enabled for recording.
129 * 3) The per cpu buffer must be enabled for recording.
130 *
131 * In case of an anomaly, this global flag has a bit set that
132 * will permantly disable all ring buffers.
133 */
134
135/*
136 * Global flag to disable all recording to ring buffers
137 * This has two bits: ON, DISABLED
138 *
139 * ON DISABLED
140 * ---- ----------
141 * 0 0 : ring buffers are off
142 * 1 0 : ring buffers are on
143 * X 1 : ring buffers are permanently disabled
144 */
145
146enum {
147 RB_BUFFERS_ON_BIT = 0,
148 RB_BUFFERS_DISABLED_BIT = 1,
149};
150
151enum {
152 RB_BUFFERS_ON = 1 << RB_BUFFERS_ON_BIT,
153 RB_BUFFERS_DISABLED = 1 << RB_BUFFERS_DISABLED_BIT,
154};
155
Hannes Eder5e398412009-02-10 19:44:34 +0100156static unsigned long ring_buffer_flags __read_mostly = RB_BUFFERS_ON;
Steven Rostedta3583242008-11-11 15:01:42 -0500157
Steven Rostedt474d32b2009-03-03 19:51:40 -0500158#define BUF_PAGE_HDR_SIZE offsetof(struct buffer_data_page, data)
159
Steven Rostedta3583242008-11-11 15:01:42 -0500160/**
161 * tracing_on - enable all tracing buffers
162 *
163 * This function enables all tracing buffers that may have been
164 * disabled with tracing_off.
165 */
166void tracing_on(void)
167{
Steven Rostedt033601a2008-11-21 12:41:55 -0500168 set_bit(RB_BUFFERS_ON_BIT, &ring_buffer_flags);
Steven Rostedta3583242008-11-11 15:01:42 -0500169}
Robert Richterc4f50182008-12-11 16:49:22 +0100170EXPORT_SYMBOL_GPL(tracing_on);
Steven Rostedta3583242008-11-11 15:01:42 -0500171
172/**
173 * tracing_off - turn off all tracing buffers
174 *
175 * This function stops all tracing buffers from recording data.
176 * It does not disable any overhead the tracers themselves may
177 * be causing. This function simply causes all recording to
178 * the ring buffers to fail.
179 */
180void tracing_off(void)
181{
Steven Rostedt033601a2008-11-21 12:41:55 -0500182 clear_bit(RB_BUFFERS_ON_BIT, &ring_buffer_flags);
183}
Robert Richterc4f50182008-12-11 16:49:22 +0100184EXPORT_SYMBOL_GPL(tracing_off);
Steven Rostedt033601a2008-11-21 12:41:55 -0500185
186/**
187 * tracing_off_permanent - permanently disable ring buffers
188 *
189 * This function, once called, will disable all ring buffers
Wenji Huangc3706f02009-02-10 01:03:18 -0500190 * permanently.
Steven Rostedt033601a2008-11-21 12:41:55 -0500191 */
192void tracing_off_permanent(void)
193{
194 set_bit(RB_BUFFERS_DISABLED_BIT, &ring_buffer_flags);
Steven Rostedta3583242008-11-11 15:01:42 -0500195}
196
Steven Rostedt988ae9d2009-02-14 19:17:02 -0500197/**
198 * tracing_is_on - show state of ring buffers enabled
199 */
200int tracing_is_on(void)
201{
202 return ring_buffer_flags == RB_BUFFERS_ON;
203}
204EXPORT_SYMBOL_GPL(tracing_is_on);
205
Steven Rostedte3d6bf02009-03-03 13:53:07 -0500206#define RB_EVNT_HDR_SIZE (offsetof(struct ring_buffer_event, array))
Andrew Morton67d34722009-01-09 12:27:09 -0800207#define RB_ALIGNMENT 4U
Lai Jiangshan334d4162009-04-24 11:27:05 +0800208#define RB_MAX_SMALL_DATA (RB_ALIGNMENT * RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedtc7b09302009-06-11 11:12:00 -0400209#define RB_EVNT_MIN_SIZE 8U /* two 32bit words */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800210
Steven Rostedt22710482010-03-18 17:54:19 -0400211#if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
212# define RB_FORCE_8BYTE_ALIGNMENT 0
213# define RB_ARCH_ALIGNMENT RB_ALIGNMENT
214#else
215# define RB_FORCE_8BYTE_ALIGNMENT 1
216# define RB_ARCH_ALIGNMENT 8U
217#endif
218
Lai Jiangshan334d4162009-04-24 11:27:05 +0800219/* define RINGBUF_TYPE_DATA for 'case RINGBUF_TYPE_DATA:' */
220#define RINGBUF_TYPE_DATA 0 ... RINGBUF_TYPE_DATA_TYPE_LEN_MAX
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400221
222enum {
223 RB_LEN_TIME_EXTEND = 8,
224 RB_LEN_TIME_STAMP = 16,
225};
226
Steven Rostedt69d1b832010-10-07 18:18:05 -0400227#define skip_time_extend(event) \
228 ((struct ring_buffer_event *)((char *)event + RB_LEN_TIME_EXTEND))
229
Tom Zanussi2d622712009-03-22 03:30:49 -0500230static inline int rb_null_event(struct ring_buffer_event *event)
231{
Steven Rostedta1863c22009-09-03 10:23:58 -0400232 return event->type_len == RINGBUF_TYPE_PADDING && !event->time_delta;
Tom Zanussi2d622712009-03-22 03:30:49 -0500233}
234
235static void rb_event_set_padding(struct ring_buffer_event *event)
236{
Steven Rostedta1863c22009-09-03 10:23:58 -0400237 /* padding has a NULL time_delta */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800238 event->type_len = RINGBUF_TYPE_PADDING;
Tom Zanussi2d622712009-03-22 03:30:49 -0500239 event->time_delta = 0;
240}
241
Tom Zanussi2d622712009-03-22 03:30:49 -0500242static unsigned
243rb_event_data_length(struct ring_buffer_event *event)
244{
245 unsigned length;
246
Lai Jiangshan334d4162009-04-24 11:27:05 +0800247 if (event->type_len)
248 length = event->type_len * RB_ALIGNMENT;
Tom Zanussi2d622712009-03-22 03:30:49 -0500249 else
250 length = event->array[0];
251 return length + RB_EVNT_HDR_SIZE;
252}
253
Steven Rostedt69d1b832010-10-07 18:18:05 -0400254/*
255 * Return the length of the given event. Will return
256 * the length of the time extend if the event is a
257 * time extend.
258 */
259static inline unsigned
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400260rb_event_length(struct ring_buffer_event *event)
261{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800262 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400263 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -0500264 if (rb_null_event(event))
265 /* undefined */
266 return -1;
Lai Jiangshan334d4162009-04-24 11:27:05 +0800267 return event->array[0] + RB_EVNT_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400268
269 case RINGBUF_TYPE_TIME_EXTEND:
270 return RB_LEN_TIME_EXTEND;
271
272 case RINGBUF_TYPE_TIME_STAMP:
273 return RB_LEN_TIME_STAMP;
274
275 case RINGBUF_TYPE_DATA:
Tom Zanussi2d622712009-03-22 03:30:49 -0500276 return rb_event_data_length(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400277 default:
278 BUG();
279 }
280 /* not hit */
281 return 0;
282}
283
Steven Rostedt69d1b832010-10-07 18:18:05 -0400284/*
285 * Return total length of time extend and data,
286 * or just the event length for all other events.
287 */
288static inline unsigned
289rb_event_ts_length(struct ring_buffer_event *event)
290{
291 unsigned len = 0;
292
293 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
294 /* time extends include the data event after it */
295 len = RB_LEN_TIME_EXTEND;
296 event = skip_time_extend(event);
297 }
298 return len + rb_event_length(event);
299}
300
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400301/**
302 * ring_buffer_event_length - return the length of the event
303 * @event: the event to get the length of
Steven Rostedt69d1b832010-10-07 18:18:05 -0400304 *
305 * Returns the size of the data load of a data event.
306 * If the event is something other than a data event, it
307 * returns the size of the event itself. With the exception
308 * of a TIME EXTEND, where it still returns the size of the
309 * data load of the data event after it.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400310 */
311unsigned ring_buffer_event_length(struct ring_buffer_event *event)
312{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400313 unsigned length;
314
315 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
316 event = skip_time_extend(event);
317
318 length = rb_event_length(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800319 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Robert Richter465634a2009-01-07 15:32:11 +0100320 return length;
321 length -= RB_EVNT_HDR_SIZE;
322 if (length > RB_MAX_SMALL_DATA + sizeof(event->array[0]))
323 length -= sizeof(event->array[0]);
324 return length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400325}
Robert Richterc4f50182008-12-11 16:49:22 +0100326EXPORT_SYMBOL_GPL(ring_buffer_event_length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400327
328/* inline for ring buffer fast paths */
Andrew Morton34a148b2009-01-09 12:27:09 -0800329static void *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400330rb_event_data(struct ring_buffer_event *event)
331{
Steven Rostedt69d1b832010-10-07 18:18:05 -0400332 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
333 event = skip_time_extend(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800334 BUG_ON(event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400335 /* If length is in len field, then array[0] has the data */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800336 if (event->type_len)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400337 return (void *)&event->array[0];
338 /* Otherwise length is in array[0] and array[1] has the data */
339 return (void *)&event->array[1];
340}
341
342/**
343 * ring_buffer_event_data - return the data of the event
344 * @event: the event to get the data from
345 */
346void *ring_buffer_event_data(struct ring_buffer_event *event)
347{
348 return rb_event_data(event);
349}
Robert Richterc4f50182008-12-11 16:49:22 +0100350EXPORT_SYMBOL_GPL(ring_buffer_event_data);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400351
352#define for_each_buffer_cpu(buffer, cpu) \
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030353 for_each_cpu(cpu, buffer->cpumask)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400354
355#define TS_SHIFT 27
356#define TS_MASK ((1ULL << TS_SHIFT) - 1)
357#define TS_DELTA_TEST (~TS_MASK)
358
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400359/* Flag when events were overwritten */
360#define RB_MISSED_EVENTS (1 << 31)
Steven Rostedtff0ff842010-03-31 22:11:42 -0400361/* Missed count stored at end */
362#define RB_MISSED_STORED (1 << 30)
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400363
Steven Rostedtabc9b562008-12-02 15:34:06 -0500364struct buffer_data_page {
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400365 u64 time_stamp; /* page time stamp */
Wenji Huangc3706f02009-02-10 01:03:18 -0500366 local_t commit; /* write committed index */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500367 unsigned char data[]; /* data of buffer page */
368};
369
Steven Rostedt77ae3652009-03-27 11:00:29 -0400370/*
371 * Note, the buffer_page list must be first. The buffer pages
372 * are allocated in cache lines, which means that each buffer
373 * page will be at the beginning of a cache line, and thus
374 * the least significant bits will be zero. We use this to
375 * add flags in the list struct pointers, to make the ring buffer
376 * lockless.
377 */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500378struct buffer_page {
Steven Rostedt778c55d2009-05-01 18:44:45 -0400379 struct list_head list; /* list of buffer pages */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500380 local_t write; /* index for next write */
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400381 unsigned read; /* index for next read */
Steven Rostedt778c55d2009-05-01 18:44:45 -0400382 local_t entries; /* entries on this page */
Steven Rostedtff0ff842010-03-31 22:11:42 -0400383 unsigned long real_end; /* real end of data */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500384 struct buffer_data_page *page; /* Actual data page */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400385};
386
Steven Rostedt77ae3652009-03-27 11:00:29 -0400387/*
388 * The buffer page counters, write and entries, must be reset
389 * atomically when crossing page boundaries. To synchronize this
390 * update, two counters are inserted into the number. One is
391 * the actual counter for the write position or count on the page.
392 *
393 * The other is a counter of updaters. Before an update happens
394 * the update partition of the counter is incremented. This will
395 * allow the updater to update the counter atomically.
396 *
397 * The counter is 20 bits, and the state data is 12.
398 */
399#define RB_WRITE_MASK 0xfffff
400#define RB_WRITE_INTCNT (1 << 20)
401
Steven Rostedt044fa782008-12-02 23:50:03 -0500402static void rb_init_page(struct buffer_data_page *bpage)
Steven Rostedtabc9b562008-12-02 15:34:06 -0500403{
Steven Rostedt044fa782008-12-02 23:50:03 -0500404 local_set(&bpage->commit, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -0500405}
406
Steven Rostedt474d32b2009-03-03 19:51:40 -0500407/**
408 * ring_buffer_page_len - the size of data on the page.
409 * @page: The page to read
410 *
411 * Returns the amount of data on the page, including buffer page header.
412 */
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500413size_t ring_buffer_page_len(void *page)
414{
Steven Rostedt474d32b2009-03-03 19:51:40 -0500415 return local_read(&((struct buffer_data_page *)page)->commit)
416 + BUF_PAGE_HDR_SIZE;
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500417}
418
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400419/*
Steven Rostedted568292008-09-29 23:02:40 -0400420 * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing
421 * this issue out.
422 */
Andrew Morton34a148b2009-01-09 12:27:09 -0800423static void free_buffer_page(struct buffer_page *bpage)
Steven Rostedted568292008-09-29 23:02:40 -0400424{
Andrew Morton34a148b2009-01-09 12:27:09 -0800425 free_page((unsigned long)bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400426 kfree(bpage);
Steven Rostedted568292008-09-29 23:02:40 -0400427}
428
429/*
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400430 * We need to fit the time_stamp delta into 27 bits.
431 */
432static inline int test_time_stamp(u64 delta)
433{
434 if (delta & TS_DELTA_TEST)
435 return 1;
436 return 0;
437}
438
Steven Rostedt474d32b2009-03-03 19:51:40 -0500439#define BUF_PAGE_SIZE (PAGE_SIZE - BUF_PAGE_HDR_SIZE)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400440
Steven Rostedtbe957c42009-05-11 14:42:53 -0400441/* Max payload is BUF_PAGE_SIZE - header (8bytes) */
442#define BUF_MAX_DATA_SIZE (BUF_PAGE_SIZE - (sizeof(u32) * 2))
443
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400444int ring_buffer_print_page_header(struct trace_seq *s)
445{
446 struct buffer_data_page field;
447 int ret;
448
449 ret = trace_seq_printf(s, "\tfield: u64 timestamp;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500450 "offset:0;\tsize:%u;\tsigned:%u;\n",
451 (unsigned int)sizeof(field.time_stamp),
452 (unsigned int)is_signed_type(u64));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400453
454 ret = trace_seq_printf(s, "\tfield: local_t commit;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500455 "offset:%u;\tsize:%u;\tsigned:%u;\n",
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400456 (unsigned int)offsetof(typeof(field), commit),
Tom Zanussi26a50742009-10-06 01:09:50 -0500457 (unsigned int)sizeof(field.commit),
458 (unsigned int)is_signed_type(long));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400459
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400460 ret = trace_seq_printf(s, "\tfield: int overwrite;\t"
461 "offset:%u;\tsize:%u;\tsigned:%u;\n",
462 (unsigned int)offsetof(typeof(field), commit),
463 1,
464 (unsigned int)is_signed_type(long));
465
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400466 ret = trace_seq_printf(s, "\tfield: char data;\t"
Tom Zanussi26a50742009-10-06 01:09:50 -0500467 "offset:%u;\tsize:%u;\tsigned:%u;\n",
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400468 (unsigned int)offsetof(typeof(field), data),
Tom Zanussi26a50742009-10-06 01:09:50 -0500469 (unsigned int)BUF_PAGE_SIZE,
470 (unsigned int)is_signed_type(char));
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400471
472 return ret;
473}
474
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400475/*
476 * head_page == tail_page && head == tail then buffer is empty.
477 */
478struct ring_buffer_per_cpu {
479 int cpu;
Richard Kennedy985023d2010-03-25 11:27:36 +0000480 atomic_t record_disabled;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400481 struct ring_buffer *buffer;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400482 spinlock_t reader_lock; /* serialize readers */
Thomas Gleixner445c8952009-12-02 19:49:50 +0100483 arch_spinlock_t lock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400484 struct lock_class_key lock_key;
Steven Rostedt3adc54f2009-03-30 15:32:01 -0400485 struct list_head *pages;
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400486 struct buffer_page *head_page; /* read from head */
487 struct buffer_page *tail_page; /* write to tail */
Wenji Huangc3706f02009-02-10 01:03:18 -0500488 struct buffer_page *commit_page; /* committed pages */
Steven Rostedtd7690412008-10-01 00:29:53 -0400489 struct buffer_page *reader_page;
Steven Rostedt66a8cb92010-03-31 13:21:56 -0400490 unsigned long lost_events;
491 unsigned long last_overrun;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400492 local_t commit_overrun;
493 local_t overrun;
Steven Rostedte4906ef2009-04-30 20:49:44 -0400494 local_t entries;
Steven Rostedtfa743952009-06-16 12:37:57 -0400495 local_t committing;
496 local_t commits;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400497 unsigned long read;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400498 u64 write_stamp;
499 u64 read_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400500};
501
502struct ring_buffer {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400503 unsigned pages;
504 unsigned flags;
505 int cpus;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400506 atomic_t record_disabled;
Arnaldo Carvalho de Melo00f62f62009-02-09 17:04:06 -0200507 cpumask_var_t cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400508
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +0200509 struct lock_class_key *reader_lock_key;
510
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400511 struct mutex mutex;
512
513 struct ring_buffer_per_cpu **buffers;
Steven Rostedt554f7862009-03-11 22:00:13 -0400514
Steven Rostedt59222ef2009-03-12 11:46:03 -0400515#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400516 struct notifier_block cpu_notify;
517#endif
Steven Rostedt37886f62009-03-17 17:22:06 -0400518 u64 (*clock)(void);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400519};
520
521struct ring_buffer_iter {
522 struct ring_buffer_per_cpu *cpu_buffer;
523 unsigned long head;
524 struct buffer_page *head_page;
Steven Rostedt492a74f2010-01-25 15:17:47 -0500525 struct buffer_page *cache_reader_page;
526 unsigned long cache_read;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400527 u64 read_stamp;
528};
529
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500530/* buffer may be either ring_buffer or ring_buffer_per_cpu */
Steven Rostedt077c5402009-09-03 19:53:46 -0400531#define RB_WARN_ON(b, cond) \
532 ({ \
533 int _____ret = unlikely(cond); \
534 if (_____ret) { \
535 if (__same_type(*(b), struct ring_buffer_per_cpu)) { \
536 struct ring_buffer_per_cpu *__b = \
537 (void *)b; \
538 atomic_inc(&__b->buffer->record_disabled); \
539 } else \
540 atomic_inc(&b->record_disabled); \
541 WARN_ON(1); \
542 } \
543 _____ret; \
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500544 })
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500545
Steven Rostedt37886f62009-03-17 17:22:06 -0400546/* Up this if you want to test the TIME_EXTENTS and normalization */
547#define DEBUG_SHIFT 0
548
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400549static inline u64 rb_time_stamp(struct ring_buffer *buffer)
Steven Rostedt88eb0122009-05-11 16:28:23 -0400550{
551 /* shift to debug/test normalization and TIME_EXTENTS */
552 return buffer->clock() << DEBUG_SHIFT;
553}
554
Steven Rostedt37886f62009-03-17 17:22:06 -0400555u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu)
556{
557 u64 time;
558
559 preempt_disable_notrace();
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400560 time = rb_time_stamp(buffer);
Steven Rostedt37886f62009-03-17 17:22:06 -0400561 preempt_enable_no_resched_notrace();
562
563 return time;
564}
565EXPORT_SYMBOL_GPL(ring_buffer_time_stamp);
566
567void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
568 int cpu, u64 *ts)
569{
570 /* Just stupid testing the normalize function and deltas */
571 *ts >>= DEBUG_SHIFT;
572}
573EXPORT_SYMBOL_GPL(ring_buffer_normalize_time_stamp);
574
Steven Rostedt77ae3652009-03-27 11:00:29 -0400575/*
576 * Making the ring buffer lockless makes things tricky.
577 * Although writes only happen on the CPU that they are on,
578 * and they only need to worry about interrupts. Reads can
579 * happen on any CPU.
580 *
581 * The reader page is always off the ring buffer, but when the
582 * reader finishes with a page, it needs to swap its page with
583 * a new one from the buffer. The reader needs to take from
584 * the head (writes go to the tail). But if a writer is in overwrite
585 * mode and wraps, it must push the head page forward.
586 *
587 * Here lies the problem.
588 *
589 * The reader must be careful to replace only the head page, and
590 * not another one. As described at the top of the file in the
591 * ASCII art, the reader sets its old page to point to the next
592 * page after head. It then sets the page after head to point to
593 * the old reader page. But if the writer moves the head page
594 * during this operation, the reader could end up with the tail.
595 *
596 * We use cmpxchg to help prevent this race. We also do something
597 * special with the page before head. We set the LSB to 1.
598 *
599 * When the writer must push the page forward, it will clear the
600 * bit that points to the head page, move the head, and then set
601 * the bit that points to the new head page.
602 *
603 * We also don't want an interrupt coming in and moving the head
604 * page on another writer. Thus we use the second LSB to catch
605 * that too. Thus:
606 *
607 * head->list->prev->next bit 1 bit 0
608 * ------- -------
609 * Normal page 0 0
610 * Points to head page 0 1
611 * New head page 1 0
612 *
613 * Note we can not trust the prev pointer of the head page, because:
614 *
615 * +----+ +-----+ +-----+
616 * | |------>| T |---X--->| N |
617 * | |<------| | | |
618 * +----+ +-----+ +-----+
619 * ^ ^ |
620 * | +-----+ | |
621 * +----------| R |----------+ |
622 * | |<-----------+
623 * +-----+
624 *
625 * Key: ---X--> HEAD flag set in pointer
626 * T Tail page
627 * R Reader page
628 * N Next page
629 *
630 * (see __rb_reserve_next() to see where this happens)
631 *
632 * What the above shows is that the reader just swapped out
633 * the reader page with a page in the buffer, but before it
634 * could make the new header point back to the new page added
635 * it was preempted by a writer. The writer moved forward onto
636 * the new page added by the reader and is about to move forward
637 * again.
638 *
639 * You can see, it is legitimate for the previous pointer of
640 * the head (or any page) not to point back to itself. But only
641 * temporarially.
642 */
643
644#define RB_PAGE_NORMAL 0UL
645#define RB_PAGE_HEAD 1UL
646#define RB_PAGE_UPDATE 2UL
647
648
649#define RB_FLAG_MASK 3UL
650
651/* PAGE_MOVED is not part of the mask */
652#define RB_PAGE_MOVED 4UL
653
654/*
655 * rb_list_head - remove any bit
656 */
657static struct list_head *rb_list_head(struct list_head *list)
658{
659 unsigned long val = (unsigned long)list;
660
661 return (struct list_head *)(val & ~RB_FLAG_MASK);
662}
663
664/*
Jiri Olsa6d3f1e12009-10-23 19:36:19 -0400665 * rb_is_head_page - test if the given page is the head page
Steven Rostedt77ae3652009-03-27 11:00:29 -0400666 *
667 * Because the reader may move the head_page pointer, we can
668 * not trust what the head page is (it may be pointing to
669 * the reader page). But if the next page is a header page,
670 * its flags will be non zero.
671 */
672static int inline
673rb_is_head_page(struct ring_buffer_per_cpu *cpu_buffer,
674 struct buffer_page *page, struct list_head *list)
675{
676 unsigned long val;
677
678 val = (unsigned long)list->next;
679
680 if ((val & ~RB_FLAG_MASK) != (unsigned long)&page->list)
681 return RB_PAGE_MOVED;
682
683 return val & RB_FLAG_MASK;
684}
685
686/*
687 * rb_is_reader_page
688 *
689 * The unique thing about the reader page, is that, if the
690 * writer is ever on it, the previous pointer never points
691 * back to the reader page.
692 */
693static int rb_is_reader_page(struct buffer_page *page)
694{
695 struct list_head *list = page->list.prev;
696
697 return rb_list_head(list->next) != &page->list;
698}
699
700/*
701 * rb_set_list_to_head - set a list_head to be pointing to head.
702 */
703static void rb_set_list_to_head(struct ring_buffer_per_cpu *cpu_buffer,
704 struct list_head *list)
705{
706 unsigned long *ptr;
707
708 ptr = (unsigned long *)&list->next;
709 *ptr |= RB_PAGE_HEAD;
710 *ptr &= ~RB_PAGE_UPDATE;
711}
712
713/*
714 * rb_head_page_activate - sets up head page
715 */
716static void rb_head_page_activate(struct ring_buffer_per_cpu *cpu_buffer)
717{
718 struct buffer_page *head;
719
720 head = cpu_buffer->head_page;
721 if (!head)
722 return;
723
724 /*
725 * Set the previous list pointer to have the HEAD flag.
726 */
727 rb_set_list_to_head(cpu_buffer, head->list.prev);
728}
729
730static void rb_list_head_clear(struct list_head *list)
731{
732 unsigned long *ptr = (unsigned long *)&list->next;
733
734 *ptr &= ~RB_FLAG_MASK;
735}
736
737/*
738 * rb_head_page_dactivate - clears head page ptr (for free list)
739 */
740static void
741rb_head_page_deactivate(struct ring_buffer_per_cpu *cpu_buffer)
742{
743 struct list_head *hd;
744
745 /* Go through the whole list and clear any pointers found. */
746 rb_list_head_clear(cpu_buffer->pages);
747
748 list_for_each(hd, cpu_buffer->pages)
749 rb_list_head_clear(hd);
750}
751
752static int rb_head_page_set(struct ring_buffer_per_cpu *cpu_buffer,
753 struct buffer_page *head,
754 struct buffer_page *prev,
755 int old_flag, int new_flag)
756{
757 struct list_head *list;
758 unsigned long val = (unsigned long)&head->list;
759 unsigned long ret;
760
761 list = &prev->list;
762
763 val &= ~RB_FLAG_MASK;
764
Steven Rostedt08a40812009-09-14 09:31:35 -0400765 ret = cmpxchg((unsigned long *)&list->next,
766 val | old_flag, val | new_flag);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400767
768 /* check if the reader took the page */
769 if ((ret & ~RB_FLAG_MASK) != val)
770 return RB_PAGE_MOVED;
771
772 return ret & RB_FLAG_MASK;
773}
774
775static int rb_head_page_set_update(struct ring_buffer_per_cpu *cpu_buffer,
776 struct buffer_page *head,
777 struct buffer_page *prev,
778 int old_flag)
779{
780 return rb_head_page_set(cpu_buffer, head, prev,
781 old_flag, RB_PAGE_UPDATE);
782}
783
784static int rb_head_page_set_head(struct ring_buffer_per_cpu *cpu_buffer,
785 struct buffer_page *head,
786 struct buffer_page *prev,
787 int old_flag)
788{
789 return rb_head_page_set(cpu_buffer, head, prev,
790 old_flag, RB_PAGE_HEAD);
791}
792
793static int rb_head_page_set_normal(struct ring_buffer_per_cpu *cpu_buffer,
794 struct buffer_page *head,
795 struct buffer_page *prev,
796 int old_flag)
797{
798 return rb_head_page_set(cpu_buffer, head, prev,
799 old_flag, RB_PAGE_NORMAL);
800}
801
802static inline void rb_inc_page(struct ring_buffer_per_cpu *cpu_buffer,
803 struct buffer_page **bpage)
804{
805 struct list_head *p = rb_list_head((*bpage)->list.next);
806
807 *bpage = list_entry(p, struct buffer_page, list);
808}
809
810static struct buffer_page *
811rb_set_head_page(struct ring_buffer_per_cpu *cpu_buffer)
812{
813 struct buffer_page *head;
814 struct buffer_page *page;
815 struct list_head *list;
816 int i;
817
818 if (RB_WARN_ON(cpu_buffer, !cpu_buffer->head_page))
819 return NULL;
820
821 /* sanity check */
822 list = cpu_buffer->pages;
823 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev->next) != list))
824 return NULL;
825
826 page = head = cpu_buffer->head_page;
827 /*
828 * It is possible that the writer moves the header behind
829 * where we started, and we miss in one loop.
830 * A second loop should grab the header, but we'll do
831 * three loops just because I'm paranoid.
832 */
833 for (i = 0; i < 3; i++) {
834 do {
835 if (rb_is_head_page(cpu_buffer, page, page->list.prev)) {
836 cpu_buffer->head_page = page;
837 return page;
838 }
839 rb_inc_page(cpu_buffer, &page);
840 } while (page != head);
841 }
842
843 RB_WARN_ON(cpu_buffer, 1);
844
845 return NULL;
846}
847
848static int rb_head_page_replace(struct buffer_page *old,
849 struct buffer_page *new)
850{
851 unsigned long *ptr = (unsigned long *)&old->list.prev->next;
852 unsigned long val;
853 unsigned long ret;
854
855 val = *ptr & ~RB_FLAG_MASK;
856 val |= RB_PAGE_HEAD;
857
Steven Rostedt08a40812009-09-14 09:31:35 -0400858 ret = cmpxchg(ptr, val, (unsigned long)&new->list);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400859
860 return ret == val;
861}
862
863/*
864 * rb_tail_page_update - move the tail page forward
865 *
866 * Returns 1 if moved tail page, 0 if someone else did.
867 */
868static int rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
869 struct buffer_page *tail_page,
870 struct buffer_page *next_page)
871{
872 struct buffer_page *old_tail;
873 unsigned long old_entries;
874 unsigned long old_write;
875 int ret = 0;
876
877 /*
878 * The tail page now needs to be moved forward.
879 *
880 * We need to reset the tail page, but without messing
881 * with possible erasing of data brought in by interrupts
882 * that have moved the tail page and are currently on it.
883 *
884 * We add a counter to the write field to denote this.
885 */
886 old_write = local_add_return(RB_WRITE_INTCNT, &next_page->write);
887 old_entries = local_add_return(RB_WRITE_INTCNT, &next_page->entries);
888
889 /*
890 * Just make sure we have seen our old_write and synchronize
891 * with any interrupts that come in.
892 */
893 barrier();
894
895 /*
896 * If the tail page is still the same as what we think
897 * it is, then it is up to us to update the tail
898 * pointer.
899 */
900 if (tail_page == cpu_buffer->tail_page) {
901 /* Zero the write counter */
902 unsigned long val = old_write & ~RB_WRITE_MASK;
903 unsigned long eval = old_entries & ~RB_WRITE_MASK;
904
905 /*
906 * This will only succeed if an interrupt did
907 * not come in and change it. In which case, we
908 * do not want to modify it.
Lai Jiangshanda706d82009-07-15 16:27:30 +0800909 *
910 * We add (void) to let the compiler know that we do not care
911 * about the return value of these functions. We use the
912 * cmpxchg to only update if an interrupt did not already
913 * do it for us. If the cmpxchg fails, we don't care.
Steven Rostedt77ae3652009-03-27 11:00:29 -0400914 */
Lai Jiangshanda706d82009-07-15 16:27:30 +0800915 (void)local_cmpxchg(&next_page->write, old_write, val);
916 (void)local_cmpxchg(&next_page->entries, old_entries, eval);
Steven Rostedt77ae3652009-03-27 11:00:29 -0400917
918 /*
919 * No need to worry about races with clearing out the commit.
920 * it only can increment when a commit takes place. But that
921 * only happens in the outer most nested commit.
922 */
923 local_set(&next_page->page->commit, 0);
924
925 old_tail = cmpxchg(&cpu_buffer->tail_page,
926 tail_page, next_page);
927
928 if (old_tail == tail_page)
929 ret = 1;
930 }
931
932 return ret;
933}
934
935static int rb_check_bpage(struct ring_buffer_per_cpu *cpu_buffer,
936 struct buffer_page *bpage)
937{
938 unsigned long val = (unsigned long)bpage;
939
940 if (RB_WARN_ON(cpu_buffer, val & RB_FLAG_MASK))
941 return 1;
942
943 return 0;
944}
945
946/**
947 * rb_check_list - make sure a pointer to a list has the last bits zero
948 */
949static int rb_check_list(struct ring_buffer_per_cpu *cpu_buffer,
950 struct list_head *list)
951{
952 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev) != list->prev))
953 return 1;
954 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->next) != list->next))
955 return 1;
956 return 0;
957}
958
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400959/**
960 * check_pages - integrity check of buffer pages
961 * @cpu_buffer: CPU buffer with pages to test
962 *
Wenji Huangc3706f02009-02-10 01:03:18 -0500963 * As a safety measure we check to make sure the data pages have not
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400964 * been corrupted.
965 */
966static int rb_check_pages(struct ring_buffer_per_cpu *cpu_buffer)
967{
Steven Rostedt3adc54f2009-03-30 15:32:01 -0400968 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500969 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400970
Steven Rostedt77ae3652009-03-27 11:00:29 -0400971 rb_head_page_deactivate(cpu_buffer);
972
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500973 if (RB_WARN_ON(cpu_buffer, head->next->prev != head))
974 return -1;
975 if (RB_WARN_ON(cpu_buffer, head->prev->next != head))
976 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400977
Steven Rostedt77ae3652009-03-27 11:00:29 -0400978 if (rb_check_list(cpu_buffer, head))
979 return -1;
980
Steven Rostedt044fa782008-12-02 23:50:03 -0500981 list_for_each_entry_safe(bpage, tmp, head, list) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500982 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -0500983 bpage->list.next->prev != &bpage->list))
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500984 return -1;
985 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -0500986 bpage->list.prev->next != &bpage->list))
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500987 return -1;
Steven Rostedt77ae3652009-03-27 11:00:29 -0400988 if (rb_check_list(cpu_buffer, &bpage->list))
989 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400990 }
991
Steven Rostedt77ae3652009-03-27 11:00:29 -0400992 rb_head_page_activate(cpu_buffer);
993
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400994 return 0;
995}
996
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400997static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
998 unsigned nr_pages)
999{
Steven Rostedt044fa782008-12-02 23:50:03 -05001000 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001001 unsigned long addr;
1002 LIST_HEAD(pages);
1003 unsigned i;
1004
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001005 WARN_ON(!nr_pages);
1006
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001007 for (i = 0; i < nr_pages; i++) {
Steven Rostedt044fa782008-12-02 23:50:03 -05001008 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedtaa1e0e3b2008-10-02 19:18:09 -04001009 GFP_KERNEL, cpu_to_node(cpu_buffer->cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001010 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001011 goto free_pages;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001012
1013 rb_check_bpage(cpu_buffer, bpage);
1014
Steven Rostedt044fa782008-12-02 23:50:03 -05001015 list_add(&bpage->list, &pages);
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001016
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001017 addr = __get_free_page(GFP_KERNEL);
1018 if (!addr)
1019 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001020 bpage->page = (void *)addr;
1021 rb_init_page(bpage->page);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001022 }
1023
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001024 /*
1025 * The ring buffer page list is a circular list that does not
1026 * start and end with a list head. All page list items point to
1027 * other pages.
1028 */
1029 cpu_buffer->pages = pages.next;
1030 list_del(&pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001031
1032 rb_check_pages(cpu_buffer);
1033
1034 return 0;
1035
1036 free_pages:
Steven Rostedt044fa782008-12-02 23:50:03 -05001037 list_for_each_entry_safe(bpage, tmp, &pages, list) {
1038 list_del_init(&bpage->list);
1039 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001040 }
1041 return -ENOMEM;
1042}
1043
1044static struct ring_buffer_per_cpu *
1045rb_allocate_cpu_buffer(struct ring_buffer *buffer, int cpu)
1046{
1047 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt044fa782008-12-02 23:50:03 -05001048 struct buffer_page *bpage;
Steven Rostedtd7690412008-10-01 00:29:53 -04001049 unsigned long addr;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001050 int ret;
1051
1052 cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
1053 GFP_KERNEL, cpu_to_node(cpu));
1054 if (!cpu_buffer)
1055 return NULL;
1056
1057 cpu_buffer->cpu = cpu;
1058 cpu_buffer->buffer = buffer;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01001059 spin_lock_init(&cpu_buffer->reader_lock);
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001060 lockdep_set_class(&cpu_buffer->reader_lock, buffer->reader_lock_key);
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001061 cpu_buffer->lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001062
Steven Rostedt044fa782008-12-02 23:50:03 -05001063 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001064 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001065 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001066 goto fail_free_buffer;
1067
Steven Rostedt77ae3652009-03-27 11:00:29 -04001068 rb_check_bpage(cpu_buffer, bpage);
1069
Steven Rostedt044fa782008-12-02 23:50:03 -05001070 cpu_buffer->reader_page = bpage;
Steven Rostedtd7690412008-10-01 00:29:53 -04001071 addr = __get_free_page(GFP_KERNEL);
1072 if (!addr)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001073 goto fail_free_reader;
Steven Rostedt044fa782008-12-02 23:50:03 -05001074 bpage->page = (void *)addr;
1075 rb_init_page(bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001076
Steven Rostedtd7690412008-10-01 00:29:53 -04001077 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Steven Rostedtd7690412008-10-01 00:29:53 -04001078
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001079 ret = rb_allocate_pages(cpu_buffer, buffer->pages);
1080 if (ret < 0)
Steven Rostedtd7690412008-10-01 00:29:53 -04001081 goto fail_free_reader;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001082
1083 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001084 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001085 cpu_buffer->tail_page = cpu_buffer->commit_page = cpu_buffer->head_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001086
Steven Rostedt77ae3652009-03-27 11:00:29 -04001087 rb_head_page_activate(cpu_buffer);
1088
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001089 return cpu_buffer;
1090
Steven Rostedtd7690412008-10-01 00:29:53 -04001091 fail_free_reader:
1092 free_buffer_page(cpu_buffer->reader_page);
1093
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001094 fail_free_buffer:
1095 kfree(cpu_buffer);
1096 return NULL;
1097}
1098
1099static void rb_free_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
1100{
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001101 struct list_head *head = cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001102 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001103
Steven Rostedtd7690412008-10-01 00:29:53 -04001104 free_buffer_page(cpu_buffer->reader_page);
1105
Steven Rostedt77ae3652009-03-27 11:00:29 -04001106 rb_head_page_deactivate(cpu_buffer);
1107
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001108 if (head) {
1109 list_for_each_entry_safe(bpage, tmp, head, list) {
1110 list_del_init(&bpage->list);
1111 free_buffer_page(bpage);
1112 }
1113 bpage = list_entry(head, struct buffer_page, list);
Steven Rostedt044fa782008-12-02 23:50:03 -05001114 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001115 }
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001116
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001117 kfree(cpu_buffer);
1118}
1119
Steven Rostedt59222ef2009-03-12 11:46:03 -04001120#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01001121static int rb_cpu_notify(struct notifier_block *self,
1122 unsigned long action, void *hcpu);
Steven Rostedt554f7862009-03-11 22:00:13 -04001123#endif
1124
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001125/**
1126 * ring_buffer_alloc - allocate a new ring_buffer
Robert Richter68814b52008-11-24 12:24:12 +01001127 * @size: the size in bytes per cpu that is needed.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001128 * @flags: attributes to set for the ring buffer.
1129 *
1130 * Currently the only flag that is available is the RB_FL_OVERWRITE
1131 * flag. This flag means that the buffer will overwrite old data
1132 * when the buffer wraps. If this flag is not set, the buffer will
1133 * drop data when the tail hits the head.
1134 */
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001135struct ring_buffer *__ring_buffer_alloc(unsigned long size, unsigned flags,
1136 struct lock_class_key *key)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001137{
1138 struct ring_buffer *buffer;
1139 int bsize;
1140 int cpu;
1141
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001142 /* keep it in its own cache line */
1143 buffer = kzalloc(ALIGN(sizeof(*buffer), cache_line_size()),
1144 GFP_KERNEL);
1145 if (!buffer)
1146 return NULL;
1147
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301148 if (!alloc_cpumask_var(&buffer->cpumask, GFP_KERNEL))
1149 goto fail_free_buffer;
1150
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001151 buffer->pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1152 buffer->flags = flags;
Steven Rostedt37886f62009-03-17 17:22:06 -04001153 buffer->clock = trace_clock_local;
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001154 buffer->reader_lock_key = key;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001155
1156 /* need at least two pages */
Steven Rostedt5f78abe2009-06-17 14:11:10 -04001157 if (buffer->pages < 2)
1158 buffer->pages = 2;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001159
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +01001160 /*
1161 * In case of non-hotplug cpu, if the ring-buffer is allocated
1162 * in early initcall, it will not be notified of secondary cpus.
1163 * In that off case, we need to allocate for all possible cpus.
1164 */
1165#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001166 get_online_cpus();
1167 cpumask_copy(buffer->cpumask, cpu_online_mask);
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +01001168#else
1169 cpumask_copy(buffer->cpumask, cpu_possible_mask);
1170#endif
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001171 buffer->cpus = nr_cpu_ids;
1172
1173 bsize = sizeof(void *) * nr_cpu_ids;
1174 buffer->buffers = kzalloc(ALIGN(bsize, cache_line_size()),
1175 GFP_KERNEL);
1176 if (!buffer->buffers)
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301177 goto fail_free_cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001178
1179 for_each_buffer_cpu(buffer, cpu) {
1180 buffer->buffers[cpu] =
1181 rb_allocate_cpu_buffer(buffer, cpu);
1182 if (!buffer->buffers[cpu])
1183 goto fail_free_buffers;
1184 }
1185
Steven Rostedt59222ef2009-03-12 11:46:03 -04001186#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001187 buffer->cpu_notify.notifier_call = rb_cpu_notify;
1188 buffer->cpu_notify.priority = 0;
1189 register_cpu_notifier(&buffer->cpu_notify);
1190#endif
1191
1192 put_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001193 mutex_init(&buffer->mutex);
1194
1195 return buffer;
1196
1197 fail_free_buffers:
1198 for_each_buffer_cpu(buffer, cpu) {
1199 if (buffer->buffers[cpu])
1200 rb_free_cpu_buffer(buffer->buffers[cpu]);
1201 }
1202 kfree(buffer->buffers);
1203
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301204 fail_free_cpumask:
1205 free_cpumask_var(buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -04001206 put_online_cpus();
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301207
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001208 fail_free_buffer:
1209 kfree(buffer);
1210 return NULL;
1211}
Peter Zijlstra1f8a6a12009-06-08 18:18:39 +02001212EXPORT_SYMBOL_GPL(__ring_buffer_alloc);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001213
1214/**
1215 * ring_buffer_free - free a ring buffer.
1216 * @buffer: the buffer to free.
1217 */
1218void
1219ring_buffer_free(struct ring_buffer *buffer)
1220{
1221 int cpu;
1222
Steven Rostedt554f7862009-03-11 22:00:13 -04001223 get_online_cpus();
1224
Steven Rostedt59222ef2009-03-12 11:46:03 -04001225#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -04001226 unregister_cpu_notifier(&buffer->cpu_notify);
1227#endif
1228
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001229 for_each_buffer_cpu(buffer, cpu)
1230 rb_free_cpu_buffer(buffer->buffers[cpu]);
1231
Steven Rostedt554f7862009-03-11 22:00:13 -04001232 put_online_cpus();
1233
Eric Dumazetbd3f0222009-08-07 12:49:29 +02001234 kfree(buffer->buffers);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301235 free_cpumask_var(buffer->cpumask);
1236
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001237 kfree(buffer);
1238}
Robert Richterc4f50182008-12-11 16:49:22 +01001239EXPORT_SYMBOL_GPL(ring_buffer_free);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001240
Steven Rostedt37886f62009-03-17 17:22:06 -04001241void ring_buffer_set_clock(struct ring_buffer *buffer,
1242 u64 (*clock)(void))
1243{
1244 buffer->clock = clock;
1245}
1246
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001247static void rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer);
1248
1249static void
1250rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned nr_pages)
1251{
Steven Rostedt044fa782008-12-02 23:50:03 -05001252 struct buffer_page *bpage;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001253 struct list_head *p;
1254 unsigned i;
1255
Lai Jiangshanf7112942009-11-03 19:42:45 +08001256 spin_lock_irq(&cpu_buffer->reader_lock);
Steven Rostedt77ae3652009-03-27 11:00:29 -04001257 rb_head_page_deactivate(cpu_buffer);
1258
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001259 for (i = 0; i < nr_pages; i++) {
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001260 if (RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages)))
Julia Lawall292f60c2010-03-29 17:37:02 +02001261 goto out;
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001262 p = cpu_buffer->pages->next;
Steven Rostedt044fa782008-12-02 23:50:03 -05001263 bpage = list_entry(p, struct buffer_page, list);
1264 list_del_init(&bpage->list);
1265 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001266 }
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001267 if (RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages)))
Julia Lawall292f60c2010-03-29 17:37:02 +02001268 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001269
1270 rb_reset_cpu(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001271 rb_check_pages(cpu_buffer);
1272
Julia Lawall292f60c2010-03-29 17:37:02 +02001273out:
Steven Rostedtdd7f5942009-12-10 23:20:52 -05001274 spin_unlock_irq(&cpu_buffer->reader_lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001275}
1276
1277static void
1278rb_insert_pages(struct ring_buffer_per_cpu *cpu_buffer,
1279 struct list_head *pages, unsigned nr_pages)
1280{
Steven Rostedt044fa782008-12-02 23:50:03 -05001281 struct buffer_page *bpage;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001282 struct list_head *p;
1283 unsigned i;
1284
Steven Rostedt77ae3652009-03-27 11:00:29 -04001285 spin_lock_irq(&cpu_buffer->reader_lock);
1286 rb_head_page_deactivate(cpu_buffer);
1287
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001288 for (i = 0; i < nr_pages; i++) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001289 if (RB_WARN_ON(cpu_buffer, list_empty(pages)))
Julia Lawall292f60c2010-03-29 17:37:02 +02001290 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001291 p = pages->next;
Steven Rostedt044fa782008-12-02 23:50:03 -05001292 bpage = list_entry(p, struct buffer_page, list);
1293 list_del_init(&bpage->list);
Steven Rostedt3adc54f2009-03-30 15:32:01 -04001294 list_add_tail(&bpage->list, cpu_buffer->pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001295 }
1296 rb_reset_cpu(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001297 rb_check_pages(cpu_buffer);
1298
Julia Lawall292f60c2010-03-29 17:37:02 +02001299out:
Steven Rostedtdd7f5942009-12-10 23:20:52 -05001300 spin_unlock_irq(&cpu_buffer->reader_lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001301}
1302
1303/**
1304 * ring_buffer_resize - resize the ring buffer
1305 * @buffer: the buffer to resize.
1306 * @size: the new size.
1307 *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001308 * Minimum size is 2 * BUF_PAGE_SIZE.
1309 *
1310 * Returns -1 on failure.
1311 */
1312int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size)
1313{
1314 struct ring_buffer_per_cpu *cpu_buffer;
1315 unsigned nr_pages, rm_pages, new_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001316 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001317 unsigned long buffer_size;
1318 unsigned long addr;
1319 LIST_HEAD(pages);
1320 int i, cpu;
1321
Ingo Molnaree51a1d2008-11-13 14:58:31 +01001322 /*
1323 * Always succeed at resizing a non-existent buffer:
1324 */
1325 if (!buffer)
1326 return size;
1327
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001328 size = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1329 size *= BUF_PAGE_SIZE;
1330 buffer_size = buffer->pages * BUF_PAGE_SIZE;
1331
1332 /* we need a minimum of two pages */
1333 if (size < BUF_PAGE_SIZE * 2)
1334 size = BUF_PAGE_SIZE * 2;
1335
1336 if (size == buffer_size)
1337 return size;
1338
Steven Rostedt18421012009-12-10 22:54:27 -05001339 atomic_inc(&buffer->record_disabled);
1340
1341 /* Make sure all writers are done with this buffer. */
1342 synchronize_sched();
1343
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001344 mutex_lock(&buffer->mutex);
Steven Rostedt554f7862009-03-11 22:00:13 -04001345 get_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001346
1347 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1348
1349 if (size < buffer_size) {
1350
1351 /* easy case, just free pages */
Steven Rostedt554f7862009-03-11 22:00:13 -04001352 if (RB_WARN_ON(buffer, nr_pages >= buffer->pages))
1353 goto out_fail;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001354
1355 rm_pages = buffer->pages - nr_pages;
1356
1357 for_each_buffer_cpu(buffer, cpu) {
1358 cpu_buffer = buffer->buffers[cpu];
1359 rb_remove_pages(cpu_buffer, rm_pages);
1360 }
1361 goto out;
1362 }
1363
1364 /*
1365 * This is a bit more difficult. We only want to add pages
1366 * when we can allocate enough for all CPUs. We do this
1367 * by allocating all the pages and storing them on a local
1368 * link list. If we succeed in our allocation, then we
1369 * add these pages to the cpu_buffers. Otherwise we just free
1370 * them all and return -ENOMEM;
1371 */
Steven Rostedt554f7862009-03-11 22:00:13 -04001372 if (RB_WARN_ON(buffer, nr_pages <= buffer->pages))
1373 goto out_fail;
Steven Rostedtf536aaf2008-11-10 23:07:30 -05001374
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001375 new_pages = nr_pages - buffer->pages;
1376
1377 for_each_buffer_cpu(buffer, cpu) {
1378 for (i = 0; i < new_pages; i++) {
Steven Rostedt044fa782008-12-02 23:50:03 -05001379 bpage = kzalloc_node(ALIGN(sizeof(*bpage),
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001380 cache_line_size()),
1381 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -05001382 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -04001383 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001384 list_add(&bpage->list, &pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001385 addr = __get_free_page(GFP_KERNEL);
1386 if (!addr)
1387 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -05001388 bpage->page = (void *)addr;
1389 rb_init_page(bpage->page);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001390 }
1391 }
1392
1393 for_each_buffer_cpu(buffer, cpu) {
1394 cpu_buffer = buffer->buffers[cpu];
1395 rb_insert_pages(cpu_buffer, &pages, new_pages);
1396 }
1397
Steven Rostedt554f7862009-03-11 22:00:13 -04001398 if (RB_WARN_ON(buffer, !list_empty(&pages)))
1399 goto out_fail;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001400
1401 out:
1402 buffer->pages = nr_pages;
Steven Rostedt554f7862009-03-11 22:00:13 -04001403 put_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001404 mutex_unlock(&buffer->mutex);
1405
Steven Rostedt18421012009-12-10 22:54:27 -05001406 atomic_dec(&buffer->record_disabled);
1407
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001408 return size;
1409
1410 free_pages:
Steven Rostedt044fa782008-12-02 23:50:03 -05001411 list_for_each_entry_safe(bpage, tmp, &pages, list) {
1412 list_del_init(&bpage->list);
1413 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001414 }
Steven Rostedt554f7862009-03-11 22:00:13 -04001415 put_online_cpus();
Vegard Nossum641d2f62008-11-18 19:22:13 +01001416 mutex_unlock(&buffer->mutex);
Steven Rostedt18421012009-12-10 22:54:27 -05001417 atomic_dec(&buffer->record_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001418 return -ENOMEM;
Steven Rostedt554f7862009-03-11 22:00:13 -04001419
1420 /*
1421 * Something went totally wrong, and we are too paranoid
1422 * to even clean up the mess.
1423 */
1424 out_fail:
1425 put_online_cpus();
1426 mutex_unlock(&buffer->mutex);
Steven Rostedt18421012009-12-10 22:54:27 -05001427 atomic_dec(&buffer->record_disabled);
Steven Rostedt554f7862009-03-11 22:00:13 -04001428 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001429}
Robert Richterc4f50182008-12-11 16:49:22 +01001430EXPORT_SYMBOL_GPL(ring_buffer_resize);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001431
David Sharp750912f2010-12-08 13:46:47 -08001432void ring_buffer_change_overwrite(struct ring_buffer *buffer, int val)
1433{
1434 mutex_lock(&buffer->mutex);
1435 if (val)
1436 buffer->flags |= RB_FL_OVERWRITE;
1437 else
1438 buffer->flags &= ~RB_FL_OVERWRITE;
1439 mutex_unlock(&buffer->mutex);
1440}
1441EXPORT_SYMBOL_GPL(ring_buffer_change_overwrite);
1442
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001443static inline void *
Steven Rostedt044fa782008-12-02 23:50:03 -05001444__rb_data_page_index(struct buffer_data_page *bpage, unsigned index)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001445{
Steven Rostedt044fa782008-12-02 23:50:03 -05001446 return bpage->data + index;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05001447}
1448
Steven Rostedt044fa782008-12-02 23:50:03 -05001449static inline void *__rb_page_index(struct buffer_page *bpage, unsigned index)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001450{
Steven Rostedt044fa782008-12-02 23:50:03 -05001451 return bpage->page->data + index;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001452}
1453
1454static inline struct ring_buffer_event *
Steven Rostedtd7690412008-10-01 00:29:53 -04001455rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001456{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001457 return __rb_page_index(cpu_buffer->reader_page,
1458 cpu_buffer->reader_page->read);
1459}
1460
1461static inline struct ring_buffer_event *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001462rb_iter_head_event(struct ring_buffer_iter *iter)
1463{
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001464 return __rb_page_index(iter->head_page, iter->head);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001465}
1466
Steven Rostedt77ae3652009-03-27 11:00:29 -04001467static inline unsigned long rb_page_write(struct buffer_page *bpage)
Steven Rostedtbf41a152008-10-04 02:00:59 -04001468{
Steven Rostedt77ae3652009-03-27 11:00:29 -04001469 return local_read(&bpage->write) & RB_WRITE_MASK;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001470}
1471
1472static inline unsigned rb_page_commit(struct buffer_page *bpage)
1473{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001474 return local_read(&bpage->page->commit);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001475}
1476
Steven Rostedt77ae3652009-03-27 11:00:29 -04001477static inline unsigned long rb_page_entries(struct buffer_page *bpage)
1478{
1479 return local_read(&bpage->entries) & RB_WRITE_MASK;
1480}
1481
Steven Rostedtbf41a152008-10-04 02:00:59 -04001482/* Size is determined by what has been commited */
1483static inline unsigned rb_page_size(struct buffer_page *bpage)
1484{
1485 return rb_page_commit(bpage);
1486}
1487
1488static inline unsigned
1489rb_commit_index(struct ring_buffer_per_cpu *cpu_buffer)
1490{
1491 return rb_page_commit(cpu_buffer->commit_page);
1492}
1493
Steven Rostedtbf41a152008-10-04 02:00:59 -04001494static inline unsigned
1495rb_event_index(struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001496{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001497 unsigned long addr = (unsigned long)event;
1498
Steven Rostedt22f470f2009-06-11 09:29:58 -04001499 return (addr & ~PAGE_MASK) - BUF_PAGE_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001500}
1501
Steven Rostedt0f0c85f2009-05-11 16:08:00 -04001502static inline int
Steven Rostedtfa743952009-06-16 12:37:57 -04001503rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
1504 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001505{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001506 unsigned long addr = (unsigned long)event;
1507 unsigned long index;
1508
1509 index = rb_event_index(event);
1510 addr &= PAGE_MASK;
1511
1512 return cpu_buffer->commit_page->page == (void *)addr &&
1513 rb_commit_index(cpu_buffer) == index;
1514}
1515
Andrew Morton34a148b2009-01-09 12:27:09 -08001516static void
Steven Rostedtbf41a152008-10-04 02:00:59 -04001517rb_set_commit_to_write(struct ring_buffer_per_cpu *cpu_buffer)
1518{
Steven Rostedt77ae3652009-03-27 11:00:29 -04001519 unsigned long max_count;
1520
Steven Rostedtbf41a152008-10-04 02:00:59 -04001521 /*
1522 * We only race with interrupts and NMIs on this CPU.
1523 * If we own the commit event, then we can commit
1524 * all others that interrupted us, since the interruptions
1525 * are in stack format (they finish before they come
1526 * back to us). This allows us to do a simple loop to
1527 * assign the commit to the tail.
1528 */
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001529 again:
Steven Rostedt77ae3652009-03-27 11:00:29 -04001530 max_count = cpu_buffer->buffer->pages * 100;
1531
Steven Rostedtbf41a152008-10-04 02:00:59 -04001532 while (cpu_buffer->commit_page != cpu_buffer->tail_page) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001533 if (RB_WARN_ON(cpu_buffer, !(--max_count)))
1534 return;
1535 if (RB_WARN_ON(cpu_buffer,
1536 rb_is_reader_page(cpu_buffer->tail_page)))
1537 return;
1538 local_set(&cpu_buffer->commit_page->page->commit,
1539 rb_page_write(cpu_buffer->commit_page));
Steven Rostedtbf41a152008-10-04 02:00:59 -04001540 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001541 cpu_buffer->write_stamp =
1542 cpu_buffer->commit_page->page->time_stamp;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001543 /* add barrier to keep gcc from optimizing too much */
1544 barrier();
1545 }
1546 while (rb_commit_index(cpu_buffer) !=
1547 rb_page_write(cpu_buffer->commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001548
1549 local_set(&cpu_buffer->commit_page->page->commit,
1550 rb_page_write(cpu_buffer->commit_page));
1551 RB_WARN_ON(cpu_buffer,
1552 local_read(&cpu_buffer->commit_page->page->commit) &
1553 ~RB_WRITE_MASK);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001554 barrier();
1555 }
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001556
1557 /* again, keep gcc from optimizing */
1558 barrier();
1559
1560 /*
1561 * If an interrupt came in just after the first while loop
1562 * and pushed the tail page forward, we will be left with
1563 * a dangling commit that will never go forward.
1564 */
1565 if (unlikely(cpu_buffer->commit_page != cpu_buffer->tail_page))
1566 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001567}
1568
Steven Rostedtd7690412008-10-01 00:29:53 -04001569static void rb_reset_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001570{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001571 cpu_buffer->read_stamp = cpu_buffer->reader_page->page->time_stamp;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001572 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04001573}
1574
Andrew Morton34a148b2009-01-09 12:27:09 -08001575static void rb_inc_iter(struct ring_buffer_iter *iter)
Steven Rostedtd7690412008-10-01 00:29:53 -04001576{
1577 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1578
1579 /*
1580 * The iterator could be on the reader page (it starts there).
1581 * But the head could have moved, since the reader was
1582 * found. Check for this case and assign the iterator
1583 * to the head page instead of next.
1584 */
1585 if (iter->head_page == cpu_buffer->reader_page)
Steven Rostedt77ae3652009-03-27 11:00:29 -04001586 iter->head_page = rb_set_head_page(cpu_buffer);
Steven Rostedtd7690412008-10-01 00:29:53 -04001587 else
1588 rb_inc_page(cpu_buffer, &iter->head_page);
1589
Steven Rostedtabc9b562008-12-02 15:34:06 -05001590 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001591 iter->head = 0;
1592}
1593
Steven Rostedt69d1b832010-10-07 18:18:05 -04001594/* Slow path, do not inline */
1595static noinline struct ring_buffer_event *
1596rb_add_time_stamp(struct ring_buffer_event *event, u64 delta)
1597{
1598 event->type_len = RINGBUF_TYPE_TIME_EXTEND;
1599
1600 /* Not the first event on the page? */
1601 if (rb_event_index(event)) {
1602 event->time_delta = delta & TS_MASK;
1603 event->array[0] = delta >> TS_SHIFT;
1604 } else {
1605 /* nope, just zero it */
1606 event->time_delta = 0;
1607 event->array[0] = 0;
1608 }
1609
1610 return skip_time_extend(event);
1611}
1612
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001613/**
1614 * ring_buffer_update_event - update event type and data
1615 * @event: the even to update
1616 * @type: the type of event
1617 * @length: the size of the event field in the ring buffer
1618 *
1619 * Update the type and data fields of the event. The length
1620 * is the actual size that is written to the ring buffer,
1621 * and with this, we can determine what to place into the
1622 * data field.
1623 */
Andrew Morton34a148b2009-01-09 12:27:09 -08001624static void
Steven Rostedt69d1b832010-10-07 18:18:05 -04001625rb_update_event(struct ring_buffer_per_cpu *cpu_buffer,
1626 struct ring_buffer_event *event, unsigned length,
1627 int add_timestamp, u64 delta)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001628{
Steven Rostedt69d1b832010-10-07 18:18:05 -04001629 /* Only a commit updates the timestamp */
1630 if (unlikely(!rb_event_is_commit(cpu_buffer, event)))
1631 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001632
Steven Rostedt69d1b832010-10-07 18:18:05 -04001633 /*
1634 * If we need to add a timestamp, then we
1635 * add it to the start of the resevered space.
1636 */
1637 if (unlikely(add_timestamp)) {
1638 event = rb_add_time_stamp(event, delta);
1639 length -= RB_LEN_TIME_EXTEND;
1640 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001641 }
Steven Rostedt69d1b832010-10-07 18:18:05 -04001642
1643 event->time_delta = delta;
1644 length -= RB_EVNT_HDR_SIZE;
1645 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT) {
1646 event->type_len = 0;
1647 event->array[0] = length;
1648 } else
1649 event->type_len = DIV_ROUND_UP(length, RB_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001650}
1651
Steven Rostedt77ae3652009-03-27 11:00:29 -04001652/*
1653 * rb_handle_head_page - writer hit the head page
1654 *
1655 * Returns: +1 to retry page
1656 * 0 to continue
1657 * -1 on error
1658 */
1659static int
1660rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer,
1661 struct buffer_page *tail_page,
1662 struct buffer_page *next_page)
1663{
1664 struct buffer_page *new_head;
1665 int entries;
1666 int type;
1667 int ret;
1668
1669 entries = rb_page_entries(next_page);
1670
1671 /*
1672 * The hard part is here. We need to move the head
1673 * forward, and protect against both readers on
1674 * other CPUs and writers coming in via interrupts.
1675 */
1676 type = rb_head_page_set_update(cpu_buffer, next_page, tail_page,
1677 RB_PAGE_HEAD);
1678
1679 /*
1680 * type can be one of four:
1681 * NORMAL - an interrupt already moved it for us
1682 * HEAD - we are the first to get here.
1683 * UPDATE - we are the interrupt interrupting
1684 * a current move.
1685 * MOVED - a reader on another CPU moved the next
1686 * pointer to its reader page. Give up
1687 * and try again.
1688 */
1689
1690 switch (type) {
1691 case RB_PAGE_HEAD:
1692 /*
1693 * We changed the head to UPDATE, thus
1694 * it is our responsibility to update
1695 * the counters.
1696 */
1697 local_add(entries, &cpu_buffer->overrun);
1698
1699 /*
1700 * The entries will be zeroed out when we move the
1701 * tail page.
1702 */
1703
1704 /* still more to do */
1705 break;
1706
1707 case RB_PAGE_UPDATE:
1708 /*
1709 * This is an interrupt that interrupt the
1710 * previous update. Still more to do.
1711 */
1712 break;
1713 case RB_PAGE_NORMAL:
1714 /*
1715 * An interrupt came in before the update
1716 * and processed this for us.
1717 * Nothing left to do.
1718 */
1719 return 1;
1720 case RB_PAGE_MOVED:
1721 /*
1722 * The reader is on another CPU and just did
1723 * a swap with our next_page.
1724 * Try again.
1725 */
1726 return 1;
1727 default:
1728 RB_WARN_ON(cpu_buffer, 1); /* WTF??? */
1729 return -1;
1730 }
1731
1732 /*
1733 * Now that we are here, the old head pointer is
1734 * set to UPDATE. This will keep the reader from
1735 * swapping the head page with the reader page.
1736 * The reader (on another CPU) will spin till
1737 * we are finished.
1738 *
1739 * We just need to protect against interrupts
1740 * doing the job. We will set the next pointer
1741 * to HEAD. After that, we set the old pointer
1742 * to NORMAL, but only if it was HEAD before.
1743 * otherwise we are an interrupt, and only
1744 * want the outer most commit to reset it.
1745 */
1746 new_head = next_page;
1747 rb_inc_page(cpu_buffer, &new_head);
1748
1749 ret = rb_head_page_set_head(cpu_buffer, new_head, next_page,
1750 RB_PAGE_NORMAL);
1751
1752 /*
1753 * Valid returns are:
1754 * HEAD - an interrupt came in and already set it.
1755 * NORMAL - One of two things:
1756 * 1) We really set it.
1757 * 2) A bunch of interrupts came in and moved
1758 * the page forward again.
1759 */
1760 switch (ret) {
1761 case RB_PAGE_HEAD:
1762 case RB_PAGE_NORMAL:
1763 /* OK */
1764 break;
1765 default:
1766 RB_WARN_ON(cpu_buffer, 1);
1767 return -1;
1768 }
1769
1770 /*
1771 * It is possible that an interrupt came in,
1772 * set the head up, then more interrupts came in
1773 * and moved it again. When we get back here,
1774 * the page would have been set to NORMAL but we
1775 * just set it back to HEAD.
1776 *
1777 * How do you detect this? Well, if that happened
1778 * the tail page would have moved.
1779 */
1780 if (ret == RB_PAGE_NORMAL) {
1781 /*
1782 * If the tail had moved passed next, then we need
1783 * to reset the pointer.
1784 */
1785 if (cpu_buffer->tail_page != tail_page &&
1786 cpu_buffer->tail_page != next_page)
1787 rb_head_page_set_normal(cpu_buffer, new_head,
1788 next_page,
1789 RB_PAGE_HEAD);
1790 }
1791
1792 /*
1793 * If this was the outer most commit (the one that
1794 * changed the original pointer from HEAD to UPDATE),
1795 * then it is up to us to reset it to NORMAL.
1796 */
1797 if (type == RB_PAGE_HEAD) {
1798 ret = rb_head_page_set_normal(cpu_buffer, next_page,
1799 tail_page,
1800 RB_PAGE_UPDATE);
1801 if (RB_WARN_ON(cpu_buffer,
1802 ret != RB_PAGE_UPDATE))
1803 return -1;
1804 }
1805
1806 return 0;
1807}
1808
Andrew Morton34a148b2009-01-09 12:27:09 -08001809static unsigned rb_calculate_event_length(unsigned length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001810{
1811 struct ring_buffer_event event; /* Used only for sizeof array */
1812
1813 /* zero length can cause confusions */
1814 if (!length)
1815 length = 1;
1816
Steven Rostedt22710482010-03-18 17:54:19 -04001817 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001818 length += sizeof(event.array[0]);
1819
1820 length += RB_EVNT_HDR_SIZE;
Steven Rostedt22710482010-03-18 17:54:19 -04001821 length = ALIGN(length, RB_ARCH_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001822
1823 return length;
1824}
1825
Steven Rostedtc7b09302009-06-11 11:12:00 -04001826static inline void
1827rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
1828 struct buffer_page *tail_page,
1829 unsigned long tail, unsigned long length)
1830{
1831 struct ring_buffer_event *event;
1832
1833 /*
1834 * Only the event that crossed the page boundary
1835 * must fill the old tail_page with padding.
1836 */
1837 if (tail >= BUF_PAGE_SIZE) {
Steven Rostedtb3230c82010-05-21 11:55:21 -04001838 /*
1839 * If the page was filled, then we still need
1840 * to update the real_end. Reset it to zero
1841 * and the reader will ignore it.
1842 */
1843 if (tail == BUF_PAGE_SIZE)
1844 tail_page->real_end = 0;
1845
Steven Rostedtc7b09302009-06-11 11:12:00 -04001846 local_sub(length, &tail_page->write);
1847 return;
1848 }
1849
1850 event = __rb_page_index(tail_page, tail);
Linus Torvaldsb0b70652009-06-20 10:56:46 -07001851 kmemcheck_annotate_bitfield(event, bitfield);
Steven Rostedtc7b09302009-06-11 11:12:00 -04001852
1853 /*
Steven Rostedtff0ff842010-03-31 22:11:42 -04001854 * Save the original length to the meta data.
1855 * This will be used by the reader to add lost event
1856 * counter.
1857 */
1858 tail_page->real_end = tail;
1859
1860 /*
Steven Rostedtc7b09302009-06-11 11:12:00 -04001861 * If this event is bigger than the minimum size, then
1862 * we need to be careful that we don't subtract the
1863 * write counter enough to allow another writer to slip
1864 * in on this page.
1865 * We put in a discarded commit instead, to make sure
1866 * that this space is not used again.
1867 *
1868 * If we are less than the minimum size, we don't need to
1869 * worry about it.
1870 */
1871 if (tail > (BUF_PAGE_SIZE - RB_EVNT_MIN_SIZE)) {
1872 /* No room for any events */
1873
1874 /* Mark the rest of the page with padding */
1875 rb_event_set_padding(event);
1876
1877 /* Set the write back to the previous setting */
1878 local_sub(length, &tail_page->write);
1879 return;
1880 }
1881
1882 /* Put in a discarded event */
1883 event->array[0] = (BUF_PAGE_SIZE - tail) - RB_EVNT_HDR_SIZE;
1884 event->type_len = RINGBUF_TYPE_PADDING;
1885 /* time delta must be non zero */
1886 event->time_delta = 1;
Steven Rostedtc7b09302009-06-11 11:12:00 -04001887
1888 /* Set write to end of buffer */
1889 length = (tail + length) - BUF_PAGE_SIZE;
1890 local_sub(length, &tail_page->write);
1891}
Steven Rostedt6634ff22009-05-06 15:30:07 -04001892
Steven Rostedt747e94a2010-10-08 13:51:48 -04001893/*
1894 * This is the slow path, force gcc not to inline it.
1895 */
1896static noinline struct ring_buffer_event *
Steven Rostedt6634ff22009-05-06 15:30:07 -04001897rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
1898 unsigned long length, unsigned long tail,
Steven Rostedte8bc43e2010-10-20 10:58:02 -04001899 struct buffer_page *tail_page, u64 ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001900{
Steven Rostedt5a50e332009-11-17 08:43:01 -05001901 struct buffer_page *commit_page = cpu_buffer->commit_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001902 struct ring_buffer *buffer = cpu_buffer->buffer;
Steven Rostedt77ae3652009-03-27 11:00:29 -04001903 struct buffer_page *next_page;
1904 int ret;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001905
1906 next_page = tail_page;
1907
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001908 rb_inc_page(cpu_buffer, &next_page);
1909
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001910 /*
1911 * If for some reason, we had an interrupt storm that made
1912 * it all the way around the buffer, bail, and warn
1913 * about it.
1914 */
1915 if (unlikely(next_page == commit_page)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04001916 local_inc(&cpu_buffer->commit_overrun);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001917 goto out_reset;
1918 }
1919
Steven Rostedt77ae3652009-03-27 11:00:29 -04001920 /*
1921 * This is where the fun begins!
1922 *
1923 * We are fighting against races between a reader that
1924 * could be on another CPU trying to swap its reader
1925 * page with the buffer head.
1926 *
1927 * We are also fighting against interrupts coming in and
1928 * moving the head or tail on us as well.
1929 *
1930 * If the next page is the head page then we have filled
1931 * the buffer, unless the commit page is still on the
1932 * reader page.
1933 */
1934 if (rb_is_head_page(cpu_buffer, next_page, &tail_page->list)) {
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001935
Steven Rostedt77ae3652009-03-27 11:00:29 -04001936 /*
1937 * If the commit is not on the reader page, then
1938 * move the header page.
1939 */
1940 if (!rb_is_reader_page(cpu_buffer->commit_page)) {
1941 /*
1942 * If we are not in overwrite mode,
1943 * this is easy, just stop here.
1944 */
1945 if (!(buffer->flags & RB_FL_OVERWRITE))
1946 goto out_reset;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001947
Steven Rostedt77ae3652009-03-27 11:00:29 -04001948 ret = rb_handle_head_page(cpu_buffer,
1949 tail_page,
1950 next_page);
1951 if (ret < 0)
1952 goto out_reset;
1953 if (ret)
1954 goto out_again;
1955 } else {
1956 /*
1957 * We need to be careful here too. The
1958 * commit page could still be on the reader
1959 * page. We could have a small buffer, and
1960 * have filled up the buffer with events
1961 * from interrupts and such, and wrapped.
1962 *
1963 * Note, if the tail page is also the on the
1964 * reader_page, we let it move out.
1965 */
1966 if (unlikely((cpu_buffer->commit_page !=
1967 cpu_buffer->tail_page) &&
1968 (cpu_buffer->commit_page ==
1969 cpu_buffer->reader_page))) {
1970 local_inc(&cpu_buffer->commit_overrun);
1971 goto out_reset;
1972 }
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001973 }
1974 }
1975
Steven Rostedt77ae3652009-03-27 11:00:29 -04001976 ret = rb_tail_page_update(cpu_buffer, tail_page, next_page);
1977 if (ret) {
1978 /*
1979 * Nested commits always have zero deltas, so
1980 * just reread the time stamp
1981 */
Steven Rostedte8bc43e2010-10-20 10:58:02 -04001982 ts = rb_time_stamp(buffer);
1983 next_page->page->time_stamp = ts;
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001984 }
1985
Steven Rostedt77ae3652009-03-27 11:00:29 -04001986 out_again:
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001987
Steven Rostedt77ae3652009-03-27 11:00:29 -04001988 rb_reset_tail(cpu_buffer, tail_page, tail, length);
Steven Rostedtaa20ae82009-05-05 21:16:11 -04001989
1990 /* fail and let the caller try again */
1991 return ERR_PTR(-EAGAIN);
1992
Steven Rostedt45141d42009-02-12 13:19:48 -05001993 out_reset:
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08001994 /* reset write */
Steven Rostedtc7b09302009-06-11 11:12:00 -04001995 rb_reset_tail(cpu_buffer, tail_page, tail, length);
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08001996
Steven Rostedtbf41a152008-10-04 02:00:59 -04001997 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001998}
1999
Steven Rostedt6634ff22009-05-06 15:30:07 -04002000static struct ring_buffer_event *
2001__rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt69d1b832010-10-07 18:18:05 -04002002 unsigned long length, u64 ts,
2003 u64 delta, int add_timestamp)
Steven Rostedt6634ff22009-05-06 15:30:07 -04002004{
Steven Rostedt5a50e332009-11-17 08:43:01 -05002005 struct buffer_page *tail_page;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002006 struct ring_buffer_event *event;
2007 unsigned long tail, write;
2008
Steven Rostedt69d1b832010-10-07 18:18:05 -04002009 /*
2010 * If the time delta since the last event is too big to
2011 * hold in the time field of the event, then we append a
2012 * TIME EXTEND event ahead of the data event.
2013 */
2014 if (unlikely(add_timestamp))
2015 length += RB_LEN_TIME_EXTEND;
2016
Steven Rostedt6634ff22009-05-06 15:30:07 -04002017 tail_page = cpu_buffer->tail_page;
2018 write = local_add_return(length, &tail_page->write);
Steven Rostedt77ae3652009-03-27 11:00:29 -04002019
2020 /* set write to only the index of the write */
2021 write &= RB_WRITE_MASK;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002022 tail = write - length;
2023
2024 /* See if we shot pass the end of this buffer page */
Steven Rostedt747e94a2010-10-08 13:51:48 -04002025 if (unlikely(write > BUF_PAGE_SIZE))
Steven Rostedt6634ff22009-05-06 15:30:07 -04002026 return rb_move_tail(cpu_buffer, length, tail,
Steven Rostedt5a50e332009-11-17 08:43:01 -05002027 tail_page, ts);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002028
2029 /* We reserved something on the buffer */
2030
Steven Rostedt6634ff22009-05-06 15:30:07 -04002031 event = __rb_page_index(tail_page, tail);
Vegard Nossum1744a212009-02-28 08:29:44 +01002032 kmemcheck_annotate_bitfield(event, bitfield);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002033 rb_update_event(cpu_buffer, event, length, add_timestamp, delta);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002034
Steven Rostedt69d1b832010-10-07 18:18:05 -04002035 local_inc(&tail_page->entries);
Steven Rostedt6634ff22009-05-06 15:30:07 -04002036
2037 /*
Steven Rostedtfa743952009-06-16 12:37:57 -04002038 * If this is the first commit on the page, then update
2039 * its timestamp.
Steven Rostedt6634ff22009-05-06 15:30:07 -04002040 */
Steven Rostedtfa743952009-06-16 12:37:57 -04002041 if (!tail)
Steven Rostedte8bc43e2010-10-20 10:58:02 -04002042 tail_page->page->time_stamp = ts;
Steven Rostedt6634ff22009-05-06 15:30:07 -04002043
2044 return event;
2045}
2046
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002047static inline int
2048rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
2049 struct ring_buffer_event *event)
2050{
2051 unsigned long new_index, old_index;
2052 struct buffer_page *bpage;
2053 unsigned long index;
2054 unsigned long addr;
2055
2056 new_index = rb_event_index(event);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002057 old_index = new_index + rb_event_ts_length(event);
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002058 addr = (unsigned long)event;
2059 addr &= PAGE_MASK;
2060
2061 bpage = cpu_buffer->tail_page;
2062
2063 if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002064 unsigned long write_mask =
2065 local_read(&bpage->write) & ~RB_WRITE_MASK;
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002066 /*
2067 * This is on the tail page. It is possible that
2068 * a write could come in and move the tail page
2069 * and write to the next page. That is fine
2070 * because we just shorten what is on this page.
2071 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04002072 old_index += write_mask;
2073 new_index += write_mask;
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002074 index = local_cmpxchg(&bpage->write, old_index, new_index);
2075 if (index == old_index)
2076 return 1;
2077 }
2078
2079 /* could not discard */
2080 return 0;
2081}
2082
Steven Rostedtfa743952009-06-16 12:37:57 -04002083static void rb_start_commit(struct ring_buffer_per_cpu *cpu_buffer)
2084{
2085 local_inc(&cpu_buffer->committing);
2086 local_inc(&cpu_buffer->commits);
2087}
2088
Steven Rostedtd9abde22010-10-19 13:17:08 -04002089static inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtfa743952009-06-16 12:37:57 -04002090{
2091 unsigned long commits;
2092
2093 if (RB_WARN_ON(cpu_buffer,
2094 !local_read(&cpu_buffer->committing)))
2095 return;
2096
2097 again:
2098 commits = local_read(&cpu_buffer->commits);
2099 /* synchronize with interrupts */
2100 barrier();
2101 if (local_read(&cpu_buffer->committing) == 1)
2102 rb_set_commit_to_write(cpu_buffer);
2103
2104 local_dec(&cpu_buffer->committing);
2105
2106 /* synchronize with interrupts */
2107 barrier();
2108
2109 /*
2110 * Need to account for interrupts coming in between the
2111 * updating of the commit page and the clearing of the
2112 * committing counter.
2113 */
2114 if (unlikely(local_read(&cpu_buffer->commits) != commits) &&
2115 !local_read(&cpu_buffer->committing)) {
2116 local_inc(&cpu_buffer->committing);
2117 goto again;
2118 }
2119}
2120
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002121static struct ring_buffer_event *
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002122rb_reserve_next_event(struct ring_buffer *buffer,
2123 struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt1cd8d732009-05-11 14:08:09 -04002124 unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002125{
2126 struct ring_buffer_event *event;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002127 u64 ts, delta;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002128 int nr_loops = 0;
Steven Rostedt69d1b832010-10-07 18:18:05 -04002129 int add_timestamp;
Steven Rostedt140ff892010-10-08 10:50:30 -04002130 u64 diff;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002131
Steven Rostedtfa743952009-06-16 12:37:57 -04002132 rb_start_commit(cpu_buffer);
2133
Steven Rostedt85bac322009-09-04 14:24:40 -04002134#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002135 /*
2136 * Due to the ability to swap a cpu buffer from a buffer
2137 * it is possible it was swapped before we committed.
2138 * (committing stops a swap). We check for it here and
2139 * if it happened, we have to fail the write.
2140 */
2141 barrier();
2142 if (unlikely(ACCESS_ONCE(cpu_buffer->buffer) != buffer)) {
2143 local_dec(&cpu_buffer->committing);
2144 local_dec(&cpu_buffer->commits);
2145 return NULL;
2146 }
Steven Rostedt85bac322009-09-04 14:24:40 -04002147#endif
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002148
Steven Rostedtbe957c42009-05-11 14:42:53 -04002149 length = rb_calculate_event_length(length);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002150 again:
Steven Rostedt69d1b832010-10-07 18:18:05 -04002151 add_timestamp = 0;
2152 delta = 0;
2153
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002154 /*
2155 * We allow for interrupts to reenter here and do a trace.
2156 * If one does, it will cause this original code to loop
2157 * back here. Even with heavy interrupts happening, this
2158 * should only happen a few times in a row. If this happens
2159 * 1000 times in a row, there must be either an interrupt
2160 * storm or we have something buggy.
2161 * Bail!
2162 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002163 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))
Steven Rostedtfa743952009-06-16 12:37:57 -04002164 goto out_fail;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002165
Jiri Olsa6d3f1e12009-10-23 19:36:19 -04002166 ts = rb_time_stamp(cpu_buffer->buffer);
Steven Rostedt140ff892010-10-08 10:50:30 -04002167 diff = ts - cpu_buffer->write_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002168
Steven Rostedt140ff892010-10-08 10:50:30 -04002169 /* make sure this diff is calculated here */
2170 barrier();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002171
Steven Rostedt140ff892010-10-08 10:50:30 -04002172 /* Did the write stamp get updated already? */
2173 if (likely(ts >= cpu_buffer->write_stamp)) {
Steven Rostedt168b6b12009-05-11 22:11:05 -04002174 delta = diff;
2175 if (unlikely(test_time_stamp(delta))) {
Steven Rostedt69d1b832010-10-07 18:18:05 -04002176 WARN_ONCE(delta > (1ULL << 59),
Ingo Molnare9345aa2011-02-18 08:09:49 +01002177 KERN_WARNING "Delta way too big! %llu ts=%llu write stamp = %llu\n",
Steven Rostedt69d1b832010-10-07 18:18:05 -04002178 (unsigned long long)delta,
2179 (unsigned long long)ts,
Ingo Molnare9345aa2011-02-18 08:09:49 +01002180 (unsigned long long)cpu_buffer->write_stamp);
Steven Rostedt69d1b832010-10-07 18:18:05 -04002181 add_timestamp = 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002182 }
Steven Rostedt168b6b12009-05-11 22:11:05 -04002183 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002184
Steven Rostedt69d1b832010-10-07 18:18:05 -04002185 event = __rb_reserve_next(cpu_buffer, length, ts,
2186 delta, add_timestamp);
Steven Rostedt168b6b12009-05-11 22:11:05 -04002187 if (unlikely(PTR_ERR(event) == -EAGAIN))
Steven Rostedtbf41a152008-10-04 02:00:59 -04002188 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002189
Steven Rostedtfa743952009-06-16 12:37:57 -04002190 if (!event)
2191 goto out_fail;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002192
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002193 return event;
Steven Rostedtfa743952009-06-16 12:37:57 -04002194
2195 out_fail:
2196 rb_end_commit(cpu_buffer);
2197 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002198}
2199
Paul Mundt1155de42009-06-25 14:30:12 +09002200#ifdef CONFIG_TRACING
2201
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002202#define TRACE_RECURSIVE_DEPTH 16
Steven Rostedt261842b2009-04-16 21:41:52 -04002203
Steven Rostedtd9abde22010-10-19 13:17:08 -04002204/* Keep this code out of the fast path cache */
2205static noinline void trace_recursive_fail(void)
Steven Rostedt261842b2009-04-16 21:41:52 -04002206{
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002207 /* Disable all tracing before we do anything else */
2208 tracing_off_permanent();
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02002209
Steven Rostedt7d7d2b82009-04-27 12:37:49 -04002210 printk_once(KERN_WARNING "Tracing recursion: depth[%ld]:"
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002211 "HC[%lu]:SC[%lu]:NMI[%lu]\n",
2212 current->trace_recursion,
2213 hardirq_count() >> HARDIRQ_SHIFT,
2214 softirq_count() >> SOFTIRQ_SHIFT,
2215 in_nmi());
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02002216
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002217 WARN_ON_ONCE(1);
Steven Rostedtd9abde22010-10-19 13:17:08 -04002218}
2219
2220static inline int trace_recursive_lock(void)
2221{
2222 current->trace_recursion++;
2223
2224 if (likely(current->trace_recursion < TRACE_RECURSIVE_DEPTH))
2225 return 0;
2226
2227 trace_recursive_fail();
2228
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002229 return -1;
Steven Rostedt261842b2009-04-16 21:41:52 -04002230}
2231
Steven Rostedtd9abde22010-10-19 13:17:08 -04002232static inline void trace_recursive_unlock(void)
Steven Rostedt261842b2009-04-16 21:41:52 -04002233{
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002234 WARN_ON_ONCE(!current->trace_recursion);
Steven Rostedt261842b2009-04-16 21:41:52 -04002235
Steven Rostedtaa18efb2009-04-20 16:16:11 -04002236 current->trace_recursion--;
Steven Rostedt261842b2009-04-16 21:41:52 -04002237}
2238
Paul Mundt1155de42009-06-25 14:30:12 +09002239#else
2240
2241#define trace_recursive_lock() (0)
2242#define trace_recursive_unlock() do { } while (0)
2243
2244#endif
2245
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002246/**
2247 * ring_buffer_lock_reserve - reserve a part of the buffer
2248 * @buffer: the ring buffer to reserve from
2249 * @length: the length of the data to reserve (excluding event header)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002250 *
2251 * Returns a reseverd event on the ring buffer to copy directly to.
2252 * The user of this interface will need to get the body to write into
2253 * and can use the ring_buffer_event_data() interface.
2254 *
2255 * The length is the length of the data needed, not the event length
2256 * which also includes the event header.
2257 *
2258 * Must be paired with ring_buffer_unlock_commit, unless NULL is returned.
2259 * If NULL is returned, then nothing has been allocated or locked.
2260 */
2261struct ring_buffer_event *
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002262ring_buffer_lock_reserve(struct ring_buffer *buffer, unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002263{
2264 struct ring_buffer_per_cpu *cpu_buffer;
2265 struct ring_buffer_event *event;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002266 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002267
Steven Rostedt033601a2008-11-21 12:41:55 -05002268 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05002269 return NULL;
2270
Steven Rostedtbf41a152008-10-04 02:00:59 -04002271 /* If we are tracing schedule, we don't want to recurse */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002272 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002273
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08002274 if (atomic_read(&buffer->record_disabled))
2275 goto out_nocheck;
2276
Steven Rostedt261842b2009-04-16 21:41:52 -04002277 if (trace_recursive_lock())
2278 goto out_nocheck;
2279
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002280 cpu = raw_smp_processor_id();
2281
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302282 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04002283 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002284
2285 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002286
2287 if (atomic_read(&cpu_buffer->record_disabled))
Steven Rostedtd7690412008-10-01 00:29:53 -04002288 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002289
Steven Rostedtbe957c42009-05-11 14:42:53 -04002290 if (length > BUF_MAX_DATA_SIZE)
Steven Rostedtbf41a152008-10-04 02:00:59 -04002291 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002292
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002293 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002294 if (!event)
Steven Rostedtd7690412008-10-01 00:29:53 -04002295 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002296
2297 return event;
2298
Steven Rostedtd7690412008-10-01 00:29:53 -04002299 out:
Steven Rostedt261842b2009-04-16 21:41:52 -04002300 trace_recursive_unlock();
2301
2302 out_nocheck:
Steven Rostedt5168ae52010-06-03 09:36:50 -04002303 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002304 return NULL;
2305}
Robert Richterc4f50182008-12-11 16:49:22 +01002306EXPORT_SYMBOL_GPL(ring_buffer_lock_reserve);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002307
Steven Rostedta1863c22009-09-03 10:23:58 -04002308static void
2309rb_update_write_stamp(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002310 struct ring_buffer_event *event)
2311{
Steven Rostedt69d1b832010-10-07 18:18:05 -04002312 u64 delta;
2313
Steven Rostedtfa743952009-06-16 12:37:57 -04002314 /*
2315 * The event first in the commit queue updates the
2316 * time stamp.
2317 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04002318 if (rb_event_is_commit(cpu_buffer, event)) {
2319 /*
2320 * A commit event that is first on a page
2321 * updates the write timestamp with the page stamp
2322 */
2323 if (!rb_event_index(event))
2324 cpu_buffer->write_stamp =
2325 cpu_buffer->commit_page->page->time_stamp;
2326 else if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
2327 delta = event->array[0];
2328 delta <<= TS_SHIFT;
2329 delta += event->time_delta;
2330 cpu_buffer->write_stamp += delta;
2331 } else
2332 cpu_buffer->write_stamp += event->time_delta;
2333 }
Steven Rostedta1863c22009-09-03 10:23:58 -04002334}
Steven Rostedtbf41a152008-10-04 02:00:59 -04002335
Steven Rostedta1863c22009-09-03 10:23:58 -04002336static void rb_commit(struct ring_buffer_per_cpu *cpu_buffer,
2337 struct ring_buffer_event *event)
2338{
2339 local_inc(&cpu_buffer->entries);
2340 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa743952009-06-16 12:37:57 -04002341 rb_end_commit(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002342}
2343
2344/**
2345 * ring_buffer_unlock_commit - commit a reserved
2346 * @buffer: The buffer to commit to
2347 * @event: The event pointer to commit.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002348 *
2349 * This commits the data to the ring buffer, and releases any locks held.
2350 *
2351 * Must be paired with ring_buffer_lock_reserve.
2352 */
2353int ring_buffer_unlock_commit(struct ring_buffer *buffer,
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02002354 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002355{
2356 struct ring_buffer_per_cpu *cpu_buffer;
2357 int cpu = raw_smp_processor_id();
2358
2359 cpu_buffer = buffer->buffers[cpu];
2360
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002361 rb_commit(cpu_buffer, event);
2362
Steven Rostedt261842b2009-04-16 21:41:52 -04002363 trace_recursive_unlock();
2364
Steven Rostedt5168ae52010-06-03 09:36:50 -04002365 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002366
2367 return 0;
2368}
Robert Richterc4f50182008-12-11 16:49:22 +01002369EXPORT_SYMBOL_GPL(ring_buffer_unlock_commit);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002370
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002371static inline void rb_event_discard(struct ring_buffer_event *event)
2372{
Steven Rostedt69d1b832010-10-07 18:18:05 -04002373 if (event->type_len == RINGBUF_TYPE_TIME_EXTEND)
2374 event = skip_time_extend(event);
2375
Lai Jiangshan334d4162009-04-24 11:27:05 +08002376 /* array[0] holds the actual length for the discarded event */
2377 event->array[0] = rb_event_data_length(event) - RB_EVNT_HDR_SIZE;
2378 event->type_len = RINGBUF_TYPE_PADDING;
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002379 /* time delta must be non zero */
2380 if (!event->time_delta)
2381 event->time_delta = 1;
2382}
2383
Steven Rostedta1863c22009-09-03 10:23:58 -04002384/*
2385 * Decrement the entries to the page that an event is on.
2386 * The event does not even need to exist, only the pointer
2387 * to the page it is on. This may only be called before the commit
2388 * takes place.
2389 */
2390static inline void
2391rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
2392 struct ring_buffer_event *event)
2393{
2394 unsigned long addr = (unsigned long)event;
2395 struct buffer_page *bpage = cpu_buffer->commit_page;
2396 struct buffer_page *start;
2397
2398 addr &= PAGE_MASK;
2399
2400 /* Do the likely case first */
2401 if (likely(bpage->page == (void *)addr)) {
2402 local_dec(&bpage->entries);
2403 return;
2404 }
2405
2406 /*
2407 * Because the commit page may be on the reader page we
2408 * start with the next page and check the end loop there.
2409 */
2410 rb_inc_page(cpu_buffer, &bpage);
2411 start = bpage;
2412 do {
2413 if (bpage->page == (void *)addr) {
2414 local_dec(&bpage->entries);
2415 return;
2416 }
2417 rb_inc_page(cpu_buffer, &bpage);
2418 } while (bpage != start);
2419
2420 /* commit not part of this buffer?? */
2421 RB_WARN_ON(cpu_buffer, 1);
2422}
2423
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002424/**
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002425 * ring_buffer_commit_discard - discard an event that has not been committed
2426 * @buffer: the ring buffer
2427 * @event: non committed event to discard
2428 *
Steven Rostedtdc892f72009-09-03 15:33:41 -04002429 * Sometimes an event that is in the ring buffer needs to be ignored.
2430 * This function lets the user discard an event in the ring buffer
2431 * and then that event will not be read later.
2432 *
2433 * This function only works if it is called before the the item has been
2434 * committed. It will try to free the event from the ring buffer
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002435 * if another event has not been added behind it.
2436 *
2437 * If another event has been added behind it, it will set the event
2438 * up as discarded, and perform the commit.
2439 *
2440 * If this function is called, do not call ring_buffer_unlock_commit on
2441 * the event.
2442 */
2443void ring_buffer_discard_commit(struct ring_buffer *buffer,
2444 struct ring_buffer_event *event)
2445{
2446 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002447 int cpu;
2448
2449 /* The event is discarded regardless */
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002450 rb_event_discard(event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002451
Steven Rostedtfa743952009-06-16 12:37:57 -04002452 cpu = smp_processor_id();
2453 cpu_buffer = buffer->buffers[cpu];
2454
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002455 /*
2456 * This must only be called if the event has not been
2457 * committed yet. Thus we can assume that preemption
2458 * is still disabled.
2459 */
Steven Rostedtfa743952009-06-16 12:37:57 -04002460 RB_WARN_ON(buffer, !local_read(&cpu_buffer->committing));
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002461
Steven Rostedta1863c22009-09-03 10:23:58 -04002462 rb_decrement_entry(cpu_buffer, event);
Steven Rostedt0f2541d2009-08-05 12:02:48 -04002463 if (rb_try_to_discard(cpu_buffer, event))
Steven Rostedtedd813bf2009-06-02 23:00:53 -04002464 goto out;
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002465
2466 /*
2467 * The commit is still visible by the reader, so we
Steven Rostedta1863c22009-09-03 10:23:58 -04002468 * must still update the timestamp.
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002469 */
Steven Rostedta1863c22009-09-03 10:23:58 -04002470 rb_update_write_stamp(cpu_buffer, event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002471 out:
Steven Rostedtfa743952009-06-16 12:37:57 -04002472 rb_end_commit(cpu_buffer);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002473
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02002474 trace_recursive_unlock();
2475
Steven Rostedt5168ae52010-06-03 09:36:50 -04002476 preempt_enable_notrace();
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04002477
2478}
2479EXPORT_SYMBOL_GPL(ring_buffer_discard_commit);
2480
2481/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002482 * ring_buffer_write - write data to the buffer without reserving
2483 * @buffer: The ring buffer to write to.
2484 * @length: The length of the data being written (excluding the event header)
2485 * @data: The data to write to the buffer.
2486 *
2487 * This is like ring_buffer_lock_reserve and ring_buffer_unlock_commit as
2488 * one function. If you already have the data to write to the buffer, it
2489 * may be easier to simply call this function.
2490 *
2491 * Note, like ring_buffer_lock_reserve, the length is the length of the data
2492 * and not the length of the event which would hold the header.
2493 */
2494int ring_buffer_write(struct ring_buffer *buffer,
2495 unsigned long length,
2496 void *data)
2497{
2498 struct ring_buffer_per_cpu *cpu_buffer;
2499 struct ring_buffer_event *event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002500 void *body;
2501 int ret = -EBUSY;
Steven Rostedt5168ae52010-06-03 09:36:50 -04002502 int cpu;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002503
Steven Rostedt033601a2008-11-21 12:41:55 -05002504 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05002505 return -EBUSY;
2506
Steven Rostedt5168ae52010-06-03 09:36:50 -04002507 preempt_disable_notrace();
Steven Rostedtbf41a152008-10-04 02:00:59 -04002508
Lai Jiangshan52fbe9c2010-03-08 14:50:43 +08002509 if (atomic_read(&buffer->record_disabled))
2510 goto out;
2511
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002512 cpu = raw_smp_processor_id();
2513
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302514 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04002515 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002516
2517 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002518
2519 if (atomic_read(&cpu_buffer->record_disabled))
2520 goto out;
2521
Steven Rostedtbe957c42009-05-11 14:42:53 -04002522 if (length > BUF_MAX_DATA_SIZE)
2523 goto out;
2524
Steven Rostedt62f0b3e2009-09-04 14:11:34 -04002525 event = rb_reserve_next_event(buffer, cpu_buffer, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002526 if (!event)
2527 goto out;
2528
2529 body = rb_event_data(event);
2530
2531 memcpy(body, data, length);
2532
2533 rb_commit(cpu_buffer, event);
2534
2535 ret = 0;
2536 out:
Steven Rostedt5168ae52010-06-03 09:36:50 -04002537 preempt_enable_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002538
2539 return ret;
2540}
Robert Richterc4f50182008-12-11 16:49:22 +01002541EXPORT_SYMBOL_GPL(ring_buffer_write);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002542
Andrew Morton34a148b2009-01-09 12:27:09 -08002543static int rb_per_cpu_empty(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtbf41a152008-10-04 02:00:59 -04002544{
2545 struct buffer_page *reader = cpu_buffer->reader_page;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002546 struct buffer_page *head = rb_set_head_page(cpu_buffer);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002547 struct buffer_page *commit = cpu_buffer->commit_page;
2548
Steven Rostedt77ae3652009-03-27 11:00:29 -04002549 /* In case of error, head will be NULL */
2550 if (unlikely(!head))
2551 return 1;
2552
Steven Rostedtbf41a152008-10-04 02:00:59 -04002553 return reader->read == rb_page_commit(reader) &&
2554 (commit == reader ||
2555 (commit == head &&
2556 head->read == rb_page_commit(commit)));
2557}
2558
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002559/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002560 * ring_buffer_record_disable - stop all writes into the buffer
2561 * @buffer: The ring buffer to stop writes to.
2562 *
2563 * This prevents all writes to the buffer. Any attempt to write
2564 * to the buffer after this will fail and return NULL.
2565 *
2566 * The caller should call synchronize_sched() after this.
2567 */
2568void ring_buffer_record_disable(struct ring_buffer *buffer)
2569{
2570 atomic_inc(&buffer->record_disabled);
2571}
Robert Richterc4f50182008-12-11 16:49:22 +01002572EXPORT_SYMBOL_GPL(ring_buffer_record_disable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002573
2574/**
2575 * ring_buffer_record_enable - enable writes to the buffer
2576 * @buffer: The ring buffer to enable writes
2577 *
2578 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002579 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002580 */
2581void ring_buffer_record_enable(struct ring_buffer *buffer)
2582{
2583 atomic_dec(&buffer->record_disabled);
2584}
Robert Richterc4f50182008-12-11 16:49:22 +01002585EXPORT_SYMBOL_GPL(ring_buffer_record_enable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002586
2587/**
2588 * ring_buffer_record_disable_cpu - stop all writes into the cpu_buffer
2589 * @buffer: The ring buffer to stop writes to.
2590 * @cpu: The CPU buffer to stop
2591 *
2592 * This prevents all writes to the buffer. Any attempt to write
2593 * to the buffer after this will fail and return NULL.
2594 *
2595 * The caller should call synchronize_sched() after this.
2596 */
2597void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu)
2598{
2599 struct ring_buffer_per_cpu *cpu_buffer;
2600
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302601 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002602 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002603
2604 cpu_buffer = buffer->buffers[cpu];
2605 atomic_inc(&cpu_buffer->record_disabled);
2606}
Robert Richterc4f50182008-12-11 16:49:22 +01002607EXPORT_SYMBOL_GPL(ring_buffer_record_disable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002608
2609/**
2610 * ring_buffer_record_enable_cpu - enable writes to the buffer
2611 * @buffer: The ring buffer to enable writes
2612 * @cpu: The CPU to enable.
2613 *
2614 * Note, multiple disables will need the same number of enables
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002615 * to truly enable the writing (much like preempt_disable).
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002616 */
2617void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu)
2618{
2619 struct ring_buffer_per_cpu *cpu_buffer;
2620
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302621 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002622 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002623
2624 cpu_buffer = buffer->buffers[cpu];
2625 atomic_dec(&cpu_buffer->record_disabled);
2626}
Robert Richterc4f50182008-12-11 16:49:22 +01002627EXPORT_SYMBOL_GPL(ring_buffer_record_enable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002628
Steven Rostedtf6195aa2010-09-01 12:23:12 -04002629/*
2630 * The total entries in the ring buffer is the running counter
2631 * of entries entered into the ring buffer, minus the sum of
2632 * the entries read from the ring buffer and the number of
2633 * entries that were overwritten.
2634 */
2635static inline unsigned long
2636rb_num_of_entries(struct ring_buffer_per_cpu *cpu_buffer)
2637{
2638 return local_read(&cpu_buffer->entries) -
2639 (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
2640}
2641
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002642/**
2643 * ring_buffer_entries_cpu - get the number of entries in a cpu buffer
2644 * @buffer: The ring buffer
2645 * @cpu: The per CPU buffer to get the entries from.
2646 */
2647unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
2648{
2649 struct ring_buffer_per_cpu *cpu_buffer;
2650
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302651 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002652 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002653
2654 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04002655
Steven Rostedtf6195aa2010-09-01 12:23:12 -04002656 return rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002657}
Robert Richterc4f50182008-12-11 16:49:22 +01002658EXPORT_SYMBOL_GPL(ring_buffer_entries_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002659
2660/**
2661 * ring_buffer_overrun_cpu - get the number of overruns in a cpu_buffer
2662 * @buffer: The ring buffer
2663 * @cpu: The per CPU buffer to get the number of overruns from
2664 */
2665unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
2666{
2667 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04002668 unsigned long ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002669
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302670 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002671 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002672
2673 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04002674 ret = local_read(&cpu_buffer->overrun);
Steven Rostedt554f7862009-03-11 22:00:13 -04002675
2676 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002677}
Robert Richterc4f50182008-12-11 16:49:22 +01002678EXPORT_SYMBOL_GPL(ring_buffer_overrun_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002679
2680/**
Steven Rostedtf0d2c682009-04-29 13:43:37 -04002681 * ring_buffer_commit_overrun_cpu - get the number of overruns caused by commits
2682 * @buffer: The ring buffer
2683 * @cpu: The per CPU buffer to get the number of overruns from
2684 */
2685unsigned long
2686ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
2687{
2688 struct ring_buffer_per_cpu *cpu_buffer;
2689 unsigned long ret;
2690
2691 if (!cpumask_test_cpu(cpu, buffer->cpumask))
2692 return 0;
2693
2694 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04002695 ret = local_read(&cpu_buffer->commit_overrun);
Steven Rostedtf0d2c682009-04-29 13:43:37 -04002696
2697 return ret;
2698}
2699EXPORT_SYMBOL_GPL(ring_buffer_commit_overrun_cpu);
2700
2701/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002702 * ring_buffer_entries - get the number of entries in a buffer
2703 * @buffer: The ring buffer
2704 *
2705 * Returns the total number of entries in the ring buffer
2706 * (all CPU entries)
2707 */
2708unsigned long ring_buffer_entries(struct ring_buffer *buffer)
2709{
2710 struct ring_buffer_per_cpu *cpu_buffer;
2711 unsigned long entries = 0;
2712 int cpu;
2713
2714 /* if you care about this being correct, lock the buffer */
2715 for_each_buffer_cpu(buffer, cpu) {
2716 cpu_buffer = buffer->buffers[cpu];
Steven Rostedtf6195aa2010-09-01 12:23:12 -04002717 entries += rb_num_of_entries(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002718 }
2719
2720 return entries;
2721}
Robert Richterc4f50182008-12-11 16:49:22 +01002722EXPORT_SYMBOL_GPL(ring_buffer_entries);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002723
2724/**
Jiri Olsa67b394f2009-10-23 19:36:18 -04002725 * ring_buffer_overruns - get the number of overruns in buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002726 * @buffer: The ring buffer
2727 *
2728 * Returns the total number of overruns in the ring buffer
2729 * (all CPU entries)
2730 */
2731unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
2732{
2733 struct ring_buffer_per_cpu *cpu_buffer;
2734 unsigned long overruns = 0;
2735 int cpu;
2736
2737 /* if you care about this being correct, lock the buffer */
2738 for_each_buffer_cpu(buffer, cpu) {
2739 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt77ae3652009-03-27 11:00:29 -04002740 overruns += local_read(&cpu_buffer->overrun);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002741 }
2742
2743 return overruns;
2744}
Robert Richterc4f50182008-12-11 16:49:22 +01002745EXPORT_SYMBOL_GPL(ring_buffer_overruns);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002746
Steven Rostedt642edba2008-11-12 00:01:26 -05002747static void rb_iter_reset(struct ring_buffer_iter *iter)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002748{
2749 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
2750
Steven Rostedtd7690412008-10-01 00:29:53 -04002751 /* Iterator usage is expected to have record disabled */
2752 if (list_empty(&cpu_buffer->reader_page->list)) {
Steven Rostedt77ae3652009-03-27 11:00:29 -04002753 iter->head_page = rb_set_head_page(cpu_buffer);
2754 if (unlikely(!iter->head_page))
2755 return;
2756 iter->head = iter->head_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04002757 } else {
2758 iter->head_page = cpu_buffer->reader_page;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04002759 iter->head = cpu_buffer->reader_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04002760 }
2761 if (iter->head)
2762 iter->read_stamp = cpu_buffer->read_stamp;
2763 else
Steven Rostedtabc9b562008-12-02 15:34:06 -05002764 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt492a74f2010-01-25 15:17:47 -05002765 iter->cache_reader_page = cpu_buffer->reader_page;
2766 iter->cache_read = cpu_buffer->read;
Steven Rostedt642edba2008-11-12 00:01:26 -05002767}
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002768
Steven Rostedt642edba2008-11-12 00:01:26 -05002769/**
2770 * ring_buffer_iter_reset - reset an iterator
2771 * @iter: The iterator to reset
2772 *
2773 * Resets the iterator, so that it will start from the beginning
2774 * again.
2775 */
2776void ring_buffer_iter_reset(struct ring_buffer_iter *iter)
2777{
Steven Rostedt554f7862009-03-11 22:00:13 -04002778 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt642edba2008-11-12 00:01:26 -05002779 unsigned long flags;
2780
Steven Rostedt554f7862009-03-11 22:00:13 -04002781 if (!iter)
2782 return;
2783
2784 cpu_buffer = iter->cpu_buffer;
2785
Steven Rostedt642edba2008-11-12 00:01:26 -05002786 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2787 rb_iter_reset(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002788 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002789}
Robert Richterc4f50182008-12-11 16:49:22 +01002790EXPORT_SYMBOL_GPL(ring_buffer_iter_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002791
2792/**
2793 * ring_buffer_iter_empty - check if an iterator has no more to read
2794 * @iter: The iterator to check
2795 */
2796int ring_buffer_iter_empty(struct ring_buffer_iter *iter)
2797{
2798 struct ring_buffer_per_cpu *cpu_buffer;
2799
2800 cpu_buffer = iter->cpu_buffer;
2801
Steven Rostedtbf41a152008-10-04 02:00:59 -04002802 return iter->head_page == cpu_buffer->commit_page &&
2803 iter->head == rb_commit_index(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002804}
Robert Richterc4f50182008-12-11 16:49:22 +01002805EXPORT_SYMBOL_GPL(ring_buffer_iter_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002806
2807static void
2808rb_update_read_stamp(struct ring_buffer_per_cpu *cpu_buffer,
2809 struct ring_buffer_event *event)
2810{
2811 u64 delta;
2812
Lai Jiangshan334d4162009-04-24 11:27:05 +08002813 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002814 case RINGBUF_TYPE_PADDING:
2815 return;
2816
2817 case RINGBUF_TYPE_TIME_EXTEND:
2818 delta = event->array[0];
2819 delta <<= TS_SHIFT;
2820 delta += event->time_delta;
2821 cpu_buffer->read_stamp += delta;
2822 return;
2823
2824 case RINGBUF_TYPE_TIME_STAMP:
2825 /* FIXME: not implemented */
2826 return;
2827
2828 case RINGBUF_TYPE_DATA:
2829 cpu_buffer->read_stamp += event->time_delta;
2830 return;
2831
2832 default:
2833 BUG();
2834 }
2835 return;
2836}
2837
2838static void
2839rb_update_iter_read_stamp(struct ring_buffer_iter *iter,
2840 struct ring_buffer_event *event)
2841{
2842 u64 delta;
2843
Lai Jiangshan334d4162009-04-24 11:27:05 +08002844 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002845 case RINGBUF_TYPE_PADDING:
2846 return;
2847
2848 case RINGBUF_TYPE_TIME_EXTEND:
2849 delta = event->array[0];
2850 delta <<= TS_SHIFT;
2851 delta += event->time_delta;
2852 iter->read_stamp += delta;
2853 return;
2854
2855 case RINGBUF_TYPE_TIME_STAMP:
2856 /* FIXME: not implemented */
2857 return;
2858
2859 case RINGBUF_TYPE_DATA:
2860 iter->read_stamp += event->time_delta;
2861 return;
2862
2863 default:
2864 BUG();
2865 }
2866 return;
2867}
2868
Steven Rostedtd7690412008-10-01 00:29:53 -04002869static struct buffer_page *
2870rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002871{
Steven Rostedtd7690412008-10-01 00:29:53 -04002872 struct buffer_page *reader = NULL;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04002873 unsigned long overwrite;
Steven Rostedtd7690412008-10-01 00:29:53 -04002874 unsigned long flags;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002875 int nr_loops = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002876 int ret;
Steven Rostedtd7690412008-10-01 00:29:53 -04002877
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002878 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01002879 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedtd7690412008-10-01 00:29:53 -04002880
2881 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002882 /*
2883 * This should normally only loop twice. But because the
2884 * start of the reader inserts an empty page, it causes
2885 * a case where we will loop three times. There should be no
2886 * reason to loop four times (that I know of).
2887 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002888 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002889 reader = NULL;
2890 goto out;
2891 }
2892
Steven Rostedtd7690412008-10-01 00:29:53 -04002893 reader = cpu_buffer->reader_page;
2894
2895 /* If there's more to read, return this page */
Steven Rostedtbf41a152008-10-04 02:00:59 -04002896 if (cpu_buffer->reader_page->read < rb_page_size(reader))
Steven Rostedtd7690412008-10-01 00:29:53 -04002897 goto out;
2898
2899 /* Never should we have an index greater than the size */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002900 if (RB_WARN_ON(cpu_buffer,
2901 cpu_buffer->reader_page->read > rb_page_size(reader)))
2902 goto out;
Steven Rostedtd7690412008-10-01 00:29:53 -04002903
2904 /* check if we caught up to the tail */
2905 reader = NULL;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002906 if (cpu_buffer->commit_page == cpu_buffer->reader_page)
Steven Rostedtd7690412008-10-01 00:29:53 -04002907 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002908
2909 /*
Steven Rostedtd7690412008-10-01 00:29:53 -04002910 * Reset the reader page to size zero.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002911 */
Steven Rostedt77ae3652009-03-27 11:00:29 -04002912 local_set(&cpu_buffer->reader_page->write, 0);
2913 local_set(&cpu_buffer->reader_page->entries, 0);
2914 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedtff0ff842010-03-31 22:11:42 -04002915 cpu_buffer->reader_page->real_end = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002916
Steven Rostedt77ae3652009-03-27 11:00:29 -04002917 spin:
2918 /*
2919 * Splice the empty reader page into the list around the head.
2920 */
2921 reader = rb_set_head_page(cpu_buffer);
Steven Rostedt0e1ff5d2010-01-06 20:40:44 -05002922 cpu_buffer->reader_page->list.next = rb_list_head(reader->list.next);
Steven Rostedtd7690412008-10-01 00:29:53 -04002923 cpu_buffer->reader_page->list.prev = reader->list.prev;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002924
Steven Rostedt3adc54f2009-03-30 15:32:01 -04002925 /*
2926 * cpu_buffer->pages just needs to point to the buffer, it
2927 * has no specific buffer page to point to. Lets move it out
2928 * of our way so we don't accidently swap it.
2929 */
2930 cpu_buffer->pages = reader->list.prev;
2931
Steven Rostedt77ae3652009-03-27 11:00:29 -04002932 /* The reader page will be pointing to the new head */
2933 rb_set_list_to_head(cpu_buffer, &cpu_buffer->reader_page->list);
Steven Rostedtd7690412008-10-01 00:29:53 -04002934
2935 /*
Steven Rostedt66a8cb92010-03-31 13:21:56 -04002936 * We want to make sure we read the overruns after we set up our
2937 * pointers to the next object. The writer side does a
2938 * cmpxchg to cross pages which acts as the mb on the writer
2939 * side. Note, the reader will constantly fail the swap
2940 * while the writer is updating the pointers, so this
2941 * guarantees that the overwrite recorded here is the one we
2942 * want to compare with the last_overrun.
2943 */
2944 smp_mb();
2945 overwrite = local_read(&(cpu_buffer->overrun));
2946
2947 /*
Steven Rostedt77ae3652009-03-27 11:00:29 -04002948 * Here's the tricky part.
2949 *
2950 * We need to move the pointer past the header page.
2951 * But we can only do that if a writer is not currently
2952 * moving it. The page before the header page has the
2953 * flag bit '1' set if it is pointing to the page we want.
2954 * but if the writer is in the process of moving it
2955 * than it will be '2' or already moved '0'.
Steven Rostedtd7690412008-10-01 00:29:53 -04002956 */
Steven Rostedtd7690412008-10-01 00:29:53 -04002957
Steven Rostedt77ae3652009-03-27 11:00:29 -04002958 ret = rb_head_page_replace(reader, cpu_buffer->reader_page);
2959
2960 /*
2961 * If we did not convert it, then we must try again.
2962 */
2963 if (!ret)
2964 goto spin;
2965
2966 /*
2967 * Yeah! We succeeded in replacing the page.
2968 *
2969 * Now make the new head point back to the reader page.
2970 */
David Sharp5ded3dc62010-01-06 17:12:07 -08002971 rb_list_head(reader->list.next)->prev = &cpu_buffer->reader_page->list;
Steven Rostedt77ae3652009-03-27 11:00:29 -04002972 rb_inc_page(cpu_buffer, &cpu_buffer->head_page);
Steven Rostedtd7690412008-10-01 00:29:53 -04002973
2974 /* Finally update the reader page to the new head */
2975 cpu_buffer->reader_page = reader;
2976 rb_reset_reader_page(cpu_buffer);
2977
Steven Rostedt66a8cb92010-03-31 13:21:56 -04002978 if (overwrite != cpu_buffer->last_overrun) {
2979 cpu_buffer->lost_events = overwrite - cpu_buffer->last_overrun;
2980 cpu_buffer->last_overrun = overwrite;
2981 }
2982
Steven Rostedtd7690412008-10-01 00:29:53 -04002983 goto again;
2984
2985 out:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01002986 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002987 local_irq_restore(flags);
Steven Rostedtd7690412008-10-01 00:29:53 -04002988
2989 return reader;
2990}
2991
2992static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer)
2993{
2994 struct ring_buffer_event *event;
2995 struct buffer_page *reader;
2996 unsigned length;
2997
2998 reader = rb_get_reader_page(cpu_buffer);
2999
3000 /* This function should not be called when buffer is empty */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003001 if (RB_WARN_ON(cpu_buffer, !reader))
3002 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003003
3004 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003005
Steven Rostedta1863c22009-09-03 10:23:58 -04003006 if (event->type_len <= RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedte4906ef2009-04-30 20:49:44 -04003007 cpu_buffer->read++;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003008
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003009 rb_update_read_stamp(cpu_buffer, event);
3010
Steven Rostedtd7690412008-10-01 00:29:53 -04003011 length = rb_event_length(event);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003012 cpu_buffer->reader_page->read += length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003013}
3014
3015static void rb_advance_iter(struct ring_buffer_iter *iter)
3016{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003017 struct ring_buffer_per_cpu *cpu_buffer;
3018 struct ring_buffer_event *event;
3019 unsigned length;
3020
3021 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003022
3023 /*
3024 * Check if we are at the end of the buffer.
3025 */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003026 if (iter->head >= rb_page_size(iter->head_page)) {
Steven Rostedtea05b572009-06-03 09:30:10 -04003027 /* discarded commits can make the page empty */
3028 if (iter->head_page == cpu_buffer->commit_page)
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003029 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04003030 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003031 return;
3032 }
3033
3034 event = rb_iter_head_event(iter);
3035
3036 length = rb_event_length(event);
3037
3038 /*
3039 * This should not be called to advance the header if we are
3040 * at the tail of the buffer.
3041 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003042 if (RB_WARN_ON(cpu_buffer,
Steven Rostedtf536aaf2008-11-10 23:07:30 -05003043 (iter->head_page == cpu_buffer->commit_page) &&
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05003044 (iter->head + length > rb_commit_index(cpu_buffer))))
3045 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003046
3047 rb_update_iter_read_stamp(iter, event);
3048
3049 iter->head += length;
3050
3051 /* check for end of page padding */
Steven Rostedtbf41a152008-10-04 02:00:59 -04003052 if ((iter->head >= rb_page_size(iter->head_page)) &&
3053 (iter->head_page != cpu_buffer->commit_page))
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003054 rb_advance_iter(iter);
3055}
3056
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003057static int rb_lost_events(struct ring_buffer_per_cpu *cpu_buffer)
3058{
3059 return cpu_buffer->lost_events;
3060}
3061
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003062static struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003063rb_buffer_peek(struct ring_buffer_per_cpu *cpu_buffer, u64 *ts,
3064 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003065{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003066 struct ring_buffer_event *event;
Steven Rostedtd7690412008-10-01 00:29:53 -04003067 struct buffer_page *reader;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003068 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003069
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003070 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003071 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003072 * We repeat when a time extend is encountered.
3073 * Since the time extend is always attached to a data event,
3074 * we should never loop more than once.
3075 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003076 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003077 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003078 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003079
Steven Rostedtd7690412008-10-01 00:29:53 -04003080 reader = rb_get_reader_page(cpu_buffer);
3081 if (!reader)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003082 return NULL;
3083
Steven Rostedtd7690412008-10-01 00:29:53 -04003084 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003085
Lai Jiangshan334d4162009-04-24 11:27:05 +08003086 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003087 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003088 if (rb_null_event(event))
3089 RB_WARN_ON(cpu_buffer, 1);
3090 /*
3091 * Because the writer could be discarding every
3092 * event it creates (which would probably be bad)
3093 * if we were to go back to "again" then we may never
3094 * catch up, and will trigger the warn on, or lock
3095 * the box. Return the padding, and we will release
3096 * the current locks, and try again.
3097 */
Tom Zanussi2d622712009-03-22 03:30:49 -05003098 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003099
3100 case RINGBUF_TYPE_TIME_EXTEND:
3101 /* Internal data, OK to advance */
Steven Rostedtd7690412008-10-01 00:29:53 -04003102 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003103 goto again;
3104
3105 case RINGBUF_TYPE_TIME_STAMP:
3106 /* FIXME: not implemented */
Steven Rostedtd7690412008-10-01 00:29:53 -04003107 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003108 goto again;
3109
3110 case RINGBUF_TYPE_DATA:
3111 if (ts) {
3112 *ts = cpu_buffer->read_stamp + event->time_delta;
Robert Richterd8eeb2d2009-07-31 14:58:04 +02003113 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
Steven Rostedt37886f62009-03-17 17:22:06 -04003114 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003115 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003116 if (lost_events)
3117 *lost_events = rb_lost_events(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003118 return event;
3119
3120 default:
3121 BUG();
3122 }
3123
3124 return NULL;
3125}
Robert Richterc4f50182008-12-11 16:49:22 +01003126EXPORT_SYMBOL_GPL(ring_buffer_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003127
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003128static struct ring_buffer_event *
3129rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003130{
3131 struct ring_buffer *buffer;
3132 struct ring_buffer_per_cpu *cpu_buffer;
3133 struct ring_buffer_event *event;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003134 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003135
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003136 cpu_buffer = iter->cpu_buffer;
3137 buffer = cpu_buffer->buffer;
3138
Steven Rostedt492a74f2010-01-25 15:17:47 -05003139 /*
3140 * Check if someone performed a consuming read to
3141 * the buffer. A consuming read invalidates the iterator
3142 * and we need to reset the iterator in this case.
3143 */
3144 if (unlikely(iter->cache_read != cpu_buffer->read ||
3145 iter->cache_reader_page != cpu_buffer->reader_page))
3146 rb_iter_reset(iter);
3147
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003148 again:
Steven Rostedt3c05d742010-01-26 16:14:08 -05003149 if (ring_buffer_iter_empty(iter))
3150 return NULL;
3151
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003152 /*
Steven Rostedt69d1b832010-10-07 18:18:05 -04003153 * We repeat when a time extend is encountered.
3154 * Since the time extend is always attached to a data event,
3155 * we should never loop more than once.
3156 * (We never hit the following condition more than twice).
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003157 */
Steven Rostedt69d1b832010-10-07 18:18:05 -04003158 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003159 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04003160
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003161 if (rb_per_cpu_empty(cpu_buffer))
3162 return NULL;
3163
Steven Rostedt3c05d742010-01-26 16:14:08 -05003164 if (iter->head >= local_read(&iter->head_page->page->commit)) {
3165 rb_inc_iter(iter);
3166 goto again;
3167 }
3168
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003169 event = rb_iter_head_event(iter);
3170
Lai Jiangshan334d4162009-04-24 11:27:05 +08003171 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003172 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05003173 if (rb_null_event(event)) {
3174 rb_inc_iter(iter);
3175 goto again;
3176 }
3177 rb_advance_iter(iter);
3178 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003179
3180 case RINGBUF_TYPE_TIME_EXTEND:
3181 /* Internal data, OK to advance */
3182 rb_advance_iter(iter);
3183 goto again;
3184
3185 case RINGBUF_TYPE_TIME_STAMP:
3186 /* FIXME: not implemented */
3187 rb_advance_iter(iter);
3188 goto again;
3189
3190 case RINGBUF_TYPE_DATA:
3191 if (ts) {
3192 *ts = iter->read_stamp + event->time_delta;
Steven Rostedt37886f62009-03-17 17:22:06 -04003193 ring_buffer_normalize_time_stamp(buffer,
3194 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003195 }
3196 return event;
3197
3198 default:
3199 BUG();
3200 }
3201
3202 return NULL;
3203}
Robert Richterc4f50182008-12-11 16:49:22 +01003204EXPORT_SYMBOL_GPL(ring_buffer_iter_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003205
Steven Rostedt8d707e82009-06-16 21:22:48 -04003206static inline int rb_ok_to_lock(void)
3207{
3208 /*
3209 * If an NMI die dumps out the content of the ring buffer
3210 * do not grab locks. We also permanently disable the ring
3211 * buffer too. A one time deal is all you get from reading
3212 * the ring buffer from an NMI.
3213 */
Steven Rostedt464e85e2009-08-05 15:26:37 -04003214 if (likely(!in_nmi()))
Steven Rostedt8d707e82009-06-16 21:22:48 -04003215 return 1;
3216
3217 tracing_off_permanent();
3218 return 0;
3219}
3220
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003221/**
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003222 * ring_buffer_peek - peek at the next event to be read
3223 * @buffer: The ring buffer to read
3224 * @cpu: The cpu to peak at
3225 * @ts: The timestamp counter of this event.
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003226 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003227 *
3228 * This will return the event that will be read next, but does
3229 * not consume the data.
3230 */
3231struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003232ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
3233 unsigned long *lost_events)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003234{
3235 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8aabee52009-03-12 13:13:49 -04003236 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003237 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003238 int dolock;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003239
Steven Rostedt554f7862009-03-11 22:00:13 -04003240 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003241 return NULL;
Steven Rostedt554f7862009-03-11 22:00:13 -04003242
Steven Rostedt8d707e82009-06-16 21:22:48 -04003243 dolock = rb_ok_to_lock();
Tom Zanussi2d622712009-03-22 03:30:49 -05003244 again:
Steven Rostedt8d707e82009-06-16 21:22:48 -04003245 local_irq_save(flags);
3246 if (dolock)
3247 spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003248 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
Robert Richter469535a2009-07-30 19:19:18 +02003249 if (event && event->type_len == RINGBUF_TYPE_PADDING)
3250 rb_advance_reader(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003251 if (dolock)
3252 spin_unlock(&cpu_buffer->reader_lock);
3253 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003254
Steven Rostedt1b959e12009-09-03 10:12:13 -04003255 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003256 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003257
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003258 return event;
3259}
3260
3261/**
3262 * ring_buffer_iter_peek - peek at the next event to be read
3263 * @iter: The ring buffer iterator
3264 * @ts: The timestamp counter of this event.
3265 *
3266 * This will return the event that will be read next, but does
3267 * not increment the iterator.
3268 */
3269struct ring_buffer_event *
3270ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
3271{
3272 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3273 struct ring_buffer_event *event;
3274 unsigned long flags;
3275
Tom Zanussi2d622712009-03-22 03:30:49 -05003276 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003277 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
3278 event = rb_iter_peek(iter, ts);
3279 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
3280
Steven Rostedt1b959e12009-09-03 10:12:13 -04003281 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003282 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003283
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003284 return event;
3285}
3286
3287/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003288 * ring_buffer_consume - return an event and consume it
3289 * @buffer: The ring buffer to get the next event from
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003290 * @cpu: the cpu to read the buffer from
3291 * @ts: a variable to store the timestamp (may be NULL)
3292 * @lost_events: a variable to store if events were lost (may be NULL)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003293 *
3294 * Returns the next event in the ring buffer, and that event is consumed.
3295 * Meaning, that sequential reads will keep returning a different event,
3296 * and eventually empty the ring buffer if the producer is slower.
3297 */
3298struct ring_buffer_event *
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003299ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
3300 unsigned long *lost_events)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003301{
Steven Rostedt554f7862009-03-11 22:00:13 -04003302 struct ring_buffer_per_cpu *cpu_buffer;
3303 struct ring_buffer_event *event = NULL;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003304 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003305 int dolock;
3306
3307 dolock = rb_ok_to_lock();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003308
Tom Zanussi2d622712009-03-22 03:30:49 -05003309 again:
Steven Rostedt554f7862009-03-11 22:00:13 -04003310 /* might be called in atomic */
3311 preempt_disable();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003312
Steven Rostedt554f7862009-03-11 22:00:13 -04003313 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3314 goto out;
3315
3316 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04003317 local_irq_save(flags);
3318 if (dolock)
3319 spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003320
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003321 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
3322 if (event) {
3323 cpu_buffer->lost_events = 0;
Robert Richter469535a2009-07-30 19:19:18 +02003324 rb_advance_reader(cpu_buffer);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003325 }
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003326
Steven Rostedt8d707e82009-06-16 21:22:48 -04003327 if (dolock)
3328 spin_unlock(&cpu_buffer->reader_lock);
3329 local_irq_restore(flags);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003330
Steven Rostedt554f7862009-03-11 22:00:13 -04003331 out:
3332 preempt_enable();
3333
Steven Rostedt1b959e12009-09-03 10:12:13 -04003334 if (event && event->type_len == RINGBUF_TYPE_PADDING)
Tom Zanussi2d622712009-03-22 03:30:49 -05003335 goto again;
Tom Zanussi2d622712009-03-22 03:30:49 -05003336
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003337 return event;
3338}
Robert Richterc4f50182008-12-11 16:49:22 +01003339EXPORT_SYMBOL_GPL(ring_buffer_consume);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003340
3341/**
David Miller72c9ddf2010-04-20 15:47:11 -07003342 * ring_buffer_read_prepare - Prepare for a non consuming read of the buffer
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003343 * @buffer: The ring buffer to read from
3344 * @cpu: The cpu buffer to iterate over
3345 *
David Miller72c9ddf2010-04-20 15:47:11 -07003346 * This performs the initial preparations necessary to iterate
3347 * through the buffer. Memory is allocated, buffer recording
3348 * is disabled, and the iterator pointer is returned to the caller.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003349 *
David Miller72c9ddf2010-04-20 15:47:11 -07003350 * Disabling buffer recordng prevents the reading from being
3351 * corrupted. This is not a consuming read, so a producer is not
3352 * expected.
3353 *
3354 * After a sequence of ring_buffer_read_prepare calls, the user is
3355 * expected to make at least one call to ring_buffer_prepare_sync.
3356 * Afterwards, ring_buffer_read_start is invoked to get things going
3357 * for real.
3358 *
3359 * This overall must be paired with ring_buffer_finish.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003360 */
3361struct ring_buffer_iter *
David Miller72c9ddf2010-04-20 15:47:11 -07003362ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003363{
3364 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003365 struct ring_buffer_iter *iter;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003366
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303367 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003368 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003369
3370 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
3371 if (!iter)
Steven Rostedt8aabee52009-03-12 13:13:49 -04003372 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003373
3374 cpu_buffer = buffer->buffers[cpu];
3375
3376 iter->cpu_buffer = cpu_buffer;
3377
3378 atomic_inc(&cpu_buffer->record_disabled);
David Miller72c9ddf2010-04-20 15:47:11 -07003379
3380 return iter;
3381}
3382EXPORT_SYMBOL_GPL(ring_buffer_read_prepare);
3383
3384/**
3385 * ring_buffer_read_prepare_sync - Synchronize a set of prepare calls
3386 *
3387 * All previously invoked ring_buffer_read_prepare calls to prepare
3388 * iterators will be synchronized. Afterwards, read_buffer_read_start
3389 * calls on those iterators are allowed.
3390 */
3391void
3392ring_buffer_read_prepare_sync(void)
3393{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003394 synchronize_sched();
David Miller72c9ddf2010-04-20 15:47:11 -07003395}
3396EXPORT_SYMBOL_GPL(ring_buffer_read_prepare_sync);
3397
3398/**
3399 * ring_buffer_read_start - start a non consuming read of the buffer
3400 * @iter: The iterator returned by ring_buffer_read_prepare
3401 *
3402 * This finalizes the startup of an iteration through the buffer.
3403 * The iterator comes from a call to ring_buffer_read_prepare and
3404 * an intervening ring_buffer_read_prepare_sync must have been
3405 * performed.
3406 *
3407 * Must be paired with ring_buffer_finish.
3408 */
3409void
3410ring_buffer_read_start(struct ring_buffer_iter *iter)
3411{
3412 struct ring_buffer_per_cpu *cpu_buffer;
3413 unsigned long flags;
3414
3415 if (!iter)
3416 return;
3417
3418 cpu_buffer = iter->cpu_buffer;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003419
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003420 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003421 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt642edba2008-11-12 00:01:26 -05003422 rb_iter_reset(iter);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003423 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003424 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003425}
Robert Richterc4f50182008-12-11 16:49:22 +01003426EXPORT_SYMBOL_GPL(ring_buffer_read_start);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003427
3428/**
3429 * ring_buffer_finish - finish reading the iterator of the buffer
3430 * @iter: The iterator retrieved by ring_buffer_start
3431 *
3432 * This re-enables the recording to the buffer, and frees the
3433 * iterator.
3434 */
3435void
3436ring_buffer_read_finish(struct ring_buffer_iter *iter)
3437{
3438 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3439
3440 atomic_dec(&cpu_buffer->record_disabled);
3441 kfree(iter);
3442}
Robert Richterc4f50182008-12-11 16:49:22 +01003443EXPORT_SYMBOL_GPL(ring_buffer_read_finish);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003444
3445/**
3446 * ring_buffer_read - read the next item in the ring buffer by the iterator
3447 * @iter: The ring buffer iterator
3448 * @ts: The time stamp of the event read.
3449 *
3450 * This reads the next event in the ring buffer and increments the iterator.
3451 */
3452struct ring_buffer_event *
3453ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts)
3454{
3455 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003456 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3457 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003458
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003459 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt7e9391c2009-09-03 10:02:09 -04003460 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003461 event = rb_iter_peek(iter, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003462 if (!event)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003463 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003464
Steven Rostedt7e9391c2009-09-03 10:02:09 -04003465 if (event->type_len == RINGBUF_TYPE_PADDING)
3466 goto again;
3467
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003468 rb_advance_iter(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003469 out:
3470 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003471
3472 return event;
3473}
Robert Richterc4f50182008-12-11 16:49:22 +01003474EXPORT_SYMBOL_GPL(ring_buffer_read);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003475
3476/**
3477 * ring_buffer_size - return the size of the ring buffer (in bytes)
3478 * @buffer: The ring buffer.
3479 */
3480unsigned long ring_buffer_size(struct ring_buffer *buffer)
3481{
3482 return BUF_PAGE_SIZE * buffer->pages;
3483}
Robert Richterc4f50182008-12-11 16:49:22 +01003484EXPORT_SYMBOL_GPL(ring_buffer_size);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003485
3486static void
3487rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
3488{
Steven Rostedt77ae3652009-03-27 11:00:29 -04003489 rb_head_page_deactivate(cpu_buffer);
3490
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003491 cpu_buffer->head_page
Steven Rostedt3adc54f2009-03-30 15:32:01 -04003492 = list_entry(cpu_buffer->pages, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04003493 local_set(&cpu_buffer->head_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04003494 local_set(&cpu_buffer->head_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05003495 local_set(&cpu_buffer->head_page->page->commit, 0);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003496
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003497 cpu_buffer->head_page->read = 0;
Steven Rostedtbf41a152008-10-04 02:00:59 -04003498
3499 cpu_buffer->tail_page = cpu_buffer->head_page;
3500 cpu_buffer->commit_page = cpu_buffer->head_page;
3501
3502 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
3503 local_set(&cpu_buffer->reader_page->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04003504 local_set(&cpu_buffer->reader_page->entries, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05003505 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04003506 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04003507
Steven Rostedt77ae3652009-03-27 11:00:29 -04003508 local_set(&cpu_buffer->commit_overrun, 0);
3509 local_set(&cpu_buffer->overrun, 0);
Steven Rostedte4906ef2009-04-30 20:49:44 -04003510 local_set(&cpu_buffer->entries, 0);
Steven Rostedtfa743952009-06-16 12:37:57 -04003511 local_set(&cpu_buffer->committing, 0);
3512 local_set(&cpu_buffer->commits, 0);
Steven Rostedt77ae3652009-03-27 11:00:29 -04003513 cpu_buffer->read = 0;
Steven Rostedt69507c02009-01-21 18:45:57 -05003514
3515 cpu_buffer->write_stamp = 0;
3516 cpu_buffer->read_stamp = 0;
Steven Rostedt77ae3652009-03-27 11:00:29 -04003517
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003518 cpu_buffer->lost_events = 0;
3519 cpu_buffer->last_overrun = 0;
3520
Steven Rostedt77ae3652009-03-27 11:00:29 -04003521 rb_head_page_activate(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003522}
3523
3524/**
3525 * ring_buffer_reset_cpu - reset a ring buffer per CPU buffer
3526 * @buffer: The ring buffer to reset a per cpu buffer of
3527 * @cpu: The CPU buffer to be reset
3528 */
3529void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
3530{
3531 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
3532 unsigned long flags;
3533
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303534 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003535 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003536
Steven Rostedt41ede232009-05-01 20:26:54 -04003537 atomic_inc(&cpu_buffer->record_disabled);
3538
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003539 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
3540
Steven Rostedt41b6a952009-09-02 09:59:48 -04003541 if (RB_WARN_ON(cpu_buffer, local_read(&cpu_buffer->committing)))
3542 goto out;
3543
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003544 arch_spin_lock(&cpu_buffer->lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003545
3546 rb_reset_cpu(cpu_buffer);
3547
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01003548 arch_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003549
Steven Rostedt41b6a952009-09-02 09:59:48 -04003550 out:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01003551 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt41ede232009-05-01 20:26:54 -04003552
3553 atomic_dec(&cpu_buffer->record_disabled);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003554}
Robert Richterc4f50182008-12-11 16:49:22 +01003555EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003556
3557/**
3558 * ring_buffer_reset - reset a ring buffer
3559 * @buffer: The ring buffer to reset all cpu buffers
3560 */
3561void ring_buffer_reset(struct ring_buffer *buffer)
3562{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003563 int cpu;
3564
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003565 for_each_buffer_cpu(buffer, cpu)
Steven Rostedtd7690412008-10-01 00:29:53 -04003566 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003567}
Robert Richterc4f50182008-12-11 16:49:22 +01003568EXPORT_SYMBOL_GPL(ring_buffer_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003569
3570/**
3571 * rind_buffer_empty - is the ring buffer empty?
3572 * @buffer: The ring buffer to test
3573 */
3574int ring_buffer_empty(struct ring_buffer *buffer)
3575{
3576 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04003577 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003578 int dolock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003579 int cpu;
Steven Rostedtd4788202009-06-17 00:39:43 -04003580 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003581
Steven Rostedt8d707e82009-06-16 21:22:48 -04003582 dolock = rb_ok_to_lock();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003583
3584 /* yes this is racy, but if you don't like the race, lock the buffer */
3585 for_each_buffer_cpu(buffer, cpu) {
3586 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04003587 local_irq_save(flags);
3588 if (dolock)
3589 spin_lock(&cpu_buffer->reader_lock);
Steven Rostedtd4788202009-06-17 00:39:43 -04003590 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003591 if (dolock)
3592 spin_unlock(&cpu_buffer->reader_lock);
3593 local_irq_restore(flags);
3594
Steven Rostedtd4788202009-06-17 00:39:43 -04003595 if (!ret)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003596 return 0;
3597 }
Steven Rostedt554f7862009-03-11 22:00:13 -04003598
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003599 return 1;
3600}
Robert Richterc4f50182008-12-11 16:49:22 +01003601EXPORT_SYMBOL_GPL(ring_buffer_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003602
3603/**
3604 * ring_buffer_empty_cpu - is a cpu buffer of a ring buffer empty?
3605 * @buffer: The ring buffer
3606 * @cpu: The CPU buffer to test
3607 */
3608int ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu)
3609{
3610 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedtd4788202009-06-17 00:39:43 -04003611 unsigned long flags;
Steven Rostedt8d707e82009-06-16 21:22:48 -04003612 int dolock;
Steven Rostedt8aabee52009-03-12 13:13:49 -04003613 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003614
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303615 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04003616 return 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003617
Steven Rostedt8d707e82009-06-16 21:22:48 -04003618 dolock = rb_ok_to_lock();
Steven Rostedt554f7862009-03-11 22:00:13 -04003619
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003620 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8d707e82009-06-16 21:22:48 -04003621 local_irq_save(flags);
3622 if (dolock)
3623 spin_lock(&cpu_buffer->reader_lock);
Steven Rostedt554f7862009-03-11 22:00:13 -04003624 ret = rb_per_cpu_empty(cpu_buffer);
Steven Rostedt8d707e82009-06-16 21:22:48 -04003625 if (dolock)
3626 spin_unlock(&cpu_buffer->reader_lock);
3627 local_irq_restore(flags);
Steven Rostedt554f7862009-03-11 22:00:13 -04003628
3629 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003630}
Robert Richterc4f50182008-12-11 16:49:22 +01003631EXPORT_SYMBOL_GPL(ring_buffer_empty_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003632
Steven Rostedt85bac322009-09-04 14:24:40 -04003633#ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003634/**
3635 * ring_buffer_swap_cpu - swap a CPU buffer between two ring buffers
3636 * @buffer_a: One buffer to swap with
3637 * @buffer_b: The other buffer to swap with
3638 *
3639 * This function is useful for tracers that want to take a "snapshot"
3640 * of a CPU buffer and has another back up buffer lying around.
3641 * it is expected that the tracer handles the cpu buffer not being
3642 * used at the moment.
3643 */
3644int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
3645 struct ring_buffer *buffer_b, int cpu)
3646{
3647 struct ring_buffer_per_cpu *cpu_buffer_a;
3648 struct ring_buffer_per_cpu *cpu_buffer_b;
Steven Rostedt554f7862009-03-11 22:00:13 -04003649 int ret = -EINVAL;
3650
Rusty Russell9e01c1b2009-01-01 10:12:22 +10303651 if (!cpumask_test_cpu(cpu, buffer_a->cpumask) ||
3652 !cpumask_test_cpu(cpu, buffer_b->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04003653 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003654
3655 /* At least make sure the two buffers are somewhat the same */
Lai Jiangshan6d102bc2008-12-17 17:48:23 +08003656 if (buffer_a->pages != buffer_b->pages)
Steven Rostedt554f7862009-03-11 22:00:13 -04003657 goto out;
3658
3659 ret = -EAGAIN;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003660
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003661 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedt554f7862009-03-11 22:00:13 -04003662 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003663
3664 if (atomic_read(&buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04003665 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003666
3667 if (atomic_read(&buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04003668 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003669
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003670 cpu_buffer_a = buffer_a->buffers[cpu];
3671 cpu_buffer_b = buffer_b->buffers[cpu];
3672
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003673 if (atomic_read(&cpu_buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04003674 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003675
3676 if (atomic_read(&cpu_buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04003677 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05003678
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003679 /*
3680 * We can't do a synchronize_sched here because this
3681 * function can be called in atomic context.
3682 * Normally this will be called from the same CPU as cpu.
3683 * If not it's up to the caller to protect this.
3684 */
3685 atomic_inc(&cpu_buffer_a->record_disabled);
3686 atomic_inc(&cpu_buffer_b->record_disabled);
3687
Steven Rostedt98277992009-09-02 10:56:15 -04003688 ret = -EBUSY;
3689 if (local_read(&cpu_buffer_a->committing))
3690 goto out_dec;
3691 if (local_read(&cpu_buffer_b->committing))
3692 goto out_dec;
3693
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003694 buffer_a->buffers[cpu] = cpu_buffer_b;
3695 buffer_b->buffers[cpu] = cpu_buffer_a;
3696
3697 cpu_buffer_b->buffer = buffer_a;
3698 cpu_buffer_a->buffer = buffer_b;
3699
Steven Rostedt98277992009-09-02 10:56:15 -04003700 ret = 0;
3701
3702out_dec:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003703 atomic_dec(&cpu_buffer_a->record_disabled);
3704 atomic_dec(&cpu_buffer_b->record_disabled);
Steven Rostedt554f7862009-03-11 22:00:13 -04003705out:
Steven Rostedt554f7862009-03-11 22:00:13 -04003706 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003707}
Robert Richterc4f50182008-12-11 16:49:22 +01003708EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
Steven Rostedt85bac322009-09-04 14:24:40 -04003709#endif /* CONFIG_RING_BUFFER_ALLOW_SWAP */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04003710
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003711/**
3712 * ring_buffer_alloc_read_page - allocate a page to read from buffer
3713 * @buffer: the buffer to allocate for.
3714 *
3715 * This function is used in conjunction with ring_buffer_read_page.
3716 * When reading a full page from the ring buffer, these functions
3717 * can be used to speed up the process. The calling function should
3718 * allocate a few pages first with this function. Then when it
3719 * needs to get pages from the ring buffer, it passes the result
3720 * of this function into ring_buffer_read_page, which will swap
3721 * the page that was allocated, with the read page of the buffer.
3722 *
3723 * Returns:
3724 * The page allocated, or NULL on error.
3725 */
3726void *ring_buffer_alloc_read_page(struct ring_buffer *buffer)
3727{
Steven Rostedt044fa782008-12-02 23:50:03 -05003728 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003729 unsigned long addr;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003730
3731 addr = __get_free_page(GFP_KERNEL);
3732 if (!addr)
3733 return NULL;
3734
Steven Rostedt044fa782008-12-02 23:50:03 -05003735 bpage = (void *)addr;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003736
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003737 rb_init_page(bpage);
3738
Steven Rostedt044fa782008-12-02 23:50:03 -05003739 return bpage;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003740}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04003741EXPORT_SYMBOL_GPL(ring_buffer_alloc_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003742
3743/**
3744 * ring_buffer_free_read_page - free an allocated read page
3745 * @buffer: the buffer the page was allocate for
3746 * @data: the page to free
3747 *
3748 * Free a page allocated from ring_buffer_alloc_read_page.
3749 */
3750void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data)
3751{
3752 free_page((unsigned long)data);
3753}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04003754EXPORT_SYMBOL_GPL(ring_buffer_free_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003755
3756/**
3757 * ring_buffer_read_page - extract a page from the ring buffer
3758 * @buffer: buffer to extract from
3759 * @data_page: the page to use allocated from ring_buffer_alloc_read_page
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003760 * @len: amount to extract
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003761 * @cpu: the cpu of the buffer to extract
3762 * @full: should the extraction only happen when the page is full.
3763 *
3764 * This function will pull out a page from the ring buffer and consume it.
3765 * @data_page must be the address of the variable that was returned
3766 * from ring_buffer_alloc_read_page. This is because the page might be used
3767 * to swap with a page in the ring buffer.
3768 *
3769 * for example:
Lai Jiangshanb85fa012009-02-09 14:21:14 +08003770 * rpage = ring_buffer_alloc_read_page(buffer);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003771 * if (!rpage)
3772 * return error;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003773 * ret = ring_buffer_read_page(buffer, &rpage, len, cpu, 0);
Lai Jiangshan667d2412009-02-09 14:21:17 +08003774 * if (ret >= 0)
3775 * process_page(rpage, ret);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003776 *
3777 * When @full is set, the function will not return true unless
3778 * the writer is off the reader page.
3779 *
3780 * Note: it is up to the calling functions to handle sleeps and wakeups.
3781 * The ring buffer can be used anywhere in the kernel and can not
3782 * blindly call wake_up. The layer that uses the ring buffer must be
3783 * responsible for that.
3784 *
3785 * Returns:
Lai Jiangshan667d2412009-02-09 14:21:17 +08003786 * >=0 if data has been transferred, returns the offset of consumed data.
3787 * <0 if no data has been transferred.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003788 */
3789int ring_buffer_read_page(struct ring_buffer *buffer,
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003790 void **data_page, size_t len, int cpu, int full)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003791{
3792 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
3793 struct ring_buffer_event *event;
Steven Rostedt044fa782008-12-02 23:50:03 -05003794 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003795 struct buffer_page *reader;
Steven Rostedtff0ff842010-03-31 22:11:42 -04003796 unsigned long missed_events;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003797 unsigned long flags;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003798 unsigned int commit;
Lai Jiangshan667d2412009-02-09 14:21:17 +08003799 unsigned int read;
Steven Rostedt4f3640f2009-03-03 23:52:42 -05003800 u64 save_timestamp;
Lai Jiangshan667d2412009-02-09 14:21:17 +08003801 int ret = -1;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003802
Steven Rostedt554f7862009-03-11 22:00:13 -04003803 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3804 goto out;
3805
Steven Rostedt474d32b2009-03-03 19:51:40 -05003806 /*
3807 * If len is not big enough to hold the page header, then
3808 * we can not copy anything.
3809 */
3810 if (len <= BUF_PAGE_HDR_SIZE)
Steven Rostedt554f7862009-03-11 22:00:13 -04003811 goto out;
Steven Rostedt474d32b2009-03-03 19:51:40 -05003812
3813 len -= BUF_PAGE_HDR_SIZE;
3814
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003815 if (!data_page)
Steven Rostedt554f7862009-03-11 22:00:13 -04003816 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003817
Steven Rostedt044fa782008-12-02 23:50:03 -05003818 bpage = *data_page;
3819 if (!bpage)
Steven Rostedt554f7862009-03-11 22:00:13 -04003820 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003821
3822 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
3823
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003824 reader = rb_get_reader_page(cpu_buffer);
3825 if (!reader)
Steven Rostedt554f7862009-03-11 22:00:13 -04003826 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003827
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003828 event = rb_reader_event(cpu_buffer);
Lai Jiangshan667d2412009-02-09 14:21:17 +08003829
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003830 read = reader->read;
3831 commit = rb_page_commit(reader);
3832
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003833 /* Check if any events were dropped */
Steven Rostedtff0ff842010-03-31 22:11:42 -04003834 missed_events = cpu_buffer->lost_events;
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003835
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003836 /*
Steven Rostedt474d32b2009-03-03 19:51:40 -05003837 * If this page has been partially read or
3838 * if len is not big enough to read the rest of the page or
3839 * a writer is still on the page, then
3840 * we must copy the data from the page to the buffer.
3841 * Otherwise, we can simply swap the page with the one passed in.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003842 */
Steven Rostedt474d32b2009-03-03 19:51:40 -05003843 if (read || (len < (commit - read)) ||
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003844 cpu_buffer->reader_page == cpu_buffer->commit_page) {
Lai Jiangshan667d2412009-02-09 14:21:17 +08003845 struct buffer_data_page *rpage = cpu_buffer->reader_page->page;
Steven Rostedt474d32b2009-03-03 19:51:40 -05003846 unsigned int rpos = read;
3847 unsigned int pos = 0;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003848 unsigned int size;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003849
3850 if (full)
Steven Rostedt554f7862009-03-11 22:00:13 -04003851 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003852
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003853 if (len > (commit - read))
3854 len = (commit - read);
3855
Steven Rostedt69d1b832010-10-07 18:18:05 -04003856 /* Always keep the time extend and data together */
3857 size = rb_event_ts_length(event);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003858
3859 if (len < size)
Steven Rostedt554f7862009-03-11 22:00:13 -04003860 goto out_unlock;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003861
Steven Rostedt4f3640f2009-03-03 23:52:42 -05003862 /* save the current timestamp, since the user will need it */
3863 save_timestamp = cpu_buffer->read_stamp;
3864
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003865 /* Need to copy one event at a time */
3866 do {
David Sharpe1e35922010-12-22 16:38:24 -08003867 /* We need the size of one event, because
3868 * rb_advance_reader only advances by one event,
3869 * whereas rb_event_ts_length may include the size of
3870 * one or two events.
3871 * We have already ensured there's enough space if this
3872 * is a time extend. */
3873 size = rb_event_length(event);
Steven Rostedt474d32b2009-03-03 19:51:40 -05003874 memcpy(bpage->data + pos, rpage->data + rpos, size);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003875
3876 len -= size;
3877
3878 rb_advance_reader(cpu_buffer);
Steven Rostedt474d32b2009-03-03 19:51:40 -05003879 rpos = reader->read;
3880 pos += size;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003881
Huang Ying18fab912010-07-28 14:14:01 +08003882 if (rpos >= commit)
3883 break;
3884
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003885 event = rb_reader_event(cpu_buffer);
Steven Rostedt69d1b832010-10-07 18:18:05 -04003886 /* Always keep the time extend and data together */
3887 size = rb_event_ts_length(event);
David Sharpe1e35922010-12-22 16:38:24 -08003888 } while (len >= size);
Lai Jiangshan667d2412009-02-09 14:21:17 +08003889
3890 /* update bpage */
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003891 local_set(&bpage->commit, pos);
Steven Rostedt4f3640f2009-03-03 23:52:42 -05003892 bpage->time_stamp = save_timestamp;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003893
Steven Rostedt474d32b2009-03-03 19:51:40 -05003894 /* we copied everything to the beginning */
3895 read = 0;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003896 } else {
Steven Rostedtafbab762009-05-01 19:40:05 -04003897 /* update the entry counter */
Steven Rostedt77ae3652009-03-27 11:00:29 -04003898 cpu_buffer->read += rb_page_entries(reader);
Steven Rostedtafbab762009-05-01 19:40:05 -04003899
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003900 /* swap the pages */
Steven Rostedt044fa782008-12-02 23:50:03 -05003901 rb_init_page(bpage);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003902 bpage = reader->page;
3903 reader->page = *data_page;
3904 local_set(&reader->write, 0);
Steven Rostedt778c55d2009-05-01 18:44:45 -04003905 local_set(&reader->entries, 0);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05003906 reader->read = 0;
Steven Rostedt044fa782008-12-02 23:50:03 -05003907 *data_page = bpage;
Steven Rostedtff0ff842010-03-31 22:11:42 -04003908
3909 /*
3910 * Use the real_end for the data size,
3911 * This gives us a chance to store the lost events
3912 * on the page.
3913 */
3914 if (reader->real_end)
3915 local_set(&bpage->commit, reader->real_end);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003916 }
Lai Jiangshan667d2412009-02-09 14:21:17 +08003917 ret = read;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003918
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003919 cpu_buffer->lost_events = 0;
Steven Rostedt2711ca22010-05-21 13:32:26 -04003920
3921 commit = local_read(&bpage->commit);
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003922 /*
3923 * Set a flag in the commit field if we lost events
3924 */
Steven Rostedtff0ff842010-03-31 22:11:42 -04003925 if (missed_events) {
Steven Rostedtff0ff842010-03-31 22:11:42 -04003926 /* If there is room at the end of the page to save the
3927 * missed events, then record it there.
3928 */
3929 if (BUF_PAGE_SIZE - commit >= sizeof(missed_events)) {
3930 memcpy(&bpage->data[commit], &missed_events,
3931 sizeof(missed_events));
3932 local_add(RB_MISSED_STORED, &bpage->commit);
Steven Rostedt2711ca22010-05-21 13:32:26 -04003933 commit += sizeof(missed_events);
Steven Rostedtff0ff842010-03-31 22:11:42 -04003934 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003935 local_add(RB_MISSED_EVENTS, &bpage->commit);
Steven Rostedtff0ff842010-03-31 22:11:42 -04003936 }
Steven Rostedt66a8cb92010-03-31 13:21:56 -04003937
Steven Rostedt2711ca22010-05-21 13:32:26 -04003938 /*
3939 * This page may be off to user land. Zero it out here.
3940 */
3941 if (commit < BUF_PAGE_SIZE)
3942 memset(&bpage->data[commit], 0, BUF_PAGE_SIZE - commit);
3943
Steven Rostedt554f7862009-03-11 22:00:13 -04003944 out_unlock:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003945 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
3946
Steven Rostedt554f7862009-03-11 22:00:13 -04003947 out:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003948 return ret;
3949}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04003950EXPORT_SYMBOL_GPL(ring_buffer_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05003951
Paul Mundt1155de42009-06-25 14:30:12 +09003952#ifdef CONFIG_TRACING
Steven Rostedta3583242008-11-11 15:01:42 -05003953static ssize_t
3954rb_simple_read(struct file *filp, char __user *ubuf,
3955 size_t cnt, loff_t *ppos)
3956{
Hannes Eder5e398412009-02-10 19:44:34 +01003957 unsigned long *p = filp->private_data;
Steven Rostedta3583242008-11-11 15:01:42 -05003958 char buf[64];
3959 int r;
3960
Steven Rostedt033601a2008-11-21 12:41:55 -05003961 if (test_bit(RB_BUFFERS_DISABLED_BIT, p))
3962 r = sprintf(buf, "permanently disabled\n");
3963 else
3964 r = sprintf(buf, "%d\n", test_bit(RB_BUFFERS_ON_BIT, p));
Steven Rostedta3583242008-11-11 15:01:42 -05003965
3966 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3967}
3968
3969static ssize_t
3970rb_simple_write(struct file *filp, const char __user *ubuf,
3971 size_t cnt, loff_t *ppos)
3972{
Hannes Eder5e398412009-02-10 19:44:34 +01003973 unsigned long *p = filp->private_data;
Steven Rostedta3583242008-11-11 15:01:42 -05003974 char buf[64];
Hannes Eder5e398412009-02-10 19:44:34 +01003975 unsigned long val;
Steven Rostedta3583242008-11-11 15:01:42 -05003976 int ret;
3977
3978 if (cnt >= sizeof(buf))
3979 return -EINVAL;
3980
3981 if (copy_from_user(&buf, ubuf, cnt))
3982 return -EFAULT;
3983
3984 buf[cnt] = 0;
3985
3986 ret = strict_strtoul(buf, 10, &val);
3987 if (ret < 0)
3988 return ret;
3989
Steven Rostedt033601a2008-11-21 12:41:55 -05003990 if (val)
3991 set_bit(RB_BUFFERS_ON_BIT, p);
3992 else
3993 clear_bit(RB_BUFFERS_ON_BIT, p);
Steven Rostedta3583242008-11-11 15:01:42 -05003994
3995 (*ppos)++;
3996
3997 return cnt;
3998}
3999
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004000static const struct file_operations rb_simple_fops = {
Steven Rostedta3583242008-11-11 15:01:42 -05004001 .open = tracing_open_generic,
4002 .read = rb_simple_read,
4003 .write = rb_simple_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02004004 .llseek = default_llseek,
Steven Rostedta3583242008-11-11 15:01:42 -05004005};
4006
4007
4008static __init int rb_init_debugfs(void)
4009{
4010 struct dentry *d_tracer;
Steven Rostedta3583242008-11-11 15:01:42 -05004011
4012 d_tracer = tracing_init_dentry();
4013
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004014 trace_create_file("tracing_on", 0644, d_tracer,
4015 &ring_buffer_flags, &rb_simple_fops);
Steven Rostedta3583242008-11-11 15:01:42 -05004016
4017 return 0;
4018}
4019
4020fs_initcall(rb_init_debugfs);
Paul Mundt1155de42009-06-25 14:30:12 +09004021#endif
Steven Rostedt554f7862009-03-11 22:00:13 -04004022
Steven Rostedt59222ef2009-03-12 11:46:03 -04004023#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01004024static int rb_cpu_notify(struct notifier_block *self,
4025 unsigned long action, void *hcpu)
Steven Rostedt554f7862009-03-11 22:00:13 -04004026{
4027 struct ring_buffer *buffer =
4028 container_of(self, struct ring_buffer, cpu_notify);
4029 long cpu = (long)hcpu;
4030
4031 switch (action) {
4032 case CPU_UP_PREPARE:
4033 case CPU_UP_PREPARE_FROZEN:
Rusty Russell3f237a72009-06-12 21:15:30 +09304034 if (cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04004035 return NOTIFY_OK;
4036
4037 buffer->buffers[cpu] =
4038 rb_allocate_cpu_buffer(buffer, cpu);
4039 if (!buffer->buffers[cpu]) {
4040 WARN(1, "failed to allocate ring buffer on CPU %ld\n",
4041 cpu);
4042 return NOTIFY_OK;
4043 }
4044 smp_wmb();
Rusty Russell3f237a72009-06-12 21:15:30 +09304045 cpumask_set_cpu(cpu, buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -04004046 break;
4047 case CPU_DOWN_PREPARE:
4048 case CPU_DOWN_PREPARE_FROZEN:
4049 /*
4050 * Do nothing.
4051 * If we were to free the buffer, then the user would
4052 * lose any trace that was in the buffer.
4053 */
4054 break;
4055 default:
4056 break;
4057 }
4058 return NOTIFY_OK;
4059}
4060#endif