blob: 3e86da9b2a09e66474c2905d6238cb9653551a0c [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>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040013#include <linux/module.h>
14#include <linux/percpu.h>
15#include <linux/mutex.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040016#include <linux/init.h>
17#include <linux/hash.h>
18#include <linux/list.h>
Steven Rostedt554f7862009-03-11 22:00:13 -040019#include <linux/cpu.h>
Steven Rostedt7a8e76a2008-09-29 23:02:38 -040020#include <linux/fs.h>
21
Steven Rostedt182e9f52008-11-03 23:15:56 -050022#include "trace.h"
23
Steven Rostedt033601a2008-11-21 12:41:55 -050024/*
Steven Rostedtd1b182a2009-04-15 16:53:47 -040025 * The ring buffer header is special. We must manually up keep it.
26 */
27int ring_buffer_print_entry_header(struct trace_seq *s)
28{
29 int ret;
30
Lai Jiangshan334d4162009-04-24 11:27:05 +080031 ret = trace_seq_printf(s, "# compressed entry header\n");
32 ret = trace_seq_printf(s, "\ttype_len : 5 bits\n");
Steven Rostedtd1b182a2009-04-15 16:53:47 -040033 ret = trace_seq_printf(s, "\ttime_delta : 27 bits\n");
34 ret = trace_seq_printf(s, "\tarray : 32 bits\n");
35 ret = trace_seq_printf(s, "\n");
36 ret = trace_seq_printf(s, "\tpadding : type == %d\n",
37 RINGBUF_TYPE_PADDING);
38 ret = trace_seq_printf(s, "\ttime_extend : type == %d\n",
39 RINGBUF_TYPE_TIME_EXTEND);
Lai Jiangshan334d4162009-04-24 11:27:05 +080040 ret = trace_seq_printf(s, "\tdata max type_len == %d\n",
41 RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedtd1b182a2009-04-15 16:53:47 -040042
43 return ret;
44}
45
46/*
Steven Rostedt5cc98542009-03-12 22:24:17 -040047 * The ring buffer is made up of a list of pages. A separate list of pages is
48 * allocated for each CPU. A writer may only write to a buffer that is
49 * associated with the CPU it is currently executing on. A reader may read
50 * from any per cpu buffer.
51 *
52 * The reader is special. For each per cpu buffer, the reader has its own
53 * reader page. When a reader has read the entire reader page, this reader
54 * page is swapped with another page in the ring buffer.
55 *
56 * Now, as long as the writer is off the reader page, the reader can do what
57 * ever it wants with that page. The writer will never write to that page
58 * again (as long as it is out of the ring buffer).
59 *
60 * Here's some silly ASCII art.
61 *
62 * +------+
63 * |reader| RING BUFFER
64 * |page |
65 * +------+ +---+ +---+ +---+
66 * | |-->| |-->| |
67 * +---+ +---+ +---+
68 * ^ |
69 * | |
70 * +---------------+
71 *
72 *
73 * +------+
74 * |reader| RING BUFFER
75 * |page |------------------v
76 * +------+ +---+ +---+ +---+
77 * | |-->| |-->| |
78 * +---+ +---+ +---+
79 * ^ |
80 * | |
81 * +---------------+
82 *
83 *
84 * +------+
85 * |reader| RING BUFFER
86 * |page |------------------v
87 * +------+ +---+ +---+ +---+
88 * ^ | |-->| |-->| |
89 * | +---+ +---+ +---+
90 * | |
91 * | |
92 * +------------------------------+
93 *
94 *
95 * +------+
96 * |buffer| RING BUFFER
97 * |page |------------------v
98 * +------+ +---+ +---+ +---+
99 * ^ | | | |-->| |
100 * | New +---+ +---+ +---+
101 * | Reader------^ |
102 * | page |
103 * +------------------------------+
104 *
105 *
106 * After we make this swap, the reader can hand this page off to the splice
107 * code and be done with it. It can even allocate a new page if it needs to
108 * and swap that into the ring buffer.
109 *
110 * We will be using cmpxchg soon to make all this lockless.
111 *
112 */
113
114/*
Steven Rostedt033601a2008-11-21 12:41:55 -0500115 * A fast way to enable or disable all ring buffers is to
116 * call tracing_on or tracing_off. Turning off the ring buffers
117 * prevents all ring buffers from being recorded to.
118 * Turning this switch on, makes it OK to write to the
119 * ring buffer, if the ring buffer is enabled itself.
120 *
121 * There's three layers that must be on in order to write
122 * to the ring buffer.
123 *
124 * 1) This global flag must be set.
125 * 2) The ring buffer must be enabled for recording.
126 * 3) The per cpu buffer must be enabled for recording.
127 *
128 * In case of an anomaly, this global flag has a bit set that
129 * will permantly disable all ring buffers.
130 */
131
132/*
133 * Global flag to disable all recording to ring buffers
134 * This has two bits: ON, DISABLED
135 *
136 * ON DISABLED
137 * ---- ----------
138 * 0 0 : ring buffers are off
139 * 1 0 : ring buffers are on
140 * X 1 : ring buffers are permanently disabled
141 */
142
143enum {
144 RB_BUFFERS_ON_BIT = 0,
145 RB_BUFFERS_DISABLED_BIT = 1,
146};
147
148enum {
149 RB_BUFFERS_ON = 1 << RB_BUFFERS_ON_BIT,
150 RB_BUFFERS_DISABLED = 1 << RB_BUFFERS_DISABLED_BIT,
151};
152
Hannes Eder5e398412009-02-10 19:44:34 +0100153static unsigned long ring_buffer_flags __read_mostly = RB_BUFFERS_ON;
Steven Rostedta3583242008-11-11 15:01:42 -0500154
Steven Rostedt474d32b2009-03-03 19:51:40 -0500155#define BUF_PAGE_HDR_SIZE offsetof(struct buffer_data_page, data)
156
Steven Rostedta3583242008-11-11 15:01:42 -0500157/**
158 * tracing_on - enable all tracing buffers
159 *
160 * This function enables all tracing buffers that may have been
161 * disabled with tracing_off.
162 */
163void tracing_on(void)
164{
Steven Rostedt033601a2008-11-21 12:41:55 -0500165 set_bit(RB_BUFFERS_ON_BIT, &ring_buffer_flags);
Steven Rostedta3583242008-11-11 15:01:42 -0500166}
Robert Richterc4f50182008-12-11 16:49:22 +0100167EXPORT_SYMBOL_GPL(tracing_on);
Steven Rostedta3583242008-11-11 15:01:42 -0500168
169/**
170 * tracing_off - turn off all tracing buffers
171 *
172 * This function stops all tracing buffers from recording data.
173 * It does not disable any overhead the tracers themselves may
174 * be causing. This function simply causes all recording to
175 * the ring buffers to fail.
176 */
177void tracing_off(void)
178{
Steven Rostedt033601a2008-11-21 12:41:55 -0500179 clear_bit(RB_BUFFERS_ON_BIT, &ring_buffer_flags);
180}
Robert Richterc4f50182008-12-11 16:49:22 +0100181EXPORT_SYMBOL_GPL(tracing_off);
Steven Rostedt033601a2008-11-21 12:41:55 -0500182
183/**
184 * tracing_off_permanent - permanently disable ring buffers
185 *
186 * This function, once called, will disable all ring buffers
Wenji Huangc3706f02009-02-10 01:03:18 -0500187 * permanently.
Steven Rostedt033601a2008-11-21 12:41:55 -0500188 */
189void tracing_off_permanent(void)
190{
191 set_bit(RB_BUFFERS_DISABLED_BIT, &ring_buffer_flags);
Steven Rostedta3583242008-11-11 15:01:42 -0500192}
193
Steven Rostedt988ae9d2009-02-14 19:17:02 -0500194/**
195 * tracing_is_on - show state of ring buffers enabled
196 */
197int tracing_is_on(void)
198{
199 return ring_buffer_flags == RB_BUFFERS_ON;
200}
201EXPORT_SYMBOL_GPL(tracing_is_on);
202
Ingo Molnard06bbd62008-11-12 10:11:37 +0100203#include "trace.h"
204
Steven Rostedte3d6bf02009-03-03 13:53:07 -0500205#define RB_EVNT_HDR_SIZE (offsetof(struct ring_buffer_event, array))
Andrew Morton67d34722009-01-09 12:27:09 -0800206#define RB_ALIGNMENT 4U
Lai Jiangshan334d4162009-04-24 11:27:05 +0800207#define RB_MAX_SMALL_DATA (RB_ALIGNMENT * RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
208
209/* define RINGBUF_TYPE_DATA for 'case RINGBUF_TYPE_DATA:' */
210#define RINGBUF_TYPE_DATA 0 ... RINGBUF_TYPE_DATA_TYPE_LEN_MAX
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400211
212enum {
213 RB_LEN_TIME_EXTEND = 8,
214 RB_LEN_TIME_STAMP = 16,
215};
216
Tom Zanussi2d622712009-03-22 03:30:49 -0500217static inline int rb_null_event(struct ring_buffer_event *event)
218{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800219 return event->type_len == RINGBUF_TYPE_PADDING
220 && event->time_delta == 0;
Tom Zanussi2d622712009-03-22 03:30:49 -0500221}
222
223static inline int rb_discarded_event(struct ring_buffer_event *event)
224{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800225 return event->type_len == RINGBUF_TYPE_PADDING && event->time_delta;
Tom Zanussi2d622712009-03-22 03:30:49 -0500226}
227
228static void rb_event_set_padding(struct ring_buffer_event *event)
229{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800230 event->type_len = RINGBUF_TYPE_PADDING;
Tom Zanussi2d622712009-03-22 03:30:49 -0500231 event->time_delta = 0;
232}
233
Tom Zanussi2d622712009-03-22 03:30:49 -0500234static unsigned
235rb_event_data_length(struct ring_buffer_event *event)
236{
237 unsigned length;
238
Lai Jiangshan334d4162009-04-24 11:27:05 +0800239 if (event->type_len)
240 length = event->type_len * RB_ALIGNMENT;
Tom Zanussi2d622712009-03-22 03:30:49 -0500241 else
242 length = event->array[0];
243 return length + RB_EVNT_HDR_SIZE;
244}
245
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400246/* inline for ring buffer fast paths */
Andrew Morton34a148b2009-01-09 12:27:09 -0800247static unsigned
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400248rb_event_length(struct ring_buffer_event *event)
249{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800250 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400251 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -0500252 if (rb_null_event(event))
253 /* undefined */
254 return -1;
Lai Jiangshan334d4162009-04-24 11:27:05 +0800255 return event->array[0] + RB_EVNT_HDR_SIZE;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400256
257 case RINGBUF_TYPE_TIME_EXTEND:
258 return RB_LEN_TIME_EXTEND;
259
260 case RINGBUF_TYPE_TIME_STAMP:
261 return RB_LEN_TIME_STAMP;
262
263 case RINGBUF_TYPE_DATA:
Tom Zanussi2d622712009-03-22 03:30:49 -0500264 return rb_event_data_length(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400265 default:
266 BUG();
267 }
268 /* not hit */
269 return 0;
270}
271
272/**
273 * ring_buffer_event_length - return the length of the event
274 * @event: the event to get the length of
275 */
276unsigned ring_buffer_event_length(struct ring_buffer_event *event)
277{
Robert Richter465634a2009-01-07 15:32:11 +0100278 unsigned length = rb_event_length(event);
Lai Jiangshan334d4162009-04-24 11:27:05 +0800279 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Robert Richter465634a2009-01-07 15:32:11 +0100280 return length;
281 length -= RB_EVNT_HDR_SIZE;
282 if (length > RB_MAX_SMALL_DATA + sizeof(event->array[0]))
283 length -= sizeof(event->array[0]);
284 return length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400285}
Robert Richterc4f50182008-12-11 16:49:22 +0100286EXPORT_SYMBOL_GPL(ring_buffer_event_length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400287
288/* inline for ring buffer fast paths */
Andrew Morton34a148b2009-01-09 12:27:09 -0800289static void *
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400290rb_event_data(struct ring_buffer_event *event)
291{
Lai Jiangshan334d4162009-04-24 11:27:05 +0800292 BUG_ON(event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400293 /* If length is in len field, then array[0] has the data */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800294 if (event->type_len)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400295 return (void *)&event->array[0];
296 /* Otherwise length is in array[0] and array[1] has the data */
297 return (void *)&event->array[1];
298}
299
300/**
301 * ring_buffer_event_data - return the data of the event
302 * @event: the event to get the data from
303 */
304void *ring_buffer_event_data(struct ring_buffer_event *event)
305{
306 return rb_event_data(event);
307}
Robert Richterc4f50182008-12-11 16:49:22 +0100308EXPORT_SYMBOL_GPL(ring_buffer_event_data);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400309
310#define for_each_buffer_cpu(buffer, cpu) \
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030311 for_each_cpu(cpu, buffer->cpumask)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400312
313#define TS_SHIFT 27
314#define TS_MASK ((1ULL << TS_SHIFT) - 1)
315#define TS_DELTA_TEST (~TS_MASK)
316
Steven Rostedtabc9b562008-12-02 15:34:06 -0500317struct buffer_data_page {
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400318 u64 time_stamp; /* page time stamp */
Wenji Huangc3706f02009-02-10 01:03:18 -0500319 local_t commit; /* write committed index */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500320 unsigned char data[]; /* data of buffer page */
321};
322
323struct buffer_page {
324 local_t write; /* index for next write */
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400325 unsigned read; /* index for next read */
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400326 struct list_head list; /* list of free pages */
Steven Rostedtabc9b562008-12-02 15:34:06 -0500327 struct buffer_data_page *page; /* Actual data page */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400328};
329
Steven Rostedt044fa782008-12-02 23:50:03 -0500330static void rb_init_page(struct buffer_data_page *bpage)
Steven Rostedtabc9b562008-12-02 15:34:06 -0500331{
Steven Rostedt044fa782008-12-02 23:50:03 -0500332 local_set(&bpage->commit, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -0500333}
334
Steven Rostedt474d32b2009-03-03 19:51:40 -0500335/**
336 * ring_buffer_page_len - the size of data on the page.
337 * @page: The page to read
338 *
339 * Returns the amount of data on the page, including buffer page header.
340 */
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500341size_t ring_buffer_page_len(void *page)
342{
Steven Rostedt474d32b2009-03-03 19:51:40 -0500343 return local_read(&((struct buffer_data_page *)page)->commit)
344 + BUF_PAGE_HDR_SIZE;
Steven Rostedtef7a4a12009-03-03 00:27:49 -0500345}
346
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400347/*
Steven Rostedted568292008-09-29 23:02:40 -0400348 * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing
349 * this issue out.
350 */
Andrew Morton34a148b2009-01-09 12:27:09 -0800351static void free_buffer_page(struct buffer_page *bpage)
Steven Rostedted568292008-09-29 23:02:40 -0400352{
Andrew Morton34a148b2009-01-09 12:27:09 -0800353 free_page((unsigned long)bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400354 kfree(bpage);
Steven Rostedted568292008-09-29 23:02:40 -0400355}
356
357/*
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400358 * We need to fit the time_stamp delta into 27 bits.
359 */
360static inline int test_time_stamp(u64 delta)
361{
362 if (delta & TS_DELTA_TEST)
363 return 1;
364 return 0;
365}
366
Steven Rostedt474d32b2009-03-03 19:51:40 -0500367#define BUF_PAGE_SIZE (PAGE_SIZE - BUF_PAGE_HDR_SIZE)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400368
Steven Rostedtd1b182a2009-04-15 16:53:47 -0400369int ring_buffer_print_page_header(struct trace_seq *s)
370{
371 struct buffer_data_page field;
372 int ret;
373
374 ret = trace_seq_printf(s, "\tfield: u64 timestamp;\t"
375 "offset:0;\tsize:%u;\n",
376 (unsigned int)sizeof(field.time_stamp));
377
378 ret = trace_seq_printf(s, "\tfield: local_t commit;\t"
379 "offset:%u;\tsize:%u;\n",
380 (unsigned int)offsetof(typeof(field), commit),
381 (unsigned int)sizeof(field.commit));
382
383 ret = trace_seq_printf(s, "\tfield: char data;\t"
384 "offset:%u;\tsize:%u;\n",
385 (unsigned int)offsetof(typeof(field), data),
386 (unsigned int)BUF_PAGE_SIZE);
387
388 return ret;
389}
390
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400391/*
392 * head_page == tail_page && head == tail then buffer is empty.
393 */
394struct ring_buffer_per_cpu {
395 int cpu;
396 struct ring_buffer *buffer;
Steven Rostedtf83c9d02008-11-11 18:47:44 +0100397 spinlock_t reader_lock; /* serialize readers */
Steven Rostedt3e03fb72008-11-06 00:09:43 -0500398 raw_spinlock_t lock;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400399 struct lock_class_key lock_key;
400 struct list_head pages;
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400401 struct buffer_page *head_page; /* read from head */
402 struct buffer_page *tail_page; /* write to tail */
Wenji Huangc3706f02009-02-10 01:03:18 -0500403 struct buffer_page *commit_page; /* committed pages */
Steven Rostedtd7690412008-10-01 00:29:53 -0400404 struct buffer_page *reader_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400405 unsigned long overrun;
406 unsigned long entries;
407 u64 write_stamp;
408 u64 read_stamp;
409 atomic_t record_disabled;
410};
411
412struct ring_buffer {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400413 unsigned pages;
414 unsigned flags;
415 int cpus;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400416 atomic_t record_disabled;
Arnaldo Carvalho de Melo00f62f62009-02-09 17:04:06 -0200417 cpumask_var_t cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400418
419 struct mutex mutex;
420
421 struct ring_buffer_per_cpu **buffers;
Steven Rostedt554f7862009-03-11 22:00:13 -0400422
Steven Rostedt59222ef2009-03-12 11:46:03 -0400423#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400424 struct notifier_block cpu_notify;
425#endif
Steven Rostedt37886f62009-03-17 17:22:06 -0400426 u64 (*clock)(void);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400427};
428
429struct ring_buffer_iter {
430 struct ring_buffer_per_cpu *cpu_buffer;
431 unsigned long head;
432 struct buffer_page *head_page;
433 u64 read_stamp;
434};
435
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500436/* buffer may be either ring_buffer or ring_buffer_per_cpu */
Steven Rostedtbf41a152008-10-04 02:00:59 -0400437#define RB_WARN_ON(buffer, cond) \
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500438 ({ \
439 int _____ret = unlikely(cond); \
440 if (_____ret) { \
Steven Rostedtbf41a152008-10-04 02:00:59 -0400441 atomic_inc(&buffer->record_disabled); \
442 WARN_ON(1); \
443 } \
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500444 _____ret; \
445 })
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500446
Steven Rostedt37886f62009-03-17 17:22:06 -0400447/* Up this if you want to test the TIME_EXTENTS and normalization */
448#define DEBUG_SHIFT 0
449
450u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu)
451{
452 u64 time;
453
454 preempt_disable_notrace();
455 /* shift to debug/test normalization and TIME_EXTENTS */
456 time = buffer->clock() << DEBUG_SHIFT;
457 preempt_enable_no_resched_notrace();
458
459 return time;
460}
461EXPORT_SYMBOL_GPL(ring_buffer_time_stamp);
462
463void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
464 int cpu, u64 *ts)
465{
466 /* Just stupid testing the normalize function and deltas */
467 *ts >>= DEBUG_SHIFT;
468}
469EXPORT_SYMBOL_GPL(ring_buffer_normalize_time_stamp);
470
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400471/**
472 * check_pages - integrity check of buffer pages
473 * @cpu_buffer: CPU buffer with pages to test
474 *
Wenji Huangc3706f02009-02-10 01:03:18 -0500475 * As a safety measure we check to make sure the data pages have not
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400476 * been corrupted.
477 */
478static int rb_check_pages(struct ring_buffer_per_cpu *cpu_buffer)
479{
480 struct list_head *head = &cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500481 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400482
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500483 if (RB_WARN_ON(cpu_buffer, head->next->prev != head))
484 return -1;
485 if (RB_WARN_ON(cpu_buffer, head->prev->next != head))
486 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400487
Steven Rostedt044fa782008-12-02 23:50:03 -0500488 list_for_each_entry_safe(bpage, tmp, head, list) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500489 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -0500490 bpage->list.next->prev != &bpage->list))
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500491 return -1;
492 if (RB_WARN_ON(cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -0500493 bpage->list.prev->next != &bpage->list))
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500494 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400495 }
496
497 return 0;
498}
499
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400500static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
501 unsigned nr_pages)
502{
503 struct list_head *head = &cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500504 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400505 unsigned long addr;
506 LIST_HEAD(pages);
507 unsigned i;
508
509 for (i = 0; i < nr_pages; i++) {
Steven Rostedt044fa782008-12-02 23:50:03 -0500510 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedtaa1e0e3b2008-10-02 19:18:09 -0400511 GFP_KERNEL, cpu_to_node(cpu_buffer->cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -0500512 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400513 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500514 list_add(&bpage->list, &pages);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400515
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400516 addr = __get_free_page(GFP_KERNEL);
517 if (!addr)
518 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500519 bpage->page = (void *)addr;
520 rb_init_page(bpage->page);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400521 }
522
523 list_splice(&pages, head);
524
525 rb_check_pages(cpu_buffer);
526
527 return 0;
528
529 free_pages:
Steven Rostedt044fa782008-12-02 23:50:03 -0500530 list_for_each_entry_safe(bpage, tmp, &pages, list) {
531 list_del_init(&bpage->list);
532 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400533 }
534 return -ENOMEM;
535}
536
537static struct ring_buffer_per_cpu *
538rb_allocate_cpu_buffer(struct ring_buffer *buffer, int cpu)
539{
540 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt044fa782008-12-02 23:50:03 -0500541 struct buffer_page *bpage;
Steven Rostedtd7690412008-10-01 00:29:53 -0400542 unsigned long addr;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400543 int ret;
544
545 cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
546 GFP_KERNEL, cpu_to_node(cpu));
547 if (!cpu_buffer)
548 return NULL;
549
550 cpu_buffer->cpu = cpu;
551 cpu_buffer->buffer = buffer;
Steven Rostedtf83c9d02008-11-11 18:47:44 +0100552 spin_lock_init(&cpu_buffer->reader_lock);
Steven Rostedt3e03fb72008-11-06 00:09:43 -0500553 cpu_buffer->lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400554 INIT_LIST_HEAD(&cpu_buffer->pages);
555
Steven Rostedt044fa782008-12-02 23:50:03 -0500556 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400557 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -0500558 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400559 goto fail_free_buffer;
560
Steven Rostedt044fa782008-12-02 23:50:03 -0500561 cpu_buffer->reader_page = bpage;
Steven Rostedtd7690412008-10-01 00:29:53 -0400562 addr = __get_free_page(GFP_KERNEL);
563 if (!addr)
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400564 goto fail_free_reader;
Steven Rostedt044fa782008-12-02 23:50:03 -0500565 bpage->page = (void *)addr;
566 rb_init_page(bpage->page);
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400567
Steven Rostedtd7690412008-10-01 00:29:53 -0400568 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
Steven Rostedtd7690412008-10-01 00:29:53 -0400569
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400570 ret = rb_allocate_pages(cpu_buffer, buffer->pages);
571 if (ret < 0)
Steven Rostedtd7690412008-10-01 00:29:53 -0400572 goto fail_free_reader;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400573
574 cpu_buffer->head_page
575 = list_entry(cpu_buffer->pages.next, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -0400576 cpu_buffer->tail_page = cpu_buffer->commit_page = cpu_buffer->head_page;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400577
578 return cpu_buffer;
579
Steven Rostedtd7690412008-10-01 00:29:53 -0400580 fail_free_reader:
581 free_buffer_page(cpu_buffer->reader_page);
582
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400583 fail_free_buffer:
584 kfree(cpu_buffer);
585 return NULL;
586}
587
588static void rb_free_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
589{
590 struct list_head *head = &cpu_buffer->pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500591 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400592
Steven Rostedtd7690412008-10-01 00:29:53 -0400593 free_buffer_page(cpu_buffer->reader_page);
594
Steven Rostedt044fa782008-12-02 23:50:03 -0500595 list_for_each_entry_safe(bpage, tmp, head, list) {
596 list_del_init(&bpage->list);
597 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400598 }
599 kfree(cpu_buffer);
600}
601
Steven Rostedta7b13742008-09-29 23:02:39 -0400602/*
603 * Causes compile errors if the struct buffer_page gets bigger
604 * than the struct page.
605 */
606extern int ring_buffer_page_too_big(void);
607
Steven Rostedt59222ef2009-03-12 11:46:03 -0400608#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +0100609static int rb_cpu_notify(struct notifier_block *self,
610 unsigned long action, void *hcpu);
Steven Rostedt554f7862009-03-11 22:00:13 -0400611#endif
612
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400613/**
614 * ring_buffer_alloc - allocate a new ring_buffer
Robert Richter68814b52008-11-24 12:24:12 +0100615 * @size: the size in bytes per cpu that is needed.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400616 * @flags: attributes to set for the ring buffer.
617 *
618 * Currently the only flag that is available is the RB_FL_OVERWRITE
619 * flag. This flag means that the buffer will overwrite old data
620 * when the buffer wraps. If this flag is not set, the buffer will
621 * drop data when the tail hits the head.
622 */
623struct ring_buffer *ring_buffer_alloc(unsigned long size, unsigned flags)
624{
625 struct ring_buffer *buffer;
626 int bsize;
627 int cpu;
628
Steven Rostedta7b13742008-09-29 23:02:39 -0400629 /* Paranoid! Optimizes out when all is well */
630 if (sizeof(struct buffer_page) > sizeof(struct page))
631 ring_buffer_page_too_big();
632
633
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400634 /* keep it in its own cache line */
635 buffer = kzalloc(ALIGN(sizeof(*buffer), cache_line_size()),
636 GFP_KERNEL);
637 if (!buffer)
638 return NULL;
639
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030640 if (!alloc_cpumask_var(&buffer->cpumask, GFP_KERNEL))
641 goto fail_free_buffer;
642
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400643 buffer->pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
644 buffer->flags = flags;
Steven Rostedt37886f62009-03-17 17:22:06 -0400645 buffer->clock = trace_clock_local;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400646
647 /* need at least two pages */
648 if (buffer->pages == 1)
649 buffer->pages++;
650
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +0100651 /*
652 * In case of non-hotplug cpu, if the ring-buffer is allocated
653 * in early initcall, it will not be notified of secondary cpus.
654 * In that off case, we need to allocate for all possible cpus.
655 */
656#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400657 get_online_cpus();
658 cpumask_copy(buffer->cpumask, cpu_online_mask);
Frederic Weisbecker3bf832c2009-03-19 14:47:33 +0100659#else
660 cpumask_copy(buffer->cpumask, cpu_possible_mask);
661#endif
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400662 buffer->cpus = nr_cpu_ids;
663
664 bsize = sizeof(void *) * nr_cpu_ids;
665 buffer->buffers = kzalloc(ALIGN(bsize, cache_line_size()),
666 GFP_KERNEL);
667 if (!buffer->buffers)
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030668 goto fail_free_cpumask;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400669
670 for_each_buffer_cpu(buffer, cpu) {
671 buffer->buffers[cpu] =
672 rb_allocate_cpu_buffer(buffer, cpu);
673 if (!buffer->buffers[cpu])
674 goto fail_free_buffers;
675 }
676
Steven Rostedt59222ef2009-03-12 11:46:03 -0400677#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400678 buffer->cpu_notify.notifier_call = rb_cpu_notify;
679 buffer->cpu_notify.priority = 0;
680 register_cpu_notifier(&buffer->cpu_notify);
681#endif
682
683 put_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400684 mutex_init(&buffer->mutex);
685
686 return buffer;
687
688 fail_free_buffers:
689 for_each_buffer_cpu(buffer, cpu) {
690 if (buffer->buffers[cpu])
691 rb_free_cpu_buffer(buffer->buffers[cpu]);
692 }
693 kfree(buffer->buffers);
694
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030695 fail_free_cpumask:
696 free_cpumask_var(buffer->cpumask);
Steven Rostedt554f7862009-03-11 22:00:13 -0400697 put_online_cpus();
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030698
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400699 fail_free_buffer:
700 kfree(buffer);
701 return NULL;
702}
Robert Richterc4f50182008-12-11 16:49:22 +0100703EXPORT_SYMBOL_GPL(ring_buffer_alloc);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400704
705/**
706 * ring_buffer_free - free a ring buffer.
707 * @buffer: the buffer to free.
708 */
709void
710ring_buffer_free(struct ring_buffer *buffer)
711{
712 int cpu;
713
Steven Rostedt554f7862009-03-11 22:00:13 -0400714 get_online_cpus();
715
Steven Rostedt59222ef2009-03-12 11:46:03 -0400716#ifdef CONFIG_HOTPLUG_CPU
Steven Rostedt554f7862009-03-11 22:00:13 -0400717 unregister_cpu_notifier(&buffer->cpu_notify);
718#endif
719
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400720 for_each_buffer_cpu(buffer, cpu)
721 rb_free_cpu_buffer(buffer->buffers[cpu]);
722
Steven Rostedt554f7862009-03-11 22:00:13 -0400723 put_online_cpus();
724
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030725 free_cpumask_var(buffer->cpumask);
726
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400727 kfree(buffer);
728}
Robert Richterc4f50182008-12-11 16:49:22 +0100729EXPORT_SYMBOL_GPL(ring_buffer_free);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400730
Steven Rostedt37886f62009-03-17 17:22:06 -0400731void ring_buffer_set_clock(struct ring_buffer *buffer,
732 u64 (*clock)(void))
733{
734 buffer->clock = clock;
735}
736
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400737static void rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer);
738
739static void
740rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned nr_pages)
741{
Steven Rostedt044fa782008-12-02 23:50:03 -0500742 struct buffer_page *bpage;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400743 struct list_head *p;
744 unsigned i;
745
746 atomic_inc(&cpu_buffer->record_disabled);
747 synchronize_sched();
748
749 for (i = 0; i < nr_pages; i++) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500750 if (RB_WARN_ON(cpu_buffer, list_empty(&cpu_buffer->pages)))
751 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400752 p = cpu_buffer->pages.next;
Steven Rostedt044fa782008-12-02 23:50:03 -0500753 bpage = list_entry(p, struct buffer_page, list);
754 list_del_init(&bpage->list);
755 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400756 }
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500757 if (RB_WARN_ON(cpu_buffer, list_empty(&cpu_buffer->pages)))
758 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400759
760 rb_reset_cpu(cpu_buffer);
761
762 rb_check_pages(cpu_buffer);
763
764 atomic_dec(&cpu_buffer->record_disabled);
765
766}
767
768static void
769rb_insert_pages(struct ring_buffer_per_cpu *cpu_buffer,
770 struct list_head *pages, unsigned nr_pages)
771{
Steven Rostedt044fa782008-12-02 23:50:03 -0500772 struct buffer_page *bpage;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400773 struct list_head *p;
774 unsigned i;
775
776 atomic_inc(&cpu_buffer->record_disabled);
777 synchronize_sched();
778
779 for (i = 0; i < nr_pages; i++) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500780 if (RB_WARN_ON(cpu_buffer, list_empty(pages)))
781 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400782 p = pages->next;
Steven Rostedt044fa782008-12-02 23:50:03 -0500783 bpage = list_entry(p, struct buffer_page, list);
784 list_del_init(&bpage->list);
785 list_add_tail(&bpage->list, &cpu_buffer->pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400786 }
787 rb_reset_cpu(cpu_buffer);
788
789 rb_check_pages(cpu_buffer);
790
791 atomic_dec(&cpu_buffer->record_disabled);
792}
793
794/**
795 * ring_buffer_resize - resize the ring buffer
796 * @buffer: the buffer to resize.
797 * @size: the new size.
798 *
799 * The tracer is responsible for making sure that the buffer is
800 * not being used while changing the size.
801 * Note: We may be able to change the above requirement by using
802 * RCU synchronizations.
803 *
804 * Minimum size is 2 * BUF_PAGE_SIZE.
805 *
806 * Returns -1 on failure.
807 */
808int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size)
809{
810 struct ring_buffer_per_cpu *cpu_buffer;
811 unsigned nr_pages, rm_pages, new_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500812 struct buffer_page *bpage, *tmp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400813 unsigned long buffer_size;
814 unsigned long addr;
815 LIST_HEAD(pages);
816 int i, cpu;
817
Ingo Molnaree51a1d2008-11-13 14:58:31 +0100818 /*
819 * Always succeed at resizing a non-existent buffer:
820 */
821 if (!buffer)
822 return size;
823
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400824 size = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
825 size *= BUF_PAGE_SIZE;
826 buffer_size = buffer->pages * BUF_PAGE_SIZE;
827
828 /* we need a minimum of two pages */
829 if (size < BUF_PAGE_SIZE * 2)
830 size = BUF_PAGE_SIZE * 2;
831
832 if (size == buffer_size)
833 return size;
834
835 mutex_lock(&buffer->mutex);
Steven Rostedt554f7862009-03-11 22:00:13 -0400836 get_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400837
838 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
839
840 if (size < buffer_size) {
841
842 /* easy case, just free pages */
Steven Rostedt554f7862009-03-11 22:00:13 -0400843 if (RB_WARN_ON(buffer, nr_pages >= buffer->pages))
844 goto out_fail;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400845
846 rm_pages = buffer->pages - nr_pages;
847
848 for_each_buffer_cpu(buffer, cpu) {
849 cpu_buffer = buffer->buffers[cpu];
850 rb_remove_pages(cpu_buffer, rm_pages);
851 }
852 goto out;
853 }
854
855 /*
856 * This is a bit more difficult. We only want to add pages
857 * when we can allocate enough for all CPUs. We do this
858 * by allocating all the pages and storing them on a local
859 * link list. If we succeed in our allocation, then we
860 * add these pages to the cpu_buffers. Otherwise we just free
861 * them all and return -ENOMEM;
862 */
Steven Rostedt554f7862009-03-11 22:00:13 -0400863 if (RB_WARN_ON(buffer, nr_pages <= buffer->pages))
864 goto out_fail;
Steven Rostedtf536aaf2008-11-10 23:07:30 -0500865
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400866 new_pages = nr_pages - buffer->pages;
867
868 for_each_buffer_cpu(buffer, cpu) {
869 for (i = 0; i < new_pages; i++) {
Steven Rostedt044fa782008-12-02 23:50:03 -0500870 bpage = kzalloc_node(ALIGN(sizeof(*bpage),
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400871 cache_line_size()),
872 GFP_KERNEL, cpu_to_node(cpu));
Steven Rostedt044fa782008-12-02 23:50:03 -0500873 if (!bpage)
Steven Rostedte4c2ce82008-10-01 11:14:54 -0400874 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500875 list_add(&bpage->list, &pages);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400876 addr = __get_free_page(GFP_KERNEL);
877 if (!addr)
878 goto free_pages;
Steven Rostedt044fa782008-12-02 23:50:03 -0500879 bpage->page = (void *)addr;
880 rb_init_page(bpage->page);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400881 }
882 }
883
884 for_each_buffer_cpu(buffer, cpu) {
885 cpu_buffer = buffer->buffers[cpu];
886 rb_insert_pages(cpu_buffer, &pages, new_pages);
887 }
888
Steven Rostedt554f7862009-03-11 22:00:13 -0400889 if (RB_WARN_ON(buffer, !list_empty(&pages)))
890 goto out_fail;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400891
892 out:
893 buffer->pages = nr_pages;
Steven Rostedt554f7862009-03-11 22:00:13 -0400894 put_online_cpus();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400895 mutex_unlock(&buffer->mutex);
896
897 return size;
898
899 free_pages:
Steven Rostedt044fa782008-12-02 23:50:03 -0500900 list_for_each_entry_safe(bpage, tmp, &pages, list) {
901 list_del_init(&bpage->list);
902 free_buffer_page(bpage);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400903 }
Steven Rostedt554f7862009-03-11 22:00:13 -0400904 put_online_cpus();
Vegard Nossum641d2f62008-11-18 19:22:13 +0100905 mutex_unlock(&buffer->mutex);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400906 return -ENOMEM;
Steven Rostedt554f7862009-03-11 22:00:13 -0400907
908 /*
909 * Something went totally wrong, and we are too paranoid
910 * to even clean up the mess.
911 */
912 out_fail:
913 put_online_cpus();
914 mutex_unlock(&buffer->mutex);
915 return -1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400916}
Robert Richterc4f50182008-12-11 16:49:22 +0100917EXPORT_SYMBOL_GPL(ring_buffer_resize);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400918
Steven Rostedt8789a9e2008-12-02 15:34:07 -0500919static inline void *
Steven Rostedt044fa782008-12-02 23:50:03 -0500920__rb_data_page_index(struct buffer_data_page *bpage, unsigned index)
Steven Rostedt8789a9e2008-12-02 15:34:07 -0500921{
Steven Rostedt044fa782008-12-02 23:50:03 -0500922 return bpage->data + index;
Steven Rostedt8789a9e2008-12-02 15:34:07 -0500923}
924
Steven Rostedt044fa782008-12-02 23:50:03 -0500925static inline void *__rb_page_index(struct buffer_page *bpage, unsigned index)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400926{
Steven Rostedt044fa782008-12-02 23:50:03 -0500927 return bpage->page->data + index;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400928}
929
930static inline struct ring_buffer_event *
Steven Rostedtd7690412008-10-01 00:29:53 -0400931rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400932{
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400933 return __rb_page_index(cpu_buffer->reader_page,
934 cpu_buffer->reader_page->read);
935}
936
937static inline struct ring_buffer_event *
938rb_head_event(struct ring_buffer_per_cpu *cpu_buffer)
939{
940 return __rb_page_index(cpu_buffer->head_page,
941 cpu_buffer->head_page->read);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400942}
943
944static inline struct ring_buffer_event *
945rb_iter_head_event(struct ring_buffer_iter *iter)
946{
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400947 return __rb_page_index(iter->head_page, iter->head);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400948}
949
Steven Rostedtbf41a152008-10-04 02:00:59 -0400950static inline unsigned rb_page_write(struct buffer_page *bpage)
951{
952 return local_read(&bpage->write);
953}
954
955static inline unsigned rb_page_commit(struct buffer_page *bpage)
956{
Steven Rostedtabc9b562008-12-02 15:34:06 -0500957 return local_read(&bpage->page->commit);
Steven Rostedtbf41a152008-10-04 02:00:59 -0400958}
959
960/* Size is determined by what has been commited */
961static inline unsigned rb_page_size(struct buffer_page *bpage)
962{
963 return rb_page_commit(bpage);
964}
965
966static inline unsigned
967rb_commit_index(struct ring_buffer_per_cpu *cpu_buffer)
968{
969 return rb_page_commit(cpu_buffer->commit_page);
970}
971
972static inline unsigned rb_head_size(struct ring_buffer_per_cpu *cpu_buffer)
973{
974 return rb_page_commit(cpu_buffer->head_page);
975}
976
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400977/*
978 * When the tail hits the head and the buffer is in overwrite mode,
979 * the head jumps to the next page and all content on the previous
980 * page is discarded. But before doing so, we update the overrun
981 * variable of the buffer.
982 */
983static void rb_update_overflow(struct ring_buffer_per_cpu *cpu_buffer)
984{
985 struct ring_buffer_event *event;
986 unsigned long head;
987
988 for (head = 0; head < rb_head_size(cpu_buffer);
989 head += rb_event_length(event)) {
990
Steven Rostedt6f807ac2008-10-04 02:00:58 -0400991 event = __rb_page_index(cpu_buffer->head_page, head);
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -0500992 if (RB_WARN_ON(cpu_buffer, rb_null_event(event)))
993 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400994 /* Only count data entries */
Lai Jiangshan334d4162009-04-24 11:27:05 +0800995 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -0400996 continue;
997 cpu_buffer->overrun++;
998 cpu_buffer->entries--;
999 }
1000}
1001
1002static inline void rb_inc_page(struct ring_buffer_per_cpu *cpu_buffer,
Steven Rostedt044fa782008-12-02 23:50:03 -05001003 struct buffer_page **bpage)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001004{
Steven Rostedt044fa782008-12-02 23:50:03 -05001005 struct list_head *p = (*bpage)->list.next;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001006
1007 if (p == &cpu_buffer->pages)
1008 p = p->next;
1009
Steven Rostedt044fa782008-12-02 23:50:03 -05001010 *bpage = list_entry(p, struct buffer_page, list);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001011}
1012
Steven Rostedtbf41a152008-10-04 02:00:59 -04001013static inline unsigned
1014rb_event_index(struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001015{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001016 unsigned long addr = (unsigned long)event;
1017
1018 return (addr & ~PAGE_MASK) - (PAGE_SIZE - BUF_PAGE_SIZE);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001019}
1020
Andrew Morton34a148b2009-01-09 12:27:09 -08001021static int
Steven Rostedtbf41a152008-10-04 02:00:59 -04001022rb_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
1023 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001024{
Steven Rostedtbf41a152008-10-04 02:00:59 -04001025 unsigned long addr = (unsigned long)event;
1026 unsigned long index;
1027
1028 index = rb_event_index(event);
1029 addr &= PAGE_MASK;
1030
1031 return cpu_buffer->commit_page->page == (void *)addr &&
1032 rb_commit_index(cpu_buffer) == index;
1033}
1034
Andrew Morton34a148b2009-01-09 12:27:09 -08001035static void
Steven Rostedtbf41a152008-10-04 02:00:59 -04001036rb_set_commit_event(struct ring_buffer_per_cpu *cpu_buffer,
1037 struct ring_buffer_event *event)
1038{
1039 unsigned long addr = (unsigned long)event;
1040 unsigned long index;
1041
1042 index = rb_event_index(event);
1043 addr &= PAGE_MASK;
1044
1045 while (cpu_buffer->commit_page->page != (void *)addr) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001046 if (RB_WARN_ON(cpu_buffer,
1047 cpu_buffer->commit_page == cpu_buffer->tail_page))
1048 return;
Steven Rostedtabc9b562008-12-02 15:34:06 -05001049 cpu_buffer->commit_page->page->commit =
Steven Rostedtbf41a152008-10-04 02:00:59 -04001050 cpu_buffer->commit_page->write;
1051 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001052 cpu_buffer->write_stamp =
1053 cpu_buffer->commit_page->page->time_stamp;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001054 }
1055
1056 /* Now set the commit to the event's index */
Steven Rostedtabc9b562008-12-02 15:34:06 -05001057 local_set(&cpu_buffer->commit_page->page->commit, index);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001058}
1059
Andrew Morton34a148b2009-01-09 12:27:09 -08001060static void
Steven Rostedtbf41a152008-10-04 02:00:59 -04001061rb_set_commit_to_write(struct ring_buffer_per_cpu *cpu_buffer)
1062{
1063 /*
1064 * We only race with interrupts and NMIs on this CPU.
1065 * If we own the commit event, then we can commit
1066 * all others that interrupted us, since the interruptions
1067 * are in stack format (they finish before they come
1068 * back to us). This allows us to do a simple loop to
1069 * assign the commit to the tail.
1070 */
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001071 again:
Steven Rostedtbf41a152008-10-04 02:00:59 -04001072 while (cpu_buffer->commit_page != cpu_buffer->tail_page) {
Steven Rostedtabc9b562008-12-02 15:34:06 -05001073 cpu_buffer->commit_page->page->commit =
Steven Rostedtbf41a152008-10-04 02:00:59 -04001074 cpu_buffer->commit_page->write;
1075 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001076 cpu_buffer->write_stamp =
1077 cpu_buffer->commit_page->page->time_stamp;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001078 /* add barrier to keep gcc from optimizing too much */
1079 barrier();
1080 }
1081 while (rb_commit_index(cpu_buffer) !=
1082 rb_page_write(cpu_buffer->commit_page)) {
Steven Rostedtabc9b562008-12-02 15:34:06 -05001083 cpu_buffer->commit_page->page->commit =
Steven Rostedtbf41a152008-10-04 02:00:59 -04001084 cpu_buffer->commit_page->write;
1085 barrier();
1086 }
Steven Rostedta8ccf1d2008-12-23 11:32:24 -05001087
1088 /* again, keep gcc from optimizing */
1089 barrier();
1090
1091 /*
1092 * If an interrupt came in just after the first while loop
1093 * and pushed the tail page forward, we will be left with
1094 * a dangling commit that will never go forward.
1095 */
1096 if (unlikely(cpu_buffer->commit_page != cpu_buffer->tail_page))
1097 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001098}
1099
Steven Rostedtd7690412008-10-01 00:29:53 -04001100static void rb_reset_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001101{
Steven Rostedtabc9b562008-12-02 15:34:06 -05001102 cpu_buffer->read_stamp = cpu_buffer->reader_page->page->time_stamp;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001103 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04001104}
1105
Andrew Morton34a148b2009-01-09 12:27:09 -08001106static void rb_inc_iter(struct ring_buffer_iter *iter)
Steven Rostedtd7690412008-10-01 00:29:53 -04001107{
1108 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1109
1110 /*
1111 * The iterator could be on the reader page (it starts there).
1112 * But the head could have moved, since the reader was
1113 * found. Check for this case and assign the iterator
1114 * to the head page instead of next.
1115 */
1116 if (iter->head_page == cpu_buffer->reader_page)
1117 iter->head_page = cpu_buffer->head_page;
1118 else
1119 rb_inc_page(cpu_buffer, &iter->head_page);
1120
Steven Rostedtabc9b562008-12-02 15:34:06 -05001121 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001122 iter->head = 0;
1123}
1124
1125/**
1126 * ring_buffer_update_event - update event type and data
1127 * @event: the even to update
1128 * @type: the type of event
1129 * @length: the size of the event field in the ring buffer
1130 *
1131 * Update the type and data fields of the event. The length
1132 * is the actual size that is written to the ring buffer,
1133 * and with this, we can determine what to place into the
1134 * data field.
1135 */
Andrew Morton34a148b2009-01-09 12:27:09 -08001136static void
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001137rb_update_event(struct ring_buffer_event *event,
1138 unsigned type, unsigned length)
1139{
Lai Jiangshan334d4162009-04-24 11:27:05 +08001140 event->type_len = type;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001141
1142 switch (type) {
1143
1144 case RINGBUF_TYPE_PADDING:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001145 case RINGBUF_TYPE_TIME_EXTEND:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001146 case RINGBUF_TYPE_TIME_STAMP:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001147 break;
1148
Lai Jiangshan334d4162009-04-24 11:27:05 +08001149 case 0:
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001150 length -= RB_EVNT_HDR_SIZE;
Lai Jiangshan334d4162009-04-24 11:27:05 +08001151 if (length > RB_MAX_SMALL_DATA)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001152 event->array[0] = length;
Lai Jiangshan334d4162009-04-24 11:27:05 +08001153 else
1154 event->type_len = DIV_ROUND_UP(length, RB_ALIGNMENT);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001155 break;
1156 default:
1157 BUG();
1158 }
1159}
1160
Andrew Morton34a148b2009-01-09 12:27:09 -08001161static unsigned rb_calculate_event_length(unsigned length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001162{
1163 struct ring_buffer_event event; /* Used only for sizeof array */
1164
1165 /* zero length can cause confusions */
1166 if (!length)
1167 length = 1;
1168
1169 if (length > RB_MAX_SMALL_DATA)
1170 length += sizeof(event.array[0]);
1171
1172 length += RB_EVNT_HDR_SIZE;
1173 length = ALIGN(length, RB_ALIGNMENT);
1174
1175 return length;
1176}
1177
1178static struct ring_buffer_event *
1179__rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
1180 unsigned type, unsigned long length, u64 *ts)
1181{
Steven Rostedt98db8df2008-12-23 11:32:25 -05001182 struct buffer_page *tail_page, *head_page, *reader_page, *commit_page;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001183 unsigned long tail, write;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001184 struct ring_buffer *buffer = cpu_buffer->buffer;
1185 struct ring_buffer_event *event;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001186 unsigned long flags;
Steven Rostedt78d904b2009-02-05 18:43:07 -05001187 bool lock_taken = false;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001188
Steven Rostedt98db8df2008-12-23 11:32:25 -05001189 commit_page = cpu_buffer->commit_page;
1190 /* we just need to protect against interrupts */
1191 barrier();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001192 tail_page = cpu_buffer->tail_page;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001193 write = local_add_return(length, &tail_page->write);
1194 tail = write - length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001195
Steven Rostedtbf41a152008-10-04 02:00:59 -04001196 /* See if we shot pass the end of this buffer page */
1197 if (write > BUF_PAGE_SIZE) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001198 struct buffer_page *next_page = tail_page;
1199
Steven Rostedt3e03fb72008-11-06 00:09:43 -05001200 local_irq_save(flags);
Steven Rostedt78d904b2009-02-05 18:43:07 -05001201 /*
Steven Rostedta81bd802009-02-06 01:45:16 -05001202 * Since the write to the buffer is still not
1203 * fully lockless, we must be careful with NMIs.
1204 * The locks in the writers are taken when a write
1205 * crosses to a new page. The locks protect against
1206 * races with the readers (this will soon be fixed
1207 * with a lockless solution).
1208 *
1209 * Because we can not protect against NMIs, and we
1210 * want to keep traces reentrant, we need to manage
1211 * what happens when we are in an NMI.
1212 *
Steven Rostedt78d904b2009-02-05 18:43:07 -05001213 * NMIs can happen after we take the lock.
1214 * If we are in an NMI, only take the lock
1215 * if it is not already taken. Otherwise
1216 * simply fail.
1217 */
Steven Rostedta81bd802009-02-06 01:45:16 -05001218 if (unlikely(in_nmi())) {
Steven Rostedt78d904b2009-02-05 18:43:07 -05001219 if (!__raw_spin_trylock(&cpu_buffer->lock))
Steven Rostedt45141d42009-02-12 13:19:48 -05001220 goto out_reset;
Steven Rostedt78d904b2009-02-05 18:43:07 -05001221 } else
1222 __raw_spin_lock(&cpu_buffer->lock);
1223
1224 lock_taken = true;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001225
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001226 rb_inc_page(cpu_buffer, &next_page);
1227
Steven Rostedtd7690412008-10-01 00:29:53 -04001228 head_page = cpu_buffer->head_page;
1229 reader_page = cpu_buffer->reader_page;
1230
1231 /* we grabbed the lock before incrementing */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001232 if (RB_WARN_ON(cpu_buffer, next_page == reader_page))
Steven Rostedt45141d42009-02-12 13:19:48 -05001233 goto out_reset;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001234
1235 /*
1236 * If for some reason, we had an interrupt storm that made
1237 * it all the way around the buffer, bail, and warn
1238 * about it.
1239 */
Steven Rostedt98db8df2008-12-23 11:32:25 -05001240 if (unlikely(next_page == commit_page)) {
Steven Rostedt35542282009-04-21 09:41:26 -04001241 /* This can easily happen on small ring buffers */
1242 WARN_ON_ONCE(buffer->pages > 2);
Steven Rostedt45141d42009-02-12 13:19:48 -05001243 goto out_reset;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001244 }
Steven Rostedtd7690412008-10-01 00:29:53 -04001245
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001246 if (next_page == head_page) {
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08001247 if (!(buffer->flags & RB_FL_OVERWRITE))
Steven Rostedt45141d42009-02-12 13:19:48 -05001248 goto out_reset;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001249
Steven Rostedtbf41a152008-10-04 02:00:59 -04001250 /* tail_page has not moved yet? */
1251 if (tail_page == cpu_buffer->tail_page) {
1252 /* count overflows */
1253 rb_update_overflow(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001254
Steven Rostedtbf41a152008-10-04 02:00:59 -04001255 rb_inc_page(cpu_buffer, &head_page);
1256 cpu_buffer->head_page = head_page;
1257 cpu_buffer->head_page->read = 0;
1258 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001259 }
1260
Steven Rostedtbf41a152008-10-04 02:00:59 -04001261 /*
1262 * If the tail page is still the same as what we think
1263 * it is, then it is up to us to update the tail
1264 * pointer.
1265 */
1266 if (tail_page == cpu_buffer->tail_page) {
1267 local_set(&next_page->write, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001268 local_set(&next_page->page->commit, 0);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001269 cpu_buffer->tail_page = next_page;
1270
1271 /* reread the time stamp */
Steven Rostedt37886f62009-03-17 17:22:06 -04001272 *ts = ring_buffer_time_stamp(buffer, cpu_buffer->cpu);
Steven Rostedtabc9b562008-12-02 15:34:06 -05001273 cpu_buffer->tail_page->page->time_stamp = *ts;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001274 }
1275
1276 /*
1277 * The actual tail page has moved forward.
1278 */
1279 if (tail < BUF_PAGE_SIZE) {
1280 /* Mark the rest of the page with padding */
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001281 event = __rb_page_index(tail_page, tail);
Tom Zanussi2d622712009-03-22 03:30:49 -05001282 rb_event_set_padding(event);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001283 }
1284
Steven Rostedtbf41a152008-10-04 02:00:59 -04001285 if (tail <= BUF_PAGE_SIZE)
1286 /* Set the write back to the previous setting */
1287 local_set(&tail_page->write, tail);
1288
1289 /*
1290 * If this was a commit entry that failed,
1291 * increment that too
1292 */
1293 if (tail_page == cpu_buffer->commit_page &&
1294 tail == rb_commit_index(cpu_buffer)) {
1295 rb_set_commit_to_write(cpu_buffer);
1296 }
1297
Steven Rostedt3e03fb72008-11-06 00:09:43 -05001298 __raw_spin_unlock(&cpu_buffer->lock);
1299 local_irq_restore(flags);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001300
1301 /* fail and let the caller try again */
1302 return ERR_PTR(-EAGAIN);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001303 }
1304
Steven Rostedtbf41a152008-10-04 02:00:59 -04001305 /* We reserved something on the buffer */
1306
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001307 if (RB_WARN_ON(cpu_buffer, write > BUF_PAGE_SIZE))
1308 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001309
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001310 event = __rb_page_index(tail_page, tail);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001311 rb_update_event(event, type, length);
1312
Steven Rostedtbf41a152008-10-04 02:00:59 -04001313 /*
1314 * If this is a commit and the tail is zero, then update
1315 * this page's time stamp.
1316 */
1317 if (!tail && rb_is_commit(cpu_buffer, event))
Steven Rostedtabc9b562008-12-02 15:34:06 -05001318 cpu_buffer->commit_page->page->time_stamp = *ts;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001319
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001320 return event;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001321
Steven Rostedt45141d42009-02-12 13:19:48 -05001322 out_reset:
Lai Jiangshan6f3b3442009-01-12 11:06:18 +08001323 /* reset write */
1324 if (tail <= BUF_PAGE_SIZE)
1325 local_set(&tail_page->write, tail);
1326
Steven Rostedt78d904b2009-02-05 18:43:07 -05001327 if (likely(lock_taken))
1328 __raw_spin_unlock(&cpu_buffer->lock);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05001329 local_irq_restore(flags);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001330 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001331}
1332
1333static int
1334rb_add_time_stamp(struct ring_buffer_per_cpu *cpu_buffer,
1335 u64 *ts, u64 *delta)
1336{
1337 struct ring_buffer_event *event;
1338 static int once;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001339 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001340
1341 if (unlikely(*delta > (1ULL << 59) && !once++)) {
1342 printk(KERN_WARNING "Delta way too big! %llu"
1343 " ts=%llu write stamp = %llu\n",
Stephen Rothwelle2862c92008-10-27 17:43:28 +11001344 (unsigned long long)*delta,
1345 (unsigned long long)*ts,
1346 (unsigned long long)cpu_buffer->write_stamp);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001347 WARN_ON(1);
1348 }
1349
1350 /*
1351 * The delta is too big, we to add a
1352 * new timestamp.
1353 */
1354 event = __rb_reserve_next(cpu_buffer,
1355 RINGBUF_TYPE_TIME_EXTEND,
1356 RB_LEN_TIME_EXTEND,
1357 ts);
1358 if (!event)
Steven Rostedtbf41a152008-10-04 02:00:59 -04001359 return -EBUSY;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001360
Steven Rostedtbf41a152008-10-04 02:00:59 -04001361 if (PTR_ERR(event) == -EAGAIN)
1362 return -EAGAIN;
1363
1364 /* Only a commited time event can update the write stamp */
1365 if (rb_is_commit(cpu_buffer, event)) {
1366 /*
1367 * If this is the first on the page, then we need to
1368 * update the page itself, and just put in a zero.
1369 */
1370 if (rb_event_index(event)) {
1371 event->time_delta = *delta & TS_MASK;
1372 event->array[0] = *delta >> TS_SHIFT;
1373 } else {
Steven Rostedtabc9b562008-12-02 15:34:06 -05001374 cpu_buffer->commit_page->page->time_stamp = *ts;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001375 event->time_delta = 0;
1376 event->array[0] = 0;
1377 }
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001378 cpu_buffer->write_stamp = *ts;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001379 /* let the caller know this was the commit */
1380 ret = 1;
1381 } else {
1382 /* Darn, this is just wasted space */
1383 event->time_delta = 0;
1384 event->array[0] = 0;
1385 ret = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001386 }
1387
Steven Rostedtbf41a152008-10-04 02:00:59 -04001388 *delta = 0;
1389
1390 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001391}
1392
1393static struct ring_buffer_event *
1394rb_reserve_next_event(struct ring_buffer_per_cpu *cpu_buffer,
1395 unsigned type, unsigned long length)
1396{
1397 struct ring_buffer_event *event;
1398 u64 ts, delta;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001399 int commit = 0;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04001400 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001401
Steven Rostedtbf41a152008-10-04 02:00:59 -04001402 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04001403 /*
1404 * We allow for interrupts to reenter here and do a trace.
1405 * If one does, it will cause this original code to loop
1406 * back here. Even with heavy interrupts happening, this
1407 * should only happen a few times in a row. If this happens
1408 * 1000 times in a row, there must be either an interrupt
1409 * storm or we have something buggy.
1410 * Bail!
1411 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05001412 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04001413 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04001414
Steven Rostedt37886f62009-03-17 17:22:06 -04001415 ts = ring_buffer_time_stamp(cpu_buffer->buffer, cpu_buffer->cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001416
Steven Rostedtbf41a152008-10-04 02:00:59 -04001417 /*
1418 * Only the first commit can update the timestamp.
1419 * Yes there is a race here. If an interrupt comes in
1420 * just after the conditional and it traces too, then it
1421 * will also check the deltas. More than one timestamp may
1422 * also be made. But only the entry that did the actual
1423 * commit will be something other than zero.
1424 */
1425 if (cpu_buffer->tail_page == cpu_buffer->commit_page &&
1426 rb_page_write(cpu_buffer->tail_page) ==
1427 rb_commit_index(cpu_buffer)) {
1428
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001429 delta = ts - cpu_buffer->write_stamp;
1430
Steven Rostedtbf41a152008-10-04 02:00:59 -04001431 /* make sure this delta is calculated here */
1432 barrier();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001433
Steven Rostedtbf41a152008-10-04 02:00:59 -04001434 /* Did the write stamp get updated already? */
1435 if (unlikely(ts < cpu_buffer->write_stamp))
Steven Rostedt4143c5c2008-11-10 21:46:01 -05001436 delta = 0;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001437
1438 if (test_time_stamp(delta)) {
1439
1440 commit = rb_add_time_stamp(cpu_buffer, &ts, &delta);
1441
1442 if (commit == -EBUSY)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001443 return NULL;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001444
1445 if (commit == -EAGAIN)
1446 goto again;
1447
1448 RB_WARN_ON(cpu_buffer, commit < 0);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001449 }
Steven Rostedtbf41a152008-10-04 02:00:59 -04001450 } else
1451 /* Non commits have zero deltas */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001452 delta = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001453
1454 event = __rb_reserve_next(cpu_buffer, type, length, &ts);
Steven Rostedtbf41a152008-10-04 02:00:59 -04001455 if (PTR_ERR(event) == -EAGAIN)
1456 goto again;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001457
Steven Rostedtbf41a152008-10-04 02:00:59 -04001458 if (!event) {
1459 if (unlikely(commit))
1460 /*
1461 * Ouch! We needed a timestamp and it was commited. But
1462 * we didn't get our event reserved.
1463 */
1464 rb_set_commit_to_write(cpu_buffer);
1465 return NULL;
1466 }
1467
1468 /*
1469 * If the timestamp was commited, make the commit our entry
1470 * now so that we will update it when needed.
1471 */
1472 if (commit)
1473 rb_set_commit_event(cpu_buffer, event);
1474 else if (!rb_is_commit(cpu_buffer, event))
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001475 delta = 0;
1476
1477 event->time_delta = delta;
1478
1479 return event;
1480}
1481
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001482#define TRACE_RECURSIVE_DEPTH 16
Steven Rostedt261842b2009-04-16 21:41:52 -04001483
1484static int trace_recursive_lock(void)
1485{
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001486 current->trace_recursion++;
Steven Rostedt261842b2009-04-16 21:41:52 -04001487
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001488 if (likely(current->trace_recursion < TRACE_RECURSIVE_DEPTH))
1489 return 0;
Steven Rostedt261842b2009-04-16 21:41:52 -04001490
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001491 /* Disable all tracing before we do anything else */
1492 tracing_off_permanent();
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02001493
Steven Rostedt7d7d2b82009-04-27 12:37:49 -04001494 printk_once(KERN_WARNING "Tracing recursion: depth[%ld]:"
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001495 "HC[%lu]:SC[%lu]:NMI[%lu]\n",
1496 current->trace_recursion,
1497 hardirq_count() >> HARDIRQ_SHIFT,
1498 softirq_count() >> SOFTIRQ_SHIFT,
1499 in_nmi());
Frederic Weisbeckere057a5e2009-04-19 23:38:12 +02001500
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001501 WARN_ON_ONCE(1);
1502 return -1;
Steven Rostedt261842b2009-04-16 21:41:52 -04001503}
1504
1505static void trace_recursive_unlock(void)
1506{
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001507 WARN_ON_ONCE(!current->trace_recursion);
Steven Rostedt261842b2009-04-16 21:41:52 -04001508
Steven Rostedtaa18efb2009-04-20 16:16:11 -04001509 current->trace_recursion--;
Steven Rostedt261842b2009-04-16 21:41:52 -04001510}
1511
Steven Rostedtbf41a152008-10-04 02:00:59 -04001512static DEFINE_PER_CPU(int, rb_need_resched);
1513
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001514/**
1515 * ring_buffer_lock_reserve - reserve a part of the buffer
1516 * @buffer: the ring buffer to reserve from
1517 * @length: the length of the data to reserve (excluding event header)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001518 *
1519 * Returns a reseverd event on the ring buffer to copy directly to.
1520 * The user of this interface will need to get the body to write into
1521 * and can use the ring_buffer_event_data() interface.
1522 *
1523 * The length is the length of the data needed, not the event length
1524 * which also includes the event header.
1525 *
1526 * Must be paired with ring_buffer_unlock_commit, unless NULL is returned.
1527 * If NULL is returned, then nothing has been allocated or locked.
1528 */
1529struct ring_buffer_event *
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02001530ring_buffer_lock_reserve(struct ring_buffer *buffer, unsigned long length)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001531{
1532 struct ring_buffer_per_cpu *cpu_buffer;
1533 struct ring_buffer_event *event;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001534 int cpu, resched;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001535
Steven Rostedt033601a2008-11-21 12:41:55 -05001536 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05001537 return NULL;
1538
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001539 if (atomic_read(&buffer->record_disabled))
1540 return NULL;
1541
Steven Rostedtbf41a152008-10-04 02:00:59 -04001542 /* If we are tracing schedule, we don't want to recurse */
Steven Rostedt182e9f52008-11-03 23:15:56 -05001543 resched = ftrace_preempt_disable();
Steven Rostedtbf41a152008-10-04 02:00:59 -04001544
Steven Rostedt261842b2009-04-16 21:41:52 -04001545 if (trace_recursive_lock())
1546 goto out_nocheck;
1547
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001548 cpu = raw_smp_processor_id();
1549
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301550 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04001551 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001552
1553 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001554
1555 if (atomic_read(&cpu_buffer->record_disabled))
Steven Rostedtd7690412008-10-01 00:29:53 -04001556 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001557
1558 length = rb_calculate_event_length(length);
1559 if (length > BUF_PAGE_SIZE)
Steven Rostedtbf41a152008-10-04 02:00:59 -04001560 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001561
Lai Jiangshan334d4162009-04-24 11:27:05 +08001562 event = rb_reserve_next_event(cpu_buffer, 0, length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001563 if (!event)
Steven Rostedtd7690412008-10-01 00:29:53 -04001564 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001565
Steven Rostedtbf41a152008-10-04 02:00:59 -04001566 /*
1567 * Need to store resched state on this cpu.
1568 * Only the first needs to.
1569 */
1570
1571 if (preempt_count() == 1)
1572 per_cpu(rb_need_resched, cpu) = resched;
1573
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001574 return event;
1575
Steven Rostedtd7690412008-10-01 00:29:53 -04001576 out:
Steven Rostedt261842b2009-04-16 21:41:52 -04001577 trace_recursive_unlock();
1578
1579 out_nocheck:
Steven Rostedt182e9f52008-11-03 23:15:56 -05001580 ftrace_preempt_enable(resched);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001581 return NULL;
1582}
Robert Richterc4f50182008-12-11 16:49:22 +01001583EXPORT_SYMBOL_GPL(ring_buffer_lock_reserve);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001584
1585static void rb_commit(struct ring_buffer_per_cpu *cpu_buffer,
1586 struct ring_buffer_event *event)
1587{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001588 cpu_buffer->entries++;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001589
1590 /* Only process further if we own the commit */
1591 if (!rb_is_commit(cpu_buffer, event))
1592 return;
1593
1594 cpu_buffer->write_stamp += event->time_delta;
1595
1596 rb_set_commit_to_write(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001597}
1598
1599/**
1600 * ring_buffer_unlock_commit - commit a reserved
1601 * @buffer: The buffer to commit to
1602 * @event: The event pointer to commit.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001603 *
1604 * This commits the data to the ring buffer, and releases any locks held.
1605 *
1606 * Must be paired with ring_buffer_lock_reserve.
1607 */
1608int ring_buffer_unlock_commit(struct ring_buffer *buffer,
Arnaldo Carvalho de Melo0a987752009-02-05 16:12:56 -02001609 struct ring_buffer_event *event)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001610{
1611 struct ring_buffer_per_cpu *cpu_buffer;
1612 int cpu = raw_smp_processor_id();
1613
1614 cpu_buffer = buffer->buffers[cpu];
1615
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001616 rb_commit(cpu_buffer, event);
1617
Steven Rostedt261842b2009-04-16 21:41:52 -04001618 trace_recursive_unlock();
1619
Steven Rostedtbf41a152008-10-04 02:00:59 -04001620 /*
1621 * Only the last preempt count needs to restore preemption.
1622 */
Steven Rostedt182e9f52008-11-03 23:15:56 -05001623 if (preempt_count() == 1)
1624 ftrace_preempt_enable(per_cpu(rb_need_resched, cpu));
1625 else
Steven Rostedtbf41a152008-10-04 02:00:59 -04001626 preempt_enable_no_resched_notrace();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001627
1628 return 0;
1629}
Robert Richterc4f50182008-12-11 16:49:22 +01001630EXPORT_SYMBOL_GPL(ring_buffer_unlock_commit);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001631
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02001632static inline void rb_event_discard(struct ring_buffer_event *event)
1633{
Lai Jiangshan334d4162009-04-24 11:27:05 +08001634 /* array[0] holds the actual length for the discarded event */
1635 event->array[0] = rb_event_data_length(event) - RB_EVNT_HDR_SIZE;
1636 event->type_len = RINGBUF_TYPE_PADDING;
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02001637 /* time delta must be non zero */
1638 if (!event->time_delta)
1639 event->time_delta = 1;
1640}
1641
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001642/**
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04001643 * ring_buffer_event_discard - discard any event in the ring buffer
1644 * @event: the event to discard
1645 *
1646 * Sometimes a event that is in the ring buffer needs to be ignored.
1647 * This function lets the user discard an event in the ring buffer
1648 * and then that event will not be read later.
1649 *
1650 * Note, it is up to the user to be careful with this, and protect
1651 * against races. If the user discards an event that has been consumed
1652 * it is possible that it could corrupt the ring buffer.
1653 */
1654void ring_buffer_event_discard(struct ring_buffer_event *event)
1655{
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02001656 rb_event_discard(event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04001657}
1658EXPORT_SYMBOL_GPL(ring_buffer_event_discard);
1659
1660/**
1661 * ring_buffer_commit_discard - discard an event that has not been committed
1662 * @buffer: the ring buffer
1663 * @event: non committed event to discard
1664 *
1665 * This is similar to ring_buffer_event_discard but must only be
1666 * performed on an event that has not been committed yet. The difference
1667 * is that this will also try to free the event from the ring buffer
1668 * if another event has not been added behind it.
1669 *
1670 * If another event has been added behind it, it will set the event
1671 * up as discarded, and perform the commit.
1672 *
1673 * If this function is called, do not call ring_buffer_unlock_commit on
1674 * the event.
1675 */
1676void ring_buffer_discard_commit(struct ring_buffer *buffer,
1677 struct ring_buffer_event *event)
1678{
1679 struct ring_buffer_per_cpu *cpu_buffer;
1680 unsigned long new_index, old_index;
1681 struct buffer_page *bpage;
1682 unsigned long index;
1683 unsigned long addr;
1684 int cpu;
1685
1686 /* The event is discarded regardless */
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02001687 rb_event_discard(event);
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04001688
1689 /*
1690 * This must only be called if the event has not been
1691 * committed yet. Thus we can assume that preemption
1692 * is still disabled.
1693 */
1694 RB_WARN_ON(buffer, !preempt_count());
1695
1696 cpu = smp_processor_id();
1697 cpu_buffer = buffer->buffers[cpu];
1698
1699 new_index = rb_event_index(event);
1700 old_index = new_index + rb_event_length(event);
1701 addr = (unsigned long)event;
1702 addr &= PAGE_MASK;
1703
1704 bpage = cpu_buffer->tail_page;
1705
1706 if (bpage == (void *)addr && rb_page_write(bpage) == old_index) {
1707 /*
1708 * This is on the tail page. It is possible that
1709 * a write could come in and move the tail page
1710 * and write to the next page. That is fine
1711 * because we just shorten what is on this page.
1712 */
1713 index = local_cmpxchg(&bpage->write, old_index, new_index);
1714 if (index == old_index)
1715 goto out;
1716 }
1717
1718 /*
1719 * The commit is still visible by the reader, so we
1720 * must increment entries.
1721 */
1722 cpu_buffer->entries++;
1723 out:
1724 /*
1725 * If a write came in and pushed the tail page
1726 * we still need to update the commit pointer
1727 * if we were the commit.
1728 */
1729 if (rb_is_commit(cpu_buffer, event))
1730 rb_set_commit_to_write(cpu_buffer);
1731
Frederic Weisbeckerf3b9aae2009-04-19 23:39:33 +02001732 trace_recursive_unlock();
1733
Steven Rostedtfa1b47d2009-04-02 00:09:41 -04001734 /*
1735 * Only the last preempt count needs to restore preemption.
1736 */
1737 if (preempt_count() == 1)
1738 ftrace_preempt_enable(per_cpu(rb_need_resched, cpu));
1739 else
1740 preempt_enable_no_resched_notrace();
1741
1742}
1743EXPORT_SYMBOL_GPL(ring_buffer_discard_commit);
1744
1745/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001746 * ring_buffer_write - write data to the buffer without reserving
1747 * @buffer: The ring buffer to write to.
1748 * @length: The length of the data being written (excluding the event header)
1749 * @data: The data to write to the buffer.
1750 *
1751 * This is like ring_buffer_lock_reserve and ring_buffer_unlock_commit as
1752 * one function. If you already have the data to write to the buffer, it
1753 * may be easier to simply call this function.
1754 *
1755 * Note, like ring_buffer_lock_reserve, the length is the length of the data
1756 * and not the length of the event which would hold the header.
1757 */
1758int ring_buffer_write(struct ring_buffer *buffer,
1759 unsigned long length,
1760 void *data)
1761{
1762 struct ring_buffer_per_cpu *cpu_buffer;
1763 struct ring_buffer_event *event;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001764 unsigned long event_length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001765 void *body;
1766 int ret = -EBUSY;
Steven Rostedtbf41a152008-10-04 02:00:59 -04001767 int cpu, resched;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001768
Steven Rostedt033601a2008-11-21 12:41:55 -05001769 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedta3583242008-11-11 15:01:42 -05001770 return -EBUSY;
1771
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001772 if (atomic_read(&buffer->record_disabled))
1773 return -EBUSY;
1774
Steven Rostedt182e9f52008-11-03 23:15:56 -05001775 resched = ftrace_preempt_disable();
Steven Rostedtbf41a152008-10-04 02:00:59 -04001776
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001777 cpu = raw_smp_processor_id();
1778
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301779 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedtd7690412008-10-01 00:29:53 -04001780 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001781
1782 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001783
1784 if (atomic_read(&cpu_buffer->record_disabled))
1785 goto out;
1786
1787 event_length = rb_calculate_event_length(length);
Lai Jiangshan334d4162009-04-24 11:27:05 +08001788 event = rb_reserve_next_event(cpu_buffer, 0, event_length);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001789 if (!event)
1790 goto out;
1791
1792 body = rb_event_data(event);
1793
1794 memcpy(body, data, length);
1795
1796 rb_commit(cpu_buffer, event);
1797
1798 ret = 0;
1799 out:
Steven Rostedt182e9f52008-11-03 23:15:56 -05001800 ftrace_preempt_enable(resched);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001801
1802 return ret;
1803}
Robert Richterc4f50182008-12-11 16:49:22 +01001804EXPORT_SYMBOL_GPL(ring_buffer_write);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001805
Andrew Morton34a148b2009-01-09 12:27:09 -08001806static int rb_per_cpu_empty(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedtbf41a152008-10-04 02:00:59 -04001807{
1808 struct buffer_page *reader = cpu_buffer->reader_page;
1809 struct buffer_page *head = cpu_buffer->head_page;
1810 struct buffer_page *commit = cpu_buffer->commit_page;
1811
1812 return reader->read == rb_page_commit(reader) &&
1813 (commit == reader ||
1814 (commit == head &&
1815 head->read == rb_page_commit(commit)));
1816}
1817
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001818/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001819 * ring_buffer_record_disable - stop all writes into the buffer
1820 * @buffer: The ring buffer to stop writes to.
1821 *
1822 * This prevents all writes to the buffer. Any attempt to write
1823 * to the buffer after this will fail and return NULL.
1824 *
1825 * The caller should call synchronize_sched() after this.
1826 */
1827void ring_buffer_record_disable(struct ring_buffer *buffer)
1828{
1829 atomic_inc(&buffer->record_disabled);
1830}
Robert Richterc4f50182008-12-11 16:49:22 +01001831EXPORT_SYMBOL_GPL(ring_buffer_record_disable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001832
1833/**
1834 * ring_buffer_record_enable - enable writes to the buffer
1835 * @buffer: The ring buffer to enable writes
1836 *
1837 * Note, multiple disables will need the same number of enables
1838 * to truely enable the writing (much like preempt_disable).
1839 */
1840void ring_buffer_record_enable(struct ring_buffer *buffer)
1841{
1842 atomic_dec(&buffer->record_disabled);
1843}
Robert Richterc4f50182008-12-11 16:49:22 +01001844EXPORT_SYMBOL_GPL(ring_buffer_record_enable);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001845
1846/**
1847 * ring_buffer_record_disable_cpu - stop all writes into the cpu_buffer
1848 * @buffer: The ring buffer to stop writes to.
1849 * @cpu: The CPU buffer to stop
1850 *
1851 * This prevents all writes to the buffer. Any attempt to write
1852 * to the buffer after this will fail and return NULL.
1853 *
1854 * The caller should call synchronize_sched() after this.
1855 */
1856void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu)
1857{
1858 struct ring_buffer_per_cpu *cpu_buffer;
1859
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301860 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04001861 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001862
1863 cpu_buffer = buffer->buffers[cpu];
1864 atomic_inc(&cpu_buffer->record_disabled);
1865}
Robert Richterc4f50182008-12-11 16:49:22 +01001866EXPORT_SYMBOL_GPL(ring_buffer_record_disable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001867
1868/**
1869 * ring_buffer_record_enable_cpu - enable writes to the buffer
1870 * @buffer: The ring buffer to enable writes
1871 * @cpu: The CPU to enable.
1872 *
1873 * Note, multiple disables will need the same number of enables
1874 * to truely enable the writing (much like preempt_disable).
1875 */
1876void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu)
1877{
1878 struct ring_buffer_per_cpu *cpu_buffer;
1879
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301880 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04001881 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001882
1883 cpu_buffer = buffer->buffers[cpu];
1884 atomic_dec(&cpu_buffer->record_disabled);
1885}
Robert Richterc4f50182008-12-11 16:49:22 +01001886EXPORT_SYMBOL_GPL(ring_buffer_record_enable_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001887
1888/**
1889 * ring_buffer_entries_cpu - get the number of entries in a cpu buffer
1890 * @buffer: The ring buffer
1891 * @cpu: The per CPU buffer to get the entries from.
1892 */
1893unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
1894{
1895 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04001896 unsigned long ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001897
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301898 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04001899 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001900
1901 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04001902 ret = cpu_buffer->entries;
Steven Rostedt554f7862009-03-11 22:00:13 -04001903
1904 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001905}
Robert Richterc4f50182008-12-11 16:49:22 +01001906EXPORT_SYMBOL_GPL(ring_buffer_entries_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001907
1908/**
1909 * ring_buffer_overrun_cpu - get the number of overruns in a cpu_buffer
1910 * @buffer: The ring buffer
1911 * @cpu: The per CPU buffer to get the number of overruns from
1912 */
1913unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
1914{
1915 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04001916 unsigned long ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001917
Rusty Russell9e01c1b2009-01-01 10:12:22 +10301918 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04001919 return 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001920
1921 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04001922 ret = cpu_buffer->overrun;
Steven Rostedt554f7862009-03-11 22:00:13 -04001923
1924 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001925}
Robert Richterc4f50182008-12-11 16:49:22 +01001926EXPORT_SYMBOL_GPL(ring_buffer_overrun_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001927
1928/**
1929 * ring_buffer_entries - get the number of entries in a buffer
1930 * @buffer: The ring buffer
1931 *
1932 * Returns the total number of entries in the ring buffer
1933 * (all CPU entries)
1934 */
1935unsigned long ring_buffer_entries(struct ring_buffer *buffer)
1936{
1937 struct ring_buffer_per_cpu *cpu_buffer;
1938 unsigned long entries = 0;
1939 int cpu;
1940
1941 /* if you care about this being correct, lock the buffer */
1942 for_each_buffer_cpu(buffer, cpu) {
1943 cpu_buffer = buffer->buffers[cpu];
1944 entries += cpu_buffer->entries;
1945 }
1946
1947 return entries;
1948}
Robert Richterc4f50182008-12-11 16:49:22 +01001949EXPORT_SYMBOL_GPL(ring_buffer_entries);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001950
1951/**
1952 * ring_buffer_overrun_cpu - get the number of overruns in buffer
1953 * @buffer: The ring buffer
1954 *
1955 * Returns the total number of overruns in the ring buffer
1956 * (all CPU entries)
1957 */
1958unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
1959{
1960 struct ring_buffer_per_cpu *cpu_buffer;
1961 unsigned long overruns = 0;
1962 int cpu;
1963
1964 /* if you care about this being correct, lock the buffer */
1965 for_each_buffer_cpu(buffer, cpu) {
1966 cpu_buffer = buffer->buffers[cpu];
1967 overruns += cpu_buffer->overrun;
1968 }
1969
1970 return overruns;
1971}
Robert Richterc4f50182008-12-11 16:49:22 +01001972EXPORT_SYMBOL_GPL(ring_buffer_overruns);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001973
Steven Rostedt642edba2008-11-12 00:01:26 -05001974static void rb_iter_reset(struct ring_buffer_iter *iter)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04001975{
1976 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1977
Steven Rostedtd7690412008-10-01 00:29:53 -04001978 /* Iterator usage is expected to have record disabled */
1979 if (list_empty(&cpu_buffer->reader_page->list)) {
1980 iter->head_page = cpu_buffer->head_page;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001981 iter->head = cpu_buffer->head_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04001982 } else {
1983 iter->head_page = cpu_buffer->reader_page;
Steven Rostedt6f807ac2008-10-04 02:00:58 -04001984 iter->head = cpu_buffer->reader_page->read;
Steven Rostedtd7690412008-10-01 00:29:53 -04001985 }
1986 if (iter->head)
1987 iter->read_stamp = cpu_buffer->read_stamp;
1988 else
Steven Rostedtabc9b562008-12-02 15:34:06 -05001989 iter->read_stamp = iter->head_page->page->time_stamp;
Steven Rostedt642edba2008-11-12 00:01:26 -05001990}
Steven Rostedtf83c9d02008-11-11 18:47:44 +01001991
Steven Rostedt642edba2008-11-12 00:01:26 -05001992/**
1993 * ring_buffer_iter_reset - reset an iterator
1994 * @iter: The iterator to reset
1995 *
1996 * Resets the iterator, so that it will start from the beginning
1997 * again.
1998 */
1999void ring_buffer_iter_reset(struct ring_buffer_iter *iter)
2000{
Steven Rostedt554f7862009-03-11 22:00:13 -04002001 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt642edba2008-11-12 00:01:26 -05002002 unsigned long flags;
2003
Steven Rostedt554f7862009-03-11 22:00:13 -04002004 if (!iter)
2005 return;
2006
2007 cpu_buffer = iter->cpu_buffer;
2008
Steven Rostedt642edba2008-11-12 00:01:26 -05002009 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2010 rb_iter_reset(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002011 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002012}
Robert Richterc4f50182008-12-11 16:49:22 +01002013EXPORT_SYMBOL_GPL(ring_buffer_iter_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002014
2015/**
2016 * ring_buffer_iter_empty - check if an iterator has no more to read
2017 * @iter: The iterator to check
2018 */
2019int ring_buffer_iter_empty(struct ring_buffer_iter *iter)
2020{
2021 struct ring_buffer_per_cpu *cpu_buffer;
2022
2023 cpu_buffer = iter->cpu_buffer;
2024
Steven Rostedtbf41a152008-10-04 02:00:59 -04002025 return iter->head_page == cpu_buffer->commit_page &&
2026 iter->head == rb_commit_index(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002027}
Robert Richterc4f50182008-12-11 16:49:22 +01002028EXPORT_SYMBOL_GPL(ring_buffer_iter_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002029
2030static void
2031rb_update_read_stamp(struct ring_buffer_per_cpu *cpu_buffer,
2032 struct ring_buffer_event *event)
2033{
2034 u64 delta;
2035
Lai Jiangshan334d4162009-04-24 11:27:05 +08002036 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002037 case RINGBUF_TYPE_PADDING:
2038 return;
2039
2040 case RINGBUF_TYPE_TIME_EXTEND:
2041 delta = event->array[0];
2042 delta <<= TS_SHIFT;
2043 delta += event->time_delta;
2044 cpu_buffer->read_stamp += delta;
2045 return;
2046
2047 case RINGBUF_TYPE_TIME_STAMP:
2048 /* FIXME: not implemented */
2049 return;
2050
2051 case RINGBUF_TYPE_DATA:
2052 cpu_buffer->read_stamp += event->time_delta;
2053 return;
2054
2055 default:
2056 BUG();
2057 }
2058 return;
2059}
2060
2061static void
2062rb_update_iter_read_stamp(struct ring_buffer_iter *iter,
2063 struct ring_buffer_event *event)
2064{
2065 u64 delta;
2066
Lai Jiangshan334d4162009-04-24 11:27:05 +08002067 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002068 case RINGBUF_TYPE_PADDING:
2069 return;
2070
2071 case RINGBUF_TYPE_TIME_EXTEND:
2072 delta = event->array[0];
2073 delta <<= TS_SHIFT;
2074 delta += event->time_delta;
2075 iter->read_stamp += delta;
2076 return;
2077
2078 case RINGBUF_TYPE_TIME_STAMP:
2079 /* FIXME: not implemented */
2080 return;
2081
2082 case RINGBUF_TYPE_DATA:
2083 iter->read_stamp += event->time_delta;
2084 return;
2085
2086 default:
2087 BUG();
2088 }
2089 return;
2090}
2091
Steven Rostedtd7690412008-10-01 00:29:53 -04002092static struct buffer_page *
2093rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002094{
Steven Rostedtd7690412008-10-01 00:29:53 -04002095 struct buffer_page *reader = NULL;
2096 unsigned long flags;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002097 int nr_loops = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04002098
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002099 local_irq_save(flags);
2100 __raw_spin_lock(&cpu_buffer->lock);
Steven Rostedtd7690412008-10-01 00:29:53 -04002101
2102 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002103 /*
2104 * This should normally only loop twice. But because the
2105 * start of the reader inserts an empty page, it causes
2106 * a case where we will loop three times. There should be no
2107 * reason to loop four times (that I know of).
2108 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002109 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002110 reader = NULL;
2111 goto out;
2112 }
2113
Steven Rostedtd7690412008-10-01 00:29:53 -04002114 reader = cpu_buffer->reader_page;
2115
2116 /* If there's more to read, return this page */
Steven Rostedtbf41a152008-10-04 02:00:59 -04002117 if (cpu_buffer->reader_page->read < rb_page_size(reader))
Steven Rostedtd7690412008-10-01 00:29:53 -04002118 goto out;
2119
2120 /* Never should we have an index greater than the size */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002121 if (RB_WARN_ON(cpu_buffer,
2122 cpu_buffer->reader_page->read > rb_page_size(reader)))
2123 goto out;
Steven Rostedtd7690412008-10-01 00:29:53 -04002124
2125 /* check if we caught up to the tail */
2126 reader = NULL;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002127 if (cpu_buffer->commit_page == cpu_buffer->reader_page)
Steven Rostedtd7690412008-10-01 00:29:53 -04002128 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002129
2130 /*
Steven Rostedtd7690412008-10-01 00:29:53 -04002131 * Splice the empty reader page into the list around the head.
2132 * Reset the reader page to size zero.
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002133 */
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002134
Steven Rostedtd7690412008-10-01 00:29:53 -04002135 reader = cpu_buffer->head_page;
2136 cpu_buffer->reader_page->list.next = reader->list.next;
2137 cpu_buffer->reader_page->list.prev = reader->list.prev;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002138
2139 local_set(&cpu_buffer->reader_page->write, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05002140 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedtd7690412008-10-01 00:29:53 -04002141
2142 /* Make the reader page now replace the head */
2143 reader->list.prev->next = &cpu_buffer->reader_page->list;
2144 reader->list.next->prev = &cpu_buffer->reader_page->list;
2145
2146 /*
2147 * If the tail is on the reader, then we must set the head
2148 * to the inserted page, otherwise we set it one before.
2149 */
2150 cpu_buffer->head_page = cpu_buffer->reader_page;
2151
Steven Rostedtbf41a152008-10-04 02:00:59 -04002152 if (cpu_buffer->commit_page != reader)
Steven Rostedtd7690412008-10-01 00:29:53 -04002153 rb_inc_page(cpu_buffer, &cpu_buffer->head_page);
2154
2155 /* Finally update the reader page to the new head */
2156 cpu_buffer->reader_page = reader;
2157 rb_reset_reader_page(cpu_buffer);
2158
2159 goto again;
2160
2161 out:
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002162 __raw_spin_unlock(&cpu_buffer->lock);
2163 local_irq_restore(flags);
Steven Rostedtd7690412008-10-01 00:29:53 -04002164
2165 return reader;
2166}
2167
2168static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer)
2169{
2170 struct ring_buffer_event *event;
2171 struct buffer_page *reader;
2172 unsigned length;
2173
2174 reader = rb_get_reader_page(cpu_buffer);
2175
2176 /* This function should not be called when buffer is empty */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002177 if (RB_WARN_ON(cpu_buffer, !reader))
2178 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04002179
2180 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002181
Lai Jiangshan334d4162009-04-24 11:27:05 +08002182 if (event->type_len <= RINGBUF_TYPE_DATA_TYPE_LEN_MAX
2183 || rb_discarded_event(event))
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002184 cpu_buffer->entries--;
2185
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002186 rb_update_read_stamp(cpu_buffer, event);
2187
Steven Rostedtd7690412008-10-01 00:29:53 -04002188 length = rb_event_length(event);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04002189 cpu_buffer->reader_page->read += length;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002190}
2191
2192static void rb_advance_iter(struct ring_buffer_iter *iter)
2193{
2194 struct ring_buffer *buffer;
2195 struct ring_buffer_per_cpu *cpu_buffer;
2196 struct ring_buffer_event *event;
2197 unsigned length;
2198
2199 cpu_buffer = iter->cpu_buffer;
2200 buffer = cpu_buffer->buffer;
2201
2202 /*
2203 * Check if we are at the end of the buffer.
2204 */
Steven Rostedtbf41a152008-10-04 02:00:59 -04002205 if (iter->head >= rb_page_size(iter->head_page)) {
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002206 if (RB_WARN_ON(buffer,
2207 iter->head_page == cpu_buffer->commit_page))
2208 return;
Steven Rostedtd7690412008-10-01 00:29:53 -04002209 rb_inc_iter(iter);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002210 return;
2211 }
2212
2213 event = rb_iter_head_event(iter);
2214
2215 length = rb_event_length(event);
2216
2217 /*
2218 * This should not be called to advance the header if we are
2219 * at the tail of the buffer.
2220 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002221 if (RB_WARN_ON(cpu_buffer,
Steven Rostedtf536aaf2008-11-10 23:07:30 -05002222 (iter->head_page == cpu_buffer->commit_page) &&
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002223 (iter->head + length > rb_commit_index(cpu_buffer))))
2224 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002225
2226 rb_update_iter_read_stamp(iter, event);
2227
2228 iter->head += length;
2229
2230 /* check for end of page padding */
Steven Rostedtbf41a152008-10-04 02:00:59 -04002231 if ((iter->head >= rb_page_size(iter->head_page)) &&
2232 (iter->head_page != cpu_buffer->commit_page))
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002233 rb_advance_iter(iter);
2234}
2235
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002236static struct ring_buffer_event *
2237rb_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002238{
2239 struct ring_buffer_per_cpu *cpu_buffer;
2240 struct ring_buffer_event *event;
Steven Rostedtd7690412008-10-01 00:29:53 -04002241 struct buffer_page *reader;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002242 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002243
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002244 cpu_buffer = buffer->buffers[cpu];
2245
2246 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002247 /*
2248 * We repeat when a timestamp is encountered. It is possible
2249 * to get multiple timestamps from an interrupt entering just
2250 * as one timestamp is about to be written. The max times
2251 * that this can happen is the number of nested interrupts we
2252 * can have. Nesting 10 deep of interrupts is clearly
2253 * an anomaly.
2254 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002255 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 10))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002256 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002257
Steven Rostedtd7690412008-10-01 00:29:53 -04002258 reader = rb_get_reader_page(cpu_buffer);
2259 if (!reader)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002260 return NULL;
2261
Steven Rostedtd7690412008-10-01 00:29:53 -04002262 event = rb_reader_event(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002263
Lai Jiangshan334d4162009-04-24 11:27:05 +08002264 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002265 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05002266 if (rb_null_event(event))
2267 RB_WARN_ON(cpu_buffer, 1);
2268 /*
2269 * Because the writer could be discarding every
2270 * event it creates (which would probably be bad)
2271 * if we were to go back to "again" then we may never
2272 * catch up, and will trigger the warn on, or lock
2273 * the box. Return the padding, and we will release
2274 * the current locks, and try again.
2275 */
Steven Rostedtd7690412008-10-01 00:29:53 -04002276 rb_advance_reader(cpu_buffer);
Tom Zanussi2d622712009-03-22 03:30:49 -05002277 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002278
2279 case RINGBUF_TYPE_TIME_EXTEND:
2280 /* Internal data, OK to advance */
Steven Rostedtd7690412008-10-01 00:29:53 -04002281 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002282 goto again;
2283
2284 case RINGBUF_TYPE_TIME_STAMP:
2285 /* FIXME: not implemented */
Steven Rostedtd7690412008-10-01 00:29:53 -04002286 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002287 goto again;
2288
2289 case RINGBUF_TYPE_DATA:
2290 if (ts) {
2291 *ts = cpu_buffer->read_stamp + event->time_delta;
Steven Rostedt37886f62009-03-17 17:22:06 -04002292 ring_buffer_normalize_time_stamp(buffer,
2293 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002294 }
2295 return event;
2296
2297 default:
2298 BUG();
2299 }
2300
2301 return NULL;
2302}
Robert Richterc4f50182008-12-11 16:49:22 +01002303EXPORT_SYMBOL_GPL(ring_buffer_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002304
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002305static struct ring_buffer_event *
2306rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002307{
2308 struct ring_buffer *buffer;
2309 struct ring_buffer_per_cpu *cpu_buffer;
2310 struct ring_buffer_event *event;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002311 int nr_loops = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002312
2313 if (ring_buffer_iter_empty(iter))
2314 return NULL;
2315
2316 cpu_buffer = iter->cpu_buffer;
2317 buffer = cpu_buffer->buffer;
2318
2319 again:
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002320 /*
2321 * We repeat when a timestamp is encountered. It is possible
2322 * to get multiple timestamps from an interrupt entering just
2323 * as one timestamp is about to be written. The max times
2324 * that this can happen is the number of nested interrupts we
2325 * can have. Nesting 10 deep of interrupts is clearly
2326 * an anomaly.
2327 */
Steven Rostedt3e89c7bb2008-11-11 15:28:41 -05002328 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 10))
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002329 return NULL;
Steven Rostedt818e3dd2008-10-31 09:58:35 -04002330
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002331 if (rb_per_cpu_empty(cpu_buffer))
2332 return NULL;
2333
2334 event = rb_iter_head_event(iter);
2335
Lai Jiangshan334d4162009-04-24 11:27:05 +08002336 switch (event->type_len) {
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002337 case RINGBUF_TYPE_PADDING:
Tom Zanussi2d622712009-03-22 03:30:49 -05002338 if (rb_null_event(event)) {
2339 rb_inc_iter(iter);
2340 goto again;
2341 }
2342 rb_advance_iter(iter);
2343 return event;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002344
2345 case RINGBUF_TYPE_TIME_EXTEND:
2346 /* Internal data, OK to advance */
2347 rb_advance_iter(iter);
2348 goto again;
2349
2350 case RINGBUF_TYPE_TIME_STAMP:
2351 /* FIXME: not implemented */
2352 rb_advance_iter(iter);
2353 goto again;
2354
2355 case RINGBUF_TYPE_DATA:
2356 if (ts) {
2357 *ts = iter->read_stamp + event->time_delta;
Steven Rostedt37886f62009-03-17 17:22:06 -04002358 ring_buffer_normalize_time_stamp(buffer,
2359 cpu_buffer->cpu, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002360 }
2361 return event;
2362
2363 default:
2364 BUG();
2365 }
2366
2367 return NULL;
2368}
Robert Richterc4f50182008-12-11 16:49:22 +01002369EXPORT_SYMBOL_GPL(ring_buffer_iter_peek);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002370
2371/**
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002372 * ring_buffer_peek - peek at the next event to be read
2373 * @buffer: The ring buffer to read
2374 * @cpu: The cpu to peak at
2375 * @ts: The timestamp counter of this event.
2376 *
2377 * This will return the event that will be read next, but does
2378 * not consume the data.
2379 */
2380struct ring_buffer_event *
2381ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts)
2382{
2383 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
Steven Rostedt8aabee52009-03-12 13:13:49 -04002384 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002385 unsigned long flags;
2386
Steven Rostedt554f7862009-03-11 22:00:13 -04002387 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002388 return NULL;
Steven Rostedt554f7862009-03-11 22:00:13 -04002389
Tom Zanussi2d622712009-03-22 03:30:49 -05002390 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002391 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2392 event = rb_buffer_peek(buffer, cpu, ts);
2393 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
2394
Lai Jiangshan334d4162009-04-24 11:27:05 +08002395 if (event && event->type_len == RINGBUF_TYPE_PADDING) {
Tom Zanussi2d622712009-03-22 03:30:49 -05002396 cpu_relax();
2397 goto again;
2398 }
2399
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002400 return event;
2401}
2402
2403/**
2404 * ring_buffer_iter_peek - peek at the next event to be read
2405 * @iter: The ring buffer iterator
2406 * @ts: The timestamp counter of this event.
2407 *
2408 * This will return the event that will be read next, but does
2409 * not increment the iterator.
2410 */
2411struct ring_buffer_event *
2412ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
2413{
2414 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
2415 struct ring_buffer_event *event;
2416 unsigned long flags;
2417
Tom Zanussi2d622712009-03-22 03:30:49 -05002418 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002419 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2420 event = rb_iter_peek(iter, ts);
2421 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
2422
Lai Jiangshan334d4162009-04-24 11:27:05 +08002423 if (event && event->type_len == RINGBUF_TYPE_PADDING) {
Tom Zanussi2d622712009-03-22 03:30:49 -05002424 cpu_relax();
2425 goto again;
2426 }
2427
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002428 return event;
2429}
2430
2431/**
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002432 * ring_buffer_consume - return an event and consume it
2433 * @buffer: The ring buffer to get the next event from
2434 *
2435 * Returns the next event in the ring buffer, and that event is consumed.
2436 * Meaning, that sequential reads will keep returning a different event,
2437 * and eventually empty the ring buffer if the producer is slower.
2438 */
2439struct ring_buffer_event *
2440ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts)
2441{
Steven Rostedt554f7862009-03-11 22:00:13 -04002442 struct ring_buffer_per_cpu *cpu_buffer;
2443 struct ring_buffer_event *event = NULL;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002444 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002445
Tom Zanussi2d622712009-03-22 03:30:49 -05002446 again:
Steven Rostedt554f7862009-03-11 22:00:13 -04002447 /* might be called in atomic */
2448 preempt_disable();
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002449
Steven Rostedt554f7862009-03-11 22:00:13 -04002450 if (!cpumask_test_cpu(cpu, buffer->cpumask))
2451 goto out;
2452
2453 cpu_buffer = buffer->buffers[cpu];
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002454 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002455
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002456 event = rb_buffer_peek(buffer, cpu, ts);
2457 if (!event)
Steven Rostedt554f7862009-03-11 22:00:13 -04002458 goto out_unlock;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002459
Steven Rostedtd7690412008-10-01 00:29:53 -04002460 rb_advance_reader(cpu_buffer);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002461
Steven Rostedt554f7862009-03-11 22:00:13 -04002462 out_unlock:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002463 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
2464
Steven Rostedt554f7862009-03-11 22:00:13 -04002465 out:
2466 preempt_enable();
2467
Lai Jiangshan334d4162009-04-24 11:27:05 +08002468 if (event && event->type_len == RINGBUF_TYPE_PADDING) {
Tom Zanussi2d622712009-03-22 03:30:49 -05002469 cpu_relax();
2470 goto again;
2471 }
2472
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002473 return event;
2474}
Robert Richterc4f50182008-12-11 16:49:22 +01002475EXPORT_SYMBOL_GPL(ring_buffer_consume);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002476
2477/**
2478 * ring_buffer_read_start - start a non consuming read of the buffer
2479 * @buffer: The ring buffer to read from
2480 * @cpu: The cpu buffer to iterate over
2481 *
2482 * This starts up an iteration through the buffer. It also disables
2483 * the recording to the buffer until the reading is finished.
2484 * This prevents the reading from being corrupted. This is not
2485 * a consuming read, so a producer is not expected.
2486 *
2487 * Must be paired with ring_buffer_finish.
2488 */
2489struct ring_buffer_iter *
2490ring_buffer_read_start(struct ring_buffer *buffer, int cpu)
2491{
2492 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04002493 struct ring_buffer_iter *iter;
Steven Rostedtd7690412008-10-01 00:29:53 -04002494 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002495
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302496 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002497 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002498
2499 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
2500 if (!iter)
Steven Rostedt8aabee52009-03-12 13:13:49 -04002501 return NULL;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002502
2503 cpu_buffer = buffer->buffers[cpu];
2504
2505 iter->cpu_buffer = cpu_buffer;
2506
2507 atomic_inc(&cpu_buffer->record_disabled);
2508 synchronize_sched();
2509
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002510 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002511 __raw_spin_lock(&cpu_buffer->lock);
Steven Rostedt642edba2008-11-12 00:01:26 -05002512 rb_iter_reset(iter);
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002513 __raw_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002514 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002515
2516 return iter;
2517}
Robert Richterc4f50182008-12-11 16:49:22 +01002518EXPORT_SYMBOL_GPL(ring_buffer_read_start);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002519
2520/**
2521 * ring_buffer_finish - finish reading the iterator of the buffer
2522 * @iter: The iterator retrieved by ring_buffer_start
2523 *
2524 * This re-enables the recording to the buffer, and frees the
2525 * iterator.
2526 */
2527void
2528ring_buffer_read_finish(struct ring_buffer_iter *iter)
2529{
2530 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
2531
2532 atomic_dec(&cpu_buffer->record_disabled);
2533 kfree(iter);
2534}
Robert Richterc4f50182008-12-11 16:49:22 +01002535EXPORT_SYMBOL_GPL(ring_buffer_read_finish);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002536
2537/**
2538 * ring_buffer_read - read the next item in the ring buffer by the iterator
2539 * @iter: The ring buffer iterator
2540 * @ts: The time stamp of the event read.
2541 *
2542 * This reads the next event in the ring buffer and increments the iterator.
2543 */
2544struct ring_buffer_event *
2545ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts)
2546{
2547 struct ring_buffer_event *event;
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002548 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
2549 unsigned long flags;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002550
Tom Zanussi2d622712009-03-22 03:30:49 -05002551 again:
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002552 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2553 event = rb_iter_peek(iter, ts);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002554 if (!event)
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002555 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002556
2557 rb_advance_iter(iter);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002558 out:
2559 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002560
Lai Jiangshan334d4162009-04-24 11:27:05 +08002561 if (event && event->type_len == RINGBUF_TYPE_PADDING) {
Tom Zanussi2d622712009-03-22 03:30:49 -05002562 cpu_relax();
2563 goto again;
2564 }
2565
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002566 return event;
2567}
Robert Richterc4f50182008-12-11 16:49:22 +01002568EXPORT_SYMBOL_GPL(ring_buffer_read);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002569
2570/**
2571 * ring_buffer_size - return the size of the ring buffer (in bytes)
2572 * @buffer: The ring buffer.
2573 */
2574unsigned long ring_buffer_size(struct ring_buffer *buffer)
2575{
2576 return BUF_PAGE_SIZE * buffer->pages;
2577}
Robert Richterc4f50182008-12-11 16:49:22 +01002578EXPORT_SYMBOL_GPL(ring_buffer_size);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002579
2580static void
2581rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
2582{
2583 cpu_buffer->head_page
2584 = list_entry(cpu_buffer->pages.next, struct buffer_page, list);
Steven Rostedtbf41a152008-10-04 02:00:59 -04002585 local_set(&cpu_buffer->head_page->write, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05002586 local_set(&cpu_buffer->head_page->page->commit, 0);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002587
Steven Rostedt6f807ac2008-10-04 02:00:58 -04002588 cpu_buffer->head_page->read = 0;
Steven Rostedtbf41a152008-10-04 02:00:59 -04002589
2590 cpu_buffer->tail_page = cpu_buffer->head_page;
2591 cpu_buffer->commit_page = cpu_buffer->head_page;
2592
2593 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
2594 local_set(&cpu_buffer->reader_page->write, 0);
Steven Rostedtabc9b562008-12-02 15:34:06 -05002595 local_set(&cpu_buffer->reader_page->page->commit, 0);
Steven Rostedt6f807ac2008-10-04 02:00:58 -04002596 cpu_buffer->reader_page->read = 0;
Steven Rostedtd7690412008-10-01 00:29:53 -04002597
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002598 cpu_buffer->overrun = 0;
2599 cpu_buffer->entries = 0;
Steven Rostedt69507c02009-01-21 18:45:57 -05002600
2601 cpu_buffer->write_stamp = 0;
2602 cpu_buffer->read_stamp = 0;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002603}
2604
2605/**
2606 * ring_buffer_reset_cpu - reset a ring buffer per CPU buffer
2607 * @buffer: The ring buffer to reset a per cpu buffer of
2608 * @cpu: The CPU buffer to be reset
2609 */
2610void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
2611{
2612 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
2613 unsigned long flags;
2614
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302615 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002616 return;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002617
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002618 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2619
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002620 __raw_spin_lock(&cpu_buffer->lock);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002621
2622 rb_reset_cpu(cpu_buffer);
2623
Steven Rostedt3e03fb72008-11-06 00:09:43 -05002624 __raw_spin_unlock(&cpu_buffer->lock);
Steven Rostedtf83c9d02008-11-11 18:47:44 +01002625
2626 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002627}
Robert Richterc4f50182008-12-11 16:49:22 +01002628EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002629
2630/**
2631 * ring_buffer_reset - reset a ring buffer
2632 * @buffer: The ring buffer to reset all cpu buffers
2633 */
2634void ring_buffer_reset(struct ring_buffer *buffer)
2635{
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002636 int cpu;
2637
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002638 for_each_buffer_cpu(buffer, cpu)
Steven Rostedtd7690412008-10-01 00:29:53 -04002639 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002640}
Robert Richterc4f50182008-12-11 16:49:22 +01002641EXPORT_SYMBOL_GPL(ring_buffer_reset);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002642
2643/**
2644 * rind_buffer_empty - is the ring buffer empty?
2645 * @buffer: The ring buffer to test
2646 */
2647int ring_buffer_empty(struct ring_buffer *buffer)
2648{
2649 struct ring_buffer_per_cpu *cpu_buffer;
2650 int cpu;
2651
2652 /* yes this is racy, but if you don't like the race, lock the buffer */
2653 for_each_buffer_cpu(buffer, cpu) {
2654 cpu_buffer = buffer->buffers[cpu];
2655 if (!rb_per_cpu_empty(cpu_buffer))
2656 return 0;
2657 }
Steven Rostedt554f7862009-03-11 22:00:13 -04002658
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002659 return 1;
2660}
Robert Richterc4f50182008-12-11 16:49:22 +01002661EXPORT_SYMBOL_GPL(ring_buffer_empty);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002662
2663/**
2664 * ring_buffer_empty_cpu - is a cpu buffer of a ring buffer empty?
2665 * @buffer: The ring buffer
2666 * @cpu: The CPU buffer to test
2667 */
2668int ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu)
2669{
2670 struct ring_buffer_per_cpu *cpu_buffer;
Steven Rostedt8aabee52009-03-12 13:13:49 -04002671 int ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002672
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302673 if (!cpumask_test_cpu(cpu, buffer->cpumask))
Steven Rostedt8aabee52009-03-12 13:13:49 -04002674 return 1;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002675
2676 cpu_buffer = buffer->buffers[cpu];
Steven Rostedt554f7862009-03-11 22:00:13 -04002677 ret = rb_per_cpu_empty(cpu_buffer);
2678
Steven Rostedt554f7862009-03-11 22:00:13 -04002679
2680 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002681}
Robert Richterc4f50182008-12-11 16:49:22 +01002682EXPORT_SYMBOL_GPL(ring_buffer_empty_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002683
2684/**
2685 * ring_buffer_swap_cpu - swap a CPU buffer between two ring buffers
2686 * @buffer_a: One buffer to swap with
2687 * @buffer_b: The other buffer to swap with
2688 *
2689 * This function is useful for tracers that want to take a "snapshot"
2690 * of a CPU buffer and has another back up buffer lying around.
2691 * it is expected that the tracer handles the cpu buffer not being
2692 * used at the moment.
2693 */
2694int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
2695 struct ring_buffer *buffer_b, int cpu)
2696{
2697 struct ring_buffer_per_cpu *cpu_buffer_a;
2698 struct ring_buffer_per_cpu *cpu_buffer_b;
Steven Rostedt554f7862009-03-11 22:00:13 -04002699 int ret = -EINVAL;
2700
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302701 if (!cpumask_test_cpu(cpu, buffer_a->cpumask) ||
2702 !cpumask_test_cpu(cpu, buffer_b->cpumask))
Steven Rostedt554f7862009-03-11 22:00:13 -04002703 goto out;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002704
2705 /* At least make sure the two buffers are somewhat the same */
Lai Jiangshan6d102bc2008-12-17 17:48:23 +08002706 if (buffer_a->pages != buffer_b->pages)
Steven Rostedt554f7862009-03-11 22:00:13 -04002707 goto out;
2708
2709 ret = -EAGAIN;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002710
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002711 if (ring_buffer_flags != RB_BUFFERS_ON)
Steven Rostedt554f7862009-03-11 22:00:13 -04002712 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002713
2714 if (atomic_read(&buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04002715 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002716
2717 if (atomic_read(&buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04002718 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002719
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002720 cpu_buffer_a = buffer_a->buffers[cpu];
2721 cpu_buffer_b = buffer_b->buffers[cpu];
2722
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002723 if (atomic_read(&cpu_buffer_a->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04002724 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002725
2726 if (atomic_read(&cpu_buffer_b->record_disabled))
Steven Rostedt554f7862009-03-11 22:00:13 -04002727 goto out;
Steven Rostedt97b17ef2009-01-21 15:24:56 -05002728
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002729 /*
2730 * We can't do a synchronize_sched here because this
2731 * function can be called in atomic context.
2732 * Normally this will be called from the same CPU as cpu.
2733 * If not it's up to the caller to protect this.
2734 */
2735 atomic_inc(&cpu_buffer_a->record_disabled);
2736 atomic_inc(&cpu_buffer_b->record_disabled);
2737
2738 buffer_a->buffers[cpu] = cpu_buffer_b;
2739 buffer_b->buffers[cpu] = cpu_buffer_a;
2740
2741 cpu_buffer_b->buffer = buffer_a;
2742 cpu_buffer_a->buffer = buffer_b;
2743
2744 atomic_dec(&cpu_buffer_a->record_disabled);
2745 atomic_dec(&cpu_buffer_b->record_disabled);
2746
Steven Rostedt554f7862009-03-11 22:00:13 -04002747 ret = 0;
2748out:
Steven Rostedt554f7862009-03-11 22:00:13 -04002749 return ret;
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002750}
Robert Richterc4f50182008-12-11 16:49:22 +01002751EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
Steven Rostedt7a8e76a2008-09-29 23:02:38 -04002752
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002753static void rb_remove_entries(struct ring_buffer_per_cpu *cpu_buffer,
Lai Jiangshan667d2412009-02-09 14:21:17 +08002754 struct buffer_data_page *bpage,
2755 unsigned int offset)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002756{
2757 struct ring_buffer_event *event;
2758 unsigned long head;
2759
2760 __raw_spin_lock(&cpu_buffer->lock);
Lai Jiangshan667d2412009-02-09 14:21:17 +08002761 for (head = offset; head < local_read(&bpage->commit);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002762 head += rb_event_length(event)) {
2763
Steven Rostedt044fa782008-12-02 23:50:03 -05002764 event = __rb_data_page_index(bpage, head);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002765 if (RB_WARN_ON(cpu_buffer, rb_null_event(event)))
2766 return;
2767 /* Only count data entries */
Lai Jiangshan334d4162009-04-24 11:27:05 +08002768 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002769 continue;
2770 cpu_buffer->entries--;
2771 }
2772 __raw_spin_unlock(&cpu_buffer->lock);
2773}
2774
2775/**
2776 * ring_buffer_alloc_read_page - allocate a page to read from buffer
2777 * @buffer: the buffer to allocate for.
2778 *
2779 * This function is used in conjunction with ring_buffer_read_page.
2780 * When reading a full page from the ring buffer, these functions
2781 * can be used to speed up the process. The calling function should
2782 * allocate a few pages first with this function. Then when it
2783 * needs to get pages from the ring buffer, it passes the result
2784 * of this function into ring_buffer_read_page, which will swap
2785 * the page that was allocated, with the read page of the buffer.
2786 *
2787 * Returns:
2788 * The page allocated, or NULL on error.
2789 */
2790void *ring_buffer_alloc_read_page(struct ring_buffer *buffer)
2791{
Steven Rostedt044fa782008-12-02 23:50:03 -05002792 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002793 unsigned long addr;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002794
2795 addr = __get_free_page(GFP_KERNEL);
2796 if (!addr)
2797 return NULL;
2798
Steven Rostedt044fa782008-12-02 23:50:03 -05002799 bpage = (void *)addr;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002800
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002801 rb_init_page(bpage);
2802
Steven Rostedt044fa782008-12-02 23:50:03 -05002803 return bpage;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002804}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04002805EXPORT_SYMBOL_GPL(ring_buffer_alloc_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002806
2807/**
2808 * ring_buffer_free_read_page - free an allocated read page
2809 * @buffer: the buffer the page was allocate for
2810 * @data: the page to free
2811 *
2812 * Free a page allocated from ring_buffer_alloc_read_page.
2813 */
2814void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data)
2815{
2816 free_page((unsigned long)data);
2817}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04002818EXPORT_SYMBOL_GPL(ring_buffer_free_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002819
2820/**
2821 * ring_buffer_read_page - extract a page from the ring buffer
2822 * @buffer: buffer to extract from
2823 * @data_page: the page to use allocated from ring_buffer_alloc_read_page
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002824 * @len: amount to extract
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002825 * @cpu: the cpu of the buffer to extract
2826 * @full: should the extraction only happen when the page is full.
2827 *
2828 * This function will pull out a page from the ring buffer and consume it.
2829 * @data_page must be the address of the variable that was returned
2830 * from ring_buffer_alloc_read_page. This is because the page might be used
2831 * to swap with a page in the ring buffer.
2832 *
2833 * for example:
Lai Jiangshanb85fa012009-02-09 14:21:14 +08002834 * rpage = ring_buffer_alloc_read_page(buffer);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002835 * if (!rpage)
2836 * return error;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002837 * ret = ring_buffer_read_page(buffer, &rpage, len, cpu, 0);
Lai Jiangshan667d2412009-02-09 14:21:17 +08002838 * if (ret >= 0)
2839 * process_page(rpage, ret);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002840 *
2841 * When @full is set, the function will not return true unless
2842 * the writer is off the reader page.
2843 *
2844 * Note: it is up to the calling functions to handle sleeps and wakeups.
2845 * The ring buffer can be used anywhere in the kernel and can not
2846 * blindly call wake_up. The layer that uses the ring buffer must be
2847 * responsible for that.
2848 *
2849 * Returns:
Lai Jiangshan667d2412009-02-09 14:21:17 +08002850 * >=0 if data has been transferred, returns the offset of consumed data.
2851 * <0 if no data has been transferred.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002852 */
2853int ring_buffer_read_page(struct ring_buffer *buffer,
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002854 void **data_page, size_t len, int cpu, int full)
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002855{
2856 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
2857 struct ring_buffer_event *event;
Steven Rostedt044fa782008-12-02 23:50:03 -05002858 struct buffer_data_page *bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002859 struct buffer_page *reader;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002860 unsigned long flags;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002861 unsigned int commit;
Lai Jiangshan667d2412009-02-09 14:21:17 +08002862 unsigned int read;
Steven Rostedt4f3640f2009-03-03 23:52:42 -05002863 u64 save_timestamp;
Lai Jiangshan667d2412009-02-09 14:21:17 +08002864 int ret = -1;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002865
Steven Rostedt554f7862009-03-11 22:00:13 -04002866 if (!cpumask_test_cpu(cpu, buffer->cpumask))
2867 goto out;
2868
Steven Rostedt474d32b2009-03-03 19:51:40 -05002869 /*
2870 * If len is not big enough to hold the page header, then
2871 * we can not copy anything.
2872 */
2873 if (len <= BUF_PAGE_HDR_SIZE)
Steven Rostedt554f7862009-03-11 22:00:13 -04002874 goto out;
Steven Rostedt474d32b2009-03-03 19:51:40 -05002875
2876 len -= BUF_PAGE_HDR_SIZE;
2877
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002878 if (!data_page)
Steven Rostedt554f7862009-03-11 22:00:13 -04002879 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002880
Steven Rostedt044fa782008-12-02 23:50:03 -05002881 bpage = *data_page;
2882 if (!bpage)
Steven Rostedt554f7862009-03-11 22:00:13 -04002883 goto out;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002884
2885 spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
2886
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002887 reader = rb_get_reader_page(cpu_buffer);
2888 if (!reader)
Steven Rostedt554f7862009-03-11 22:00:13 -04002889 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002890
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002891 event = rb_reader_event(cpu_buffer);
Lai Jiangshan667d2412009-02-09 14:21:17 +08002892
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002893 read = reader->read;
2894 commit = rb_page_commit(reader);
2895
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002896 /*
Steven Rostedt474d32b2009-03-03 19:51:40 -05002897 * If this page has been partially read or
2898 * if len is not big enough to read the rest of the page or
2899 * a writer is still on the page, then
2900 * we must copy the data from the page to the buffer.
2901 * Otherwise, we can simply swap the page with the one passed in.
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002902 */
Steven Rostedt474d32b2009-03-03 19:51:40 -05002903 if (read || (len < (commit - read)) ||
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002904 cpu_buffer->reader_page == cpu_buffer->commit_page) {
Lai Jiangshan667d2412009-02-09 14:21:17 +08002905 struct buffer_data_page *rpage = cpu_buffer->reader_page->page;
Steven Rostedt474d32b2009-03-03 19:51:40 -05002906 unsigned int rpos = read;
2907 unsigned int pos = 0;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002908 unsigned int size;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002909
2910 if (full)
Steven Rostedt554f7862009-03-11 22:00:13 -04002911 goto out_unlock;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002912
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002913 if (len > (commit - read))
2914 len = (commit - read);
2915
2916 size = rb_event_length(event);
2917
2918 if (len < size)
Steven Rostedt554f7862009-03-11 22:00:13 -04002919 goto out_unlock;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002920
Steven Rostedt4f3640f2009-03-03 23:52:42 -05002921 /* save the current timestamp, since the user will need it */
2922 save_timestamp = cpu_buffer->read_stamp;
2923
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002924 /* Need to copy one event at a time */
2925 do {
Steven Rostedt474d32b2009-03-03 19:51:40 -05002926 memcpy(bpage->data + pos, rpage->data + rpos, size);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002927
2928 len -= size;
2929
2930 rb_advance_reader(cpu_buffer);
Steven Rostedt474d32b2009-03-03 19:51:40 -05002931 rpos = reader->read;
2932 pos += size;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002933
2934 event = rb_reader_event(cpu_buffer);
2935 size = rb_event_length(event);
2936 } while (len > size);
Lai Jiangshan667d2412009-02-09 14:21:17 +08002937
2938 /* update bpage */
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002939 local_set(&bpage->commit, pos);
Steven Rostedt4f3640f2009-03-03 23:52:42 -05002940 bpage->time_stamp = save_timestamp;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002941
Steven Rostedt474d32b2009-03-03 19:51:40 -05002942 /* we copied everything to the beginning */
2943 read = 0;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002944 } else {
2945 /* swap the pages */
Steven Rostedt044fa782008-12-02 23:50:03 -05002946 rb_init_page(bpage);
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002947 bpage = reader->page;
2948 reader->page = *data_page;
2949 local_set(&reader->write, 0);
2950 reader->read = 0;
Steven Rostedt044fa782008-12-02 23:50:03 -05002951 *data_page = bpage;
Steven Rostedtef7a4a12009-03-03 00:27:49 -05002952
2953 /* update the entry counter */
2954 rb_remove_entries(cpu_buffer, bpage, read);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002955 }
Lai Jiangshan667d2412009-02-09 14:21:17 +08002956 ret = read;
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002957
Steven Rostedt554f7862009-03-11 22:00:13 -04002958 out_unlock:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002959 spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
2960
Steven Rostedt554f7862009-03-11 22:00:13 -04002961 out:
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002962 return ret;
2963}
Steven Rostedtd6ce96d2009-05-05 01:15:24 -04002964EXPORT_SYMBOL_GPL(ring_buffer_read_page);
Steven Rostedt8789a9e2008-12-02 15:34:07 -05002965
Steven Rostedta3583242008-11-11 15:01:42 -05002966static ssize_t
2967rb_simple_read(struct file *filp, char __user *ubuf,
2968 size_t cnt, loff_t *ppos)
2969{
Hannes Eder5e398412009-02-10 19:44:34 +01002970 unsigned long *p = filp->private_data;
Steven Rostedta3583242008-11-11 15:01:42 -05002971 char buf[64];
2972 int r;
2973
Steven Rostedt033601a2008-11-21 12:41:55 -05002974 if (test_bit(RB_BUFFERS_DISABLED_BIT, p))
2975 r = sprintf(buf, "permanently disabled\n");
2976 else
2977 r = sprintf(buf, "%d\n", test_bit(RB_BUFFERS_ON_BIT, p));
Steven Rostedta3583242008-11-11 15:01:42 -05002978
2979 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2980}
2981
2982static ssize_t
2983rb_simple_write(struct file *filp, const char __user *ubuf,
2984 size_t cnt, loff_t *ppos)
2985{
Hannes Eder5e398412009-02-10 19:44:34 +01002986 unsigned long *p = filp->private_data;
Steven Rostedta3583242008-11-11 15:01:42 -05002987 char buf[64];
Hannes Eder5e398412009-02-10 19:44:34 +01002988 unsigned long val;
Steven Rostedta3583242008-11-11 15:01:42 -05002989 int ret;
2990
2991 if (cnt >= sizeof(buf))
2992 return -EINVAL;
2993
2994 if (copy_from_user(&buf, ubuf, cnt))
2995 return -EFAULT;
2996
2997 buf[cnt] = 0;
2998
2999 ret = strict_strtoul(buf, 10, &val);
3000 if (ret < 0)
3001 return ret;
3002
Steven Rostedt033601a2008-11-21 12:41:55 -05003003 if (val)
3004 set_bit(RB_BUFFERS_ON_BIT, p);
3005 else
3006 clear_bit(RB_BUFFERS_ON_BIT, p);
Steven Rostedta3583242008-11-11 15:01:42 -05003007
3008 (*ppos)++;
3009
3010 return cnt;
3011}
3012
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003013static const struct file_operations rb_simple_fops = {
Steven Rostedta3583242008-11-11 15:01:42 -05003014 .open = tracing_open_generic,
3015 .read = rb_simple_read,
3016 .write = rb_simple_write,
3017};
3018
3019
3020static __init int rb_init_debugfs(void)
3021{
3022 struct dentry *d_tracer;
Steven Rostedta3583242008-11-11 15:01:42 -05003023
3024 d_tracer = tracing_init_dentry();
3025
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003026 trace_create_file("tracing_on", 0644, d_tracer,
3027 &ring_buffer_flags, &rb_simple_fops);
Steven Rostedta3583242008-11-11 15:01:42 -05003028
3029 return 0;
3030}
3031
3032fs_initcall(rb_init_debugfs);
Steven Rostedt554f7862009-03-11 22:00:13 -04003033
Steven Rostedt59222ef2009-03-12 11:46:03 -04003034#ifdef CONFIG_HOTPLUG_CPU
Frederic Weisbecker09c9e842009-03-21 04:33:36 +01003035static int rb_cpu_notify(struct notifier_block *self,
3036 unsigned long action, void *hcpu)
Steven Rostedt554f7862009-03-11 22:00:13 -04003037{
3038 struct ring_buffer *buffer =
3039 container_of(self, struct ring_buffer, cpu_notify);
3040 long cpu = (long)hcpu;
3041
3042 switch (action) {
3043 case CPU_UP_PREPARE:
3044 case CPU_UP_PREPARE_FROZEN:
3045 if (cpu_isset(cpu, *buffer->cpumask))
3046 return NOTIFY_OK;
3047
3048 buffer->buffers[cpu] =
3049 rb_allocate_cpu_buffer(buffer, cpu);
3050 if (!buffer->buffers[cpu]) {
3051 WARN(1, "failed to allocate ring buffer on CPU %ld\n",
3052 cpu);
3053 return NOTIFY_OK;
3054 }
3055 smp_wmb();
3056 cpu_set(cpu, *buffer->cpumask);
3057 break;
3058 case CPU_DOWN_PREPARE:
3059 case CPU_DOWN_PREPARE_FROZEN:
3060 /*
3061 * Do nothing.
3062 * If we were to free the buffer, then the user would
3063 * lose any trace that was in the buffer.
3064 */
3065 break;
3066 default:
3067 break;
3068 }
3069 return NOTIFY_OK;
3070}
3071#endif