1 // SPDX-License-Identifier: GPL-2.0
7 #include <linux/trace_events.h>
8 #include <linux/ring_buffer.h>
9 #include <linux/trace_clock.h>
10 #include <linux/sched/clock.h>
11 #include <linux/trace_seq.h>
12 #include <linux/spinlock.h>
13 #include <linux/irq_work.h>
14 #include <linux/uaccess.h>
15 #include <linux/hardirq.h>
16 #include <linux/kthread.h> /* for self test */
17 #include <linux/module.h>
18 #include <linux/percpu.h>
19 #include <linux/mutex.h>
20 #include <linux/delay.h>
21 #include <linux/slab.h>
22 #include <linux/init.h>
23 #include <linux/hash.h>
24 #include <linux/list.h>
25 #include <linux/cpu.h>
26 #include <linux/oom.h>
28 #include <asm/local.h>
30 static void update_pages_handler(struct work_struct *work);
33 * The ring buffer header is special. We must manually up keep it.
35 int ring_buffer_print_entry_header(struct trace_seq *s)
37 trace_seq_puts(s, "# compressed entry header\n");
38 trace_seq_puts(s, "\ttype_len : 5 bits\n");
39 trace_seq_puts(s, "\ttime_delta : 27 bits\n");
40 trace_seq_puts(s, "\tarray : 32 bits\n");
41 trace_seq_putc(s, '\n');
42 trace_seq_printf(s, "\tpadding : type == %d\n",
43 RINGBUF_TYPE_PADDING);
44 trace_seq_printf(s, "\ttime_extend : type == %d\n",
45 RINGBUF_TYPE_TIME_EXTEND);
46 trace_seq_printf(s, "\ttime_stamp : type == %d\n",
47 RINGBUF_TYPE_TIME_STAMP);
48 trace_seq_printf(s, "\tdata max type_len == %d\n",
49 RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
51 return !trace_seq_has_overflowed(s);
55 * The ring buffer is made up of a list of pages. A separate list of pages is
56 * allocated for each CPU. A writer may only write to a buffer that is
57 * associated with the CPU it is currently executing on. A reader may read
58 * from any per cpu buffer.
60 * The reader is special. For each per cpu buffer, the reader has its own
61 * reader page. When a reader has read the entire reader page, this reader
62 * page is swapped with another page in the ring buffer.
64 * Now, as long as the writer is off the reader page, the reader can do what
65 * ever it wants with that page. The writer will never write to that page
66 * again (as long as it is out of the ring buffer).
68 * Here's some silly ASCII art.
71 * |reader| RING BUFFER
73 * +------+ +---+ +---+ +---+
82 * |reader| RING BUFFER
83 * |page |------------------v
84 * +------+ +---+ +---+ +---+
93 * |reader| RING BUFFER
94 * |page |------------------v
95 * +------+ +---+ +---+ +---+
100 * +------------------------------+
104 * |buffer| RING BUFFER
105 * |page |------------------v
106 * +------+ +---+ +---+ +---+
108 * | New +---+ +---+ +---+
111 * +------------------------------+
114 * After we make this swap, the reader can hand this page off to the splice
115 * code and be done with it. It can even allocate a new page if it needs to
116 * and swap that into the ring buffer.
118 * We will be using cmpxchg soon to make all this lockless.
122 /* Used for individual buffers (after the counter) */
123 #define RB_BUFFER_OFF (1 << 20)
125 #define BUF_PAGE_HDR_SIZE offsetof(struct buffer_data_page, data)
127 #define RB_EVNT_HDR_SIZE (offsetof(struct ring_buffer_event, array))
128 #define RB_ALIGNMENT 4U
129 #define RB_MAX_SMALL_DATA (RB_ALIGNMENT * RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
130 #define RB_EVNT_MIN_SIZE 8U /* two 32bit words */
132 #ifndef CONFIG_HAVE_64BIT_ALIGNED_ACCESS
133 # define RB_FORCE_8BYTE_ALIGNMENT 0
134 # define RB_ARCH_ALIGNMENT RB_ALIGNMENT
136 # define RB_FORCE_8BYTE_ALIGNMENT 1
137 # define RB_ARCH_ALIGNMENT 8U
140 #define RB_ALIGN_DATA __aligned(RB_ARCH_ALIGNMENT)
142 /* define RINGBUF_TYPE_DATA for 'case RINGBUF_TYPE_DATA:' */
143 #define RINGBUF_TYPE_DATA 0 ... RINGBUF_TYPE_DATA_TYPE_LEN_MAX
146 RB_LEN_TIME_EXTEND = 8,
147 RB_LEN_TIME_STAMP = 8,
150 #define skip_time_extend(event) \
151 ((struct ring_buffer_event *)((char *)event + RB_LEN_TIME_EXTEND))
153 #define extended_time(event) \
154 (event->type_len >= RINGBUF_TYPE_TIME_EXTEND)
156 static inline int rb_null_event(struct ring_buffer_event *event)
158 return event->type_len == RINGBUF_TYPE_PADDING && !event->time_delta;
161 static void rb_event_set_padding(struct ring_buffer_event *event)
163 /* padding has a NULL time_delta */
164 event->type_len = RINGBUF_TYPE_PADDING;
165 event->time_delta = 0;
169 rb_event_data_length(struct ring_buffer_event *event)
174 length = event->type_len * RB_ALIGNMENT;
176 length = event->array[0];
177 return length + RB_EVNT_HDR_SIZE;
181 * Return the length of the given event. Will return
182 * the length of the time extend if the event is a
185 static inline unsigned
186 rb_event_length(struct ring_buffer_event *event)
188 switch (event->type_len) {
189 case RINGBUF_TYPE_PADDING:
190 if (rb_null_event(event))
193 return event->array[0] + RB_EVNT_HDR_SIZE;
195 case RINGBUF_TYPE_TIME_EXTEND:
196 return RB_LEN_TIME_EXTEND;
198 case RINGBUF_TYPE_TIME_STAMP:
199 return RB_LEN_TIME_STAMP;
201 case RINGBUF_TYPE_DATA:
202 return rb_event_data_length(event);
211 * Return total length of time extend and data,
212 * or just the event length for all other events.
214 static inline unsigned
215 rb_event_ts_length(struct ring_buffer_event *event)
219 if (extended_time(event)) {
220 /* time extends include the data event after it */
221 len = RB_LEN_TIME_EXTEND;
222 event = skip_time_extend(event);
224 return len + rb_event_length(event);
228 * ring_buffer_event_length - return the length of the event
229 * @event: the event to get the length of
231 * Returns the size of the data load of a data event.
232 * If the event is something other than a data event, it
233 * returns the size of the event itself. With the exception
234 * of a TIME EXTEND, where it still returns the size of the
235 * data load of the data event after it.
237 unsigned ring_buffer_event_length(struct ring_buffer_event *event)
241 if (extended_time(event))
242 event = skip_time_extend(event);
244 length = rb_event_length(event);
245 if (event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
247 length -= RB_EVNT_HDR_SIZE;
248 if (length > RB_MAX_SMALL_DATA + sizeof(event->array[0]))
249 length -= sizeof(event->array[0]);
252 EXPORT_SYMBOL_GPL(ring_buffer_event_length);
254 /* inline for ring buffer fast paths */
255 static __always_inline void *
256 rb_event_data(struct ring_buffer_event *event)
258 if (extended_time(event))
259 event = skip_time_extend(event);
260 BUG_ON(event->type_len > RINGBUF_TYPE_DATA_TYPE_LEN_MAX);
261 /* If length is in len field, then array[0] has the data */
263 return (void *)&event->array[0];
264 /* Otherwise length is in array[0] and array[1] has the data */
265 return (void *)&event->array[1];
269 * ring_buffer_event_data - return the data of the event
270 * @event: the event to get the data from
272 void *ring_buffer_event_data(struct ring_buffer_event *event)
274 return rb_event_data(event);
276 EXPORT_SYMBOL_GPL(ring_buffer_event_data);
278 #define for_each_buffer_cpu(buffer, cpu) \
279 for_each_cpu(cpu, buffer->cpumask)
282 #define TS_MASK ((1ULL << TS_SHIFT) - 1)
283 #define TS_DELTA_TEST (~TS_MASK)
286 * ring_buffer_event_time_stamp - return the event's extended timestamp
287 * @event: the event to get the timestamp of
289 * Returns the extended timestamp associated with a data event.
290 * An extended time_stamp is a 64-bit timestamp represented
291 * internally in a special way that makes the best use of space
292 * contained within a ring buffer event. This function decodes
293 * it and maps it to a straight u64 value.
295 u64 ring_buffer_event_time_stamp(struct ring_buffer_event *event)
299 ts = event->array[0];
301 ts += event->time_delta;
306 /* Flag when events were overwritten */
307 #define RB_MISSED_EVENTS (1 << 31)
308 /* Missed count stored at end */
309 #define RB_MISSED_STORED (1 << 30)
311 #define RB_MISSED_FLAGS (RB_MISSED_EVENTS|RB_MISSED_STORED)
313 struct buffer_data_page {
314 u64 time_stamp; /* page time stamp */
315 local_t commit; /* write committed index */
316 unsigned char data[] RB_ALIGN_DATA; /* data of buffer page */
320 * Note, the buffer_page list must be first. The buffer pages
321 * are allocated in cache lines, which means that each buffer
322 * page will be at the beginning of a cache line, and thus
323 * the least significant bits will be zero. We use this to
324 * add flags in the list struct pointers, to make the ring buffer
328 struct list_head list; /* list of buffer pages */
329 local_t write; /* index for next write */
330 unsigned read; /* index for next read */
331 local_t entries; /* entries on this page */
332 unsigned long real_end; /* real end of data */
333 struct buffer_data_page *page; /* Actual data page */
337 * The buffer page counters, write and entries, must be reset
338 * atomically when crossing page boundaries. To synchronize this
339 * update, two counters are inserted into the number. One is
340 * the actual counter for the write position or count on the page.
342 * The other is a counter of updaters. Before an update happens
343 * the update partition of the counter is incremented. This will
344 * allow the updater to update the counter atomically.
346 * The counter is 20 bits, and the state data is 12.
348 #define RB_WRITE_MASK 0xfffff
349 #define RB_WRITE_INTCNT (1 << 20)
351 static void rb_init_page(struct buffer_data_page *bpage)
353 local_set(&bpage->commit, 0);
357 * ring_buffer_page_len - the size of data on the page.
358 * @page: The page to read
360 * Returns the amount of data on the page, including buffer page header.
362 size_t ring_buffer_page_len(void *page)
364 struct buffer_data_page *bpage = page;
366 return (local_read(&bpage->commit) & ~RB_MISSED_FLAGS)
371 * Also stolen from mm/slob.c. Thanks to Mathieu Desnoyers for pointing
374 static void free_buffer_page(struct buffer_page *bpage)
376 free_page((unsigned long)bpage->page);
381 * We need to fit the time_stamp delta into 27 bits.
383 static inline int test_time_stamp(u64 delta)
385 if (delta & TS_DELTA_TEST)
390 #define BUF_PAGE_SIZE (PAGE_SIZE - BUF_PAGE_HDR_SIZE)
392 /* Max payload is BUF_PAGE_SIZE - header (8bytes) */
393 #define BUF_MAX_DATA_SIZE (BUF_PAGE_SIZE - (sizeof(u32) * 2))
395 int ring_buffer_print_page_header(struct trace_seq *s)
397 struct buffer_data_page field;
399 trace_seq_printf(s, "\tfield: u64 timestamp;\t"
400 "offset:0;\tsize:%u;\tsigned:%u;\n",
401 (unsigned int)sizeof(field.time_stamp),
402 (unsigned int)is_signed_type(u64));
404 trace_seq_printf(s, "\tfield: local_t commit;\t"
405 "offset:%u;\tsize:%u;\tsigned:%u;\n",
406 (unsigned int)offsetof(typeof(field), commit),
407 (unsigned int)sizeof(field.commit),
408 (unsigned int)is_signed_type(long));
410 trace_seq_printf(s, "\tfield: int overwrite;\t"
411 "offset:%u;\tsize:%u;\tsigned:%u;\n",
412 (unsigned int)offsetof(typeof(field), commit),
414 (unsigned int)is_signed_type(long));
416 trace_seq_printf(s, "\tfield: char data;\t"
417 "offset:%u;\tsize:%u;\tsigned:%u;\n",
418 (unsigned int)offsetof(typeof(field), data),
419 (unsigned int)BUF_PAGE_SIZE,
420 (unsigned int)is_signed_type(char));
422 return !trace_seq_has_overflowed(s);
426 struct irq_work work;
427 wait_queue_head_t waiters;
428 wait_queue_head_t full_waiters;
429 bool waiters_pending;
430 bool full_waiters_pending;
435 * Structure to hold event state and handle nested events.
437 struct rb_event_info {
440 unsigned long length;
441 struct buffer_page *tail_page;
446 * Used for which event context the event is in.
452 * See trace_recursive_lock() comment below for more details.
463 * head_page == tail_page && head == tail then buffer is empty.
465 struct ring_buffer_per_cpu {
467 atomic_t record_disabled;
468 struct ring_buffer *buffer;
469 raw_spinlock_t reader_lock; /* serialize readers */
470 arch_spinlock_t lock;
471 struct lock_class_key lock_key;
472 struct buffer_data_page *free_page;
473 unsigned long nr_pages;
474 unsigned int current_context;
475 struct list_head *pages;
476 struct buffer_page *head_page; /* read from head */
477 struct buffer_page *tail_page; /* write to tail */
478 struct buffer_page *commit_page; /* committed pages */
479 struct buffer_page *reader_page;
480 unsigned long lost_events;
481 unsigned long last_overrun;
483 local_t entries_bytes;
486 local_t commit_overrun;
487 local_t dropped_events;
490 local_t pages_touched;
492 long last_pages_touch;
493 size_t shortest_full;
495 unsigned long read_bytes;
498 /* ring buffer pages to update, > 0 to add, < 0 to remove */
499 long nr_pages_to_update;
500 struct list_head new_pages; /* new pages to add */
501 struct work_struct update_pages_work;
502 struct completion update_done;
504 struct rb_irq_work irq_work;
510 atomic_t record_disabled;
511 atomic_t resize_disabled;
512 cpumask_var_t cpumask;
514 struct lock_class_key *reader_lock_key;
518 struct ring_buffer_per_cpu **buffers;
520 struct hlist_node node;
523 struct rb_irq_work irq_work;
527 struct ring_buffer_iter {
528 struct ring_buffer_per_cpu *cpu_buffer;
530 struct buffer_page *head_page;
531 struct buffer_page *cache_reader_page;
532 unsigned long cache_read;
537 * ring_buffer_nr_pages - get the number of buffer pages in the ring buffer
538 * @buffer: The ring_buffer to get the number of pages from
539 * @cpu: The cpu of the ring_buffer to get the number of pages from
541 * Returns the number of pages used by a per_cpu buffer of the ring buffer.
543 size_t ring_buffer_nr_pages(struct ring_buffer *buffer, int cpu)
545 return buffer->buffers[cpu]->nr_pages;
549 * ring_buffer_nr_pages_dirty - get the number of used pages in the ring buffer
550 * @buffer: The ring_buffer to get the number of pages from
551 * @cpu: The cpu of the ring_buffer to get the number of pages from
553 * Returns the number of pages that have content in the ring buffer.
555 size_t ring_buffer_nr_dirty_pages(struct ring_buffer *buffer, int cpu)
560 read = local_read(&buffer->buffers[cpu]->pages_read);
561 cnt = local_read(&buffer->buffers[cpu]->pages_touched);
562 /* The reader can read an empty page, but not more than that */
564 WARN_ON_ONCE(read > cnt + 1);
572 * rb_wake_up_waiters - wake up tasks waiting for ring buffer input
574 * Schedules a delayed work to wake up any task that is blocked on the
575 * ring buffer waiters queue.
577 static void rb_wake_up_waiters(struct irq_work *work)
579 struct rb_irq_work *rbwork = container_of(work, struct rb_irq_work, work);
581 wake_up_all(&rbwork->waiters);
582 if (rbwork->wakeup_full) {
583 rbwork->wakeup_full = false;
584 wake_up_all(&rbwork->full_waiters);
589 * ring_buffer_wait - wait for input to the ring buffer
590 * @buffer: buffer to wait on
591 * @cpu: the cpu buffer to wait on
592 * @full: wait until a full page is available, if @cpu != RING_BUFFER_ALL_CPUS
594 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
595 * as data is added to any of the @buffer's cpu buffers. Otherwise
596 * it will wait for data to be added to a specific cpu buffer.
598 int ring_buffer_wait(struct ring_buffer *buffer, int cpu, int full)
600 struct ring_buffer_per_cpu *uninitialized_var(cpu_buffer);
602 struct rb_irq_work *work;
606 * Depending on what the caller is waiting for, either any
607 * data in any cpu buffer, or a specific buffer, put the
608 * caller on the appropriate wait queue.
610 if (cpu == RING_BUFFER_ALL_CPUS) {
611 work = &buffer->irq_work;
612 /* Full only makes sense on per cpu reads */
615 if (!cpumask_test_cpu(cpu, buffer->cpumask))
617 cpu_buffer = buffer->buffers[cpu];
618 work = &cpu_buffer->irq_work;
624 prepare_to_wait(&work->full_waiters, &wait, TASK_INTERRUPTIBLE);
626 prepare_to_wait(&work->waiters, &wait, TASK_INTERRUPTIBLE);
629 * The events can happen in critical sections where
630 * checking a work queue can cause deadlocks.
631 * After adding a task to the queue, this flag is set
632 * only to notify events to try to wake up the queue
635 * We don't clear it even if the buffer is no longer
636 * empty. The flag only causes the next event to run
637 * irq_work to do the work queue wake up. The worse
638 * that can happen if we race with !trace_empty() is that
639 * an event will cause an irq_work to try to wake up
642 * There's no reason to protect this flag either, as
643 * the work queue and irq_work logic will do the necessary
644 * synchronization for the wake ups. The only thing
645 * that is necessary is that the wake up happens after
646 * a task has been queued. It's OK for spurious wake ups.
649 work->full_waiters_pending = true;
651 work->waiters_pending = true;
653 if (signal_pending(current)) {
658 if (cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer))
661 if (cpu != RING_BUFFER_ALL_CPUS &&
662 !ring_buffer_empty_cpu(buffer, cpu)) {
671 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
672 pagebusy = cpu_buffer->reader_page == cpu_buffer->commit_page;
673 nr_pages = cpu_buffer->nr_pages;
674 dirty = ring_buffer_nr_dirty_pages(buffer, cpu);
675 if (!cpu_buffer->shortest_full ||
676 cpu_buffer->shortest_full < full)
677 cpu_buffer->shortest_full = full;
678 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
680 (!nr_pages || (dirty * 100) > full * nr_pages))
688 finish_wait(&work->full_waiters, &wait);
690 finish_wait(&work->waiters, &wait);
696 * ring_buffer_poll_wait - poll on buffer input
697 * @buffer: buffer to wait on
698 * @cpu: the cpu buffer to wait on
699 * @filp: the file descriptor
700 * @poll_table: The poll descriptor
702 * If @cpu == RING_BUFFER_ALL_CPUS then the task will wake up as soon
703 * as data is added to any of the @buffer's cpu buffers. Otherwise
704 * it will wait for data to be added to a specific cpu buffer.
706 * Returns EPOLLIN | EPOLLRDNORM if data exists in the buffers,
709 __poll_t ring_buffer_poll_wait(struct ring_buffer *buffer, int cpu,
710 struct file *filp, poll_table *poll_table)
712 struct ring_buffer_per_cpu *cpu_buffer;
713 struct rb_irq_work *work;
715 if (cpu == RING_BUFFER_ALL_CPUS)
716 work = &buffer->irq_work;
718 if (!cpumask_test_cpu(cpu, buffer->cpumask))
721 cpu_buffer = buffer->buffers[cpu];
722 work = &cpu_buffer->irq_work;
725 poll_wait(filp, &work->waiters, poll_table);
726 work->waiters_pending = true;
728 * There's a tight race between setting the waiters_pending and
729 * checking if the ring buffer is empty. Once the waiters_pending bit
730 * is set, the next event will wake the task up, but we can get stuck
731 * if there's only a single event in.
733 * FIXME: Ideally, we need a memory barrier on the writer side as well,
734 * but adding a memory barrier to all events will cause too much of a
735 * performance hit in the fast path. We only need a memory barrier when
736 * the buffer goes from empty to having content. But as this race is
737 * extremely small, and it's not a problem if another event comes in, we
742 if ((cpu == RING_BUFFER_ALL_CPUS && !ring_buffer_empty(buffer)) ||
743 (cpu != RING_BUFFER_ALL_CPUS && !ring_buffer_empty_cpu(buffer, cpu)))
744 return EPOLLIN | EPOLLRDNORM;
748 /* buffer may be either ring_buffer or ring_buffer_per_cpu */
749 #define RB_WARN_ON(b, cond) \
751 int _____ret = unlikely(cond); \
753 if (__same_type(*(b), struct ring_buffer_per_cpu)) { \
754 struct ring_buffer_per_cpu *__b = \
756 atomic_inc(&__b->buffer->record_disabled); \
758 atomic_inc(&b->record_disabled); \
764 /* Up this if you want to test the TIME_EXTENTS and normalization */
765 #define DEBUG_SHIFT 0
767 static inline u64 rb_time_stamp(struct ring_buffer *buffer)
769 /* shift to debug/test normalization and TIME_EXTENTS */
770 return buffer->clock() << DEBUG_SHIFT;
773 u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu)
777 preempt_disable_notrace();
778 time = rb_time_stamp(buffer);
779 preempt_enable_no_resched_notrace();
783 EXPORT_SYMBOL_GPL(ring_buffer_time_stamp);
785 void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
788 /* Just stupid testing the normalize function and deltas */
791 EXPORT_SYMBOL_GPL(ring_buffer_normalize_time_stamp);
794 * Making the ring buffer lockless makes things tricky.
795 * Although writes only happen on the CPU that they are on,
796 * and they only need to worry about interrupts. Reads can
799 * The reader page is always off the ring buffer, but when the
800 * reader finishes with a page, it needs to swap its page with
801 * a new one from the buffer. The reader needs to take from
802 * the head (writes go to the tail). But if a writer is in overwrite
803 * mode and wraps, it must push the head page forward.
805 * Here lies the problem.
807 * The reader must be careful to replace only the head page, and
808 * not another one. As described at the top of the file in the
809 * ASCII art, the reader sets its old page to point to the next
810 * page after head. It then sets the page after head to point to
811 * the old reader page. But if the writer moves the head page
812 * during this operation, the reader could end up with the tail.
814 * We use cmpxchg to help prevent this race. We also do something
815 * special with the page before head. We set the LSB to 1.
817 * When the writer must push the page forward, it will clear the
818 * bit that points to the head page, move the head, and then set
819 * the bit that points to the new head page.
821 * We also don't want an interrupt coming in and moving the head
822 * page on another writer. Thus we use the second LSB to catch
825 * head->list->prev->next bit 1 bit 0
828 * Points to head page 0 1
831 * Note we can not trust the prev pointer of the head page, because:
833 * +----+ +-----+ +-----+
834 * | |------>| T |---X--->| N |
836 * +----+ +-----+ +-----+
839 * +----------| R |----------+ |
843 * Key: ---X--> HEAD flag set in pointer
848 * (see __rb_reserve_next() to see where this happens)
850 * What the above shows is that the reader just swapped out
851 * the reader page with a page in the buffer, but before it
852 * could make the new header point back to the new page added
853 * it was preempted by a writer. The writer moved forward onto
854 * the new page added by the reader and is about to move forward
857 * You can see, it is legitimate for the previous pointer of
858 * the head (or any page) not to point back to itself. But only
862 #define RB_PAGE_NORMAL 0UL
863 #define RB_PAGE_HEAD 1UL
864 #define RB_PAGE_UPDATE 2UL
867 #define RB_FLAG_MASK 3UL
869 /* PAGE_MOVED is not part of the mask */
870 #define RB_PAGE_MOVED 4UL
873 * rb_list_head - remove any bit
875 static struct list_head *rb_list_head(struct list_head *list)
877 unsigned long val = (unsigned long)list;
879 return (struct list_head *)(val & ~RB_FLAG_MASK);
883 * rb_is_head_page - test if the given page is the head page
885 * Because the reader may move the head_page pointer, we can
886 * not trust what the head page is (it may be pointing to
887 * the reader page). But if the next page is a header page,
888 * its flags will be non zero.
891 rb_is_head_page(struct ring_buffer_per_cpu *cpu_buffer,
892 struct buffer_page *page, struct list_head *list)
896 val = (unsigned long)list->next;
898 if ((val & ~RB_FLAG_MASK) != (unsigned long)&page->list)
899 return RB_PAGE_MOVED;
901 return val & RB_FLAG_MASK;
907 * The unique thing about the reader page, is that, if the
908 * writer is ever on it, the previous pointer never points
909 * back to the reader page.
911 static bool rb_is_reader_page(struct buffer_page *page)
913 struct list_head *list = page->list.prev;
915 return rb_list_head(list->next) != &page->list;
919 * rb_set_list_to_head - set a list_head to be pointing to head.
921 static void rb_set_list_to_head(struct ring_buffer_per_cpu *cpu_buffer,
922 struct list_head *list)
926 ptr = (unsigned long *)&list->next;
927 *ptr |= RB_PAGE_HEAD;
928 *ptr &= ~RB_PAGE_UPDATE;
932 * rb_head_page_activate - sets up head page
934 static void rb_head_page_activate(struct ring_buffer_per_cpu *cpu_buffer)
936 struct buffer_page *head;
938 head = cpu_buffer->head_page;
943 * Set the previous list pointer to have the HEAD flag.
945 rb_set_list_to_head(cpu_buffer, head->list.prev);
948 static void rb_list_head_clear(struct list_head *list)
950 unsigned long *ptr = (unsigned long *)&list->next;
952 *ptr &= ~RB_FLAG_MASK;
956 * rb_head_page_deactivate - clears head page ptr (for free list)
959 rb_head_page_deactivate(struct ring_buffer_per_cpu *cpu_buffer)
961 struct list_head *hd;
963 /* Go through the whole list and clear any pointers found. */
964 rb_list_head_clear(cpu_buffer->pages);
966 list_for_each(hd, cpu_buffer->pages)
967 rb_list_head_clear(hd);
970 static int rb_head_page_set(struct ring_buffer_per_cpu *cpu_buffer,
971 struct buffer_page *head,
972 struct buffer_page *prev,
973 int old_flag, int new_flag)
975 struct list_head *list;
976 unsigned long val = (unsigned long)&head->list;
981 val &= ~RB_FLAG_MASK;
983 ret = cmpxchg((unsigned long *)&list->next,
984 val | old_flag, val | new_flag);
986 /* check if the reader took the page */
987 if ((ret & ~RB_FLAG_MASK) != val)
988 return RB_PAGE_MOVED;
990 return ret & RB_FLAG_MASK;
993 static int rb_head_page_set_update(struct ring_buffer_per_cpu *cpu_buffer,
994 struct buffer_page *head,
995 struct buffer_page *prev,
998 return rb_head_page_set(cpu_buffer, head, prev,
999 old_flag, RB_PAGE_UPDATE);
1002 static int rb_head_page_set_head(struct ring_buffer_per_cpu *cpu_buffer,
1003 struct buffer_page *head,
1004 struct buffer_page *prev,
1007 return rb_head_page_set(cpu_buffer, head, prev,
1008 old_flag, RB_PAGE_HEAD);
1011 static int rb_head_page_set_normal(struct ring_buffer_per_cpu *cpu_buffer,
1012 struct buffer_page *head,
1013 struct buffer_page *prev,
1016 return rb_head_page_set(cpu_buffer, head, prev,
1017 old_flag, RB_PAGE_NORMAL);
1020 static inline void rb_inc_page(struct ring_buffer_per_cpu *cpu_buffer,
1021 struct buffer_page **bpage)
1023 struct list_head *p = rb_list_head((*bpage)->list.next);
1025 *bpage = list_entry(p, struct buffer_page, list);
1028 static struct buffer_page *
1029 rb_set_head_page(struct ring_buffer_per_cpu *cpu_buffer)
1031 struct buffer_page *head;
1032 struct buffer_page *page;
1033 struct list_head *list;
1036 if (RB_WARN_ON(cpu_buffer, !cpu_buffer->head_page))
1040 list = cpu_buffer->pages;
1041 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev->next) != list))
1044 page = head = cpu_buffer->head_page;
1046 * It is possible that the writer moves the header behind
1047 * where we started, and we miss in one loop.
1048 * A second loop should grab the header, but we'll do
1049 * three loops just because I'm paranoid.
1051 for (i = 0; i < 3; i++) {
1053 if (rb_is_head_page(cpu_buffer, page, page->list.prev)) {
1054 cpu_buffer->head_page = page;
1057 rb_inc_page(cpu_buffer, &page);
1058 } while (page != head);
1061 RB_WARN_ON(cpu_buffer, 1);
1066 static int rb_head_page_replace(struct buffer_page *old,
1067 struct buffer_page *new)
1069 unsigned long *ptr = (unsigned long *)&old->list.prev->next;
1073 val = *ptr & ~RB_FLAG_MASK;
1074 val |= RB_PAGE_HEAD;
1076 ret = cmpxchg(ptr, val, (unsigned long)&new->list);
1082 * rb_tail_page_update - move the tail page forward
1084 static void rb_tail_page_update(struct ring_buffer_per_cpu *cpu_buffer,
1085 struct buffer_page *tail_page,
1086 struct buffer_page *next_page)
1088 unsigned long old_entries;
1089 unsigned long old_write;
1092 * The tail page now needs to be moved forward.
1094 * We need to reset the tail page, but without messing
1095 * with possible erasing of data brought in by interrupts
1096 * that have moved the tail page and are currently on it.
1098 * We add a counter to the write field to denote this.
1100 old_write = local_add_return(RB_WRITE_INTCNT, &next_page->write);
1101 old_entries = local_add_return(RB_WRITE_INTCNT, &next_page->entries);
1103 local_inc(&cpu_buffer->pages_touched);
1105 * Just make sure we have seen our old_write and synchronize
1106 * with any interrupts that come in.
1111 * If the tail page is still the same as what we think
1112 * it is, then it is up to us to update the tail
1115 if (tail_page == READ_ONCE(cpu_buffer->tail_page)) {
1116 /* Zero the write counter */
1117 unsigned long val = old_write & ~RB_WRITE_MASK;
1118 unsigned long eval = old_entries & ~RB_WRITE_MASK;
1121 * This will only succeed if an interrupt did
1122 * not come in and change it. In which case, we
1123 * do not want to modify it.
1125 * We add (void) to let the compiler know that we do not care
1126 * about the return value of these functions. We use the
1127 * cmpxchg to only update if an interrupt did not already
1128 * do it for us. If the cmpxchg fails, we don't care.
1130 (void)local_cmpxchg(&next_page->write, old_write, val);
1131 (void)local_cmpxchg(&next_page->entries, old_entries, eval);
1134 * No need to worry about races with clearing out the commit.
1135 * it only can increment when a commit takes place. But that
1136 * only happens in the outer most nested commit.
1138 local_set(&next_page->page->commit, 0);
1140 /* Again, either we update tail_page or an interrupt does */
1141 (void)cmpxchg(&cpu_buffer->tail_page, tail_page, next_page);
1145 static int rb_check_bpage(struct ring_buffer_per_cpu *cpu_buffer,
1146 struct buffer_page *bpage)
1148 unsigned long val = (unsigned long)bpage;
1150 if (RB_WARN_ON(cpu_buffer, val & RB_FLAG_MASK))
1157 * rb_check_list - make sure a pointer to a list has the last bits zero
1159 static int rb_check_list(struct ring_buffer_per_cpu *cpu_buffer,
1160 struct list_head *list)
1162 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->prev) != list->prev))
1164 if (RB_WARN_ON(cpu_buffer, rb_list_head(list->next) != list->next))
1170 * rb_check_pages - integrity check of buffer pages
1171 * @cpu_buffer: CPU buffer with pages to test
1173 * As a safety measure we check to make sure the data pages have not
1176 static int rb_check_pages(struct ring_buffer_per_cpu *cpu_buffer)
1178 struct list_head *head = cpu_buffer->pages;
1179 struct buffer_page *bpage, *tmp;
1181 /* Reset the head page if it exists */
1182 if (cpu_buffer->head_page)
1183 rb_set_head_page(cpu_buffer);
1185 rb_head_page_deactivate(cpu_buffer);
1187 if (RB_WARN_ON(cpu_buffer, head->next->prev != head))
1189 if (RB_WARN_ON(cpu_buffer, head->prev->next != head))
1192 if (rb_check_list(cpu_buffer, head))
1195 list_for_each_entry_safe(bpage, tmp, head, list) {
1196 if (RB_WARN_ON(cpu_buffer,
1197 bpage->list.next->prev != &bpage->list))
1199 if (RB_WARN_ON(cpu_buffer,
1200 bpage->list.prev->next != &bpage->list))
1202 if (rb_check_list(cpu_buffer, &bpage->list))
1206 rb_head_page_activate(cpu_buffer);
1211 static int __rb_allocate_pages(long nr_pages, struct list_head *pages, int cpu)
1213 struct buffer_page *bpage, *tmp;
1214 bool user_thread = current->mm != NULL;
1219 * Check if the available memory is there first.
1220 * Note, si_mem_available() only gives us a rough estimate of available
1221 * memory. It may not be accurate. But we don't care, we just want
1222 * to prevent doing any allocation when it is obvious that it is
1223 * not going to succeed.
1225 i = si_mem_available();
1230 * __GFP_RETRY_MAYFAIL flag makes sure that the allocation fails
1231 * gracefully without invoking oom-killer and the system is not
1234 mflags = GFP_KERNEL | __GFP_RETRY_MAYFAIL;
1237 * If a user thread allocates too much, and si_mem_available()
1238 * reports there's enough memory, even though there is not.
1239 * Make sure the OOM killer kills this thread. This can happen
1240 * even with RETRY_MAYFAIL because another task may be doing
1241 * an allocation after this task has taken all memory.
1242 * This is the task the OOM killer needs to take out during this
1243 * loop, even if it was triggered by an allocation somewhere else.
1246 set_current_oom_origin();
1247 for (i = 0; i < nr_pages; i++) {
1250 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
1251 mflags, cpu_to_node(cpu));
1255 list_add(&bpage->list, pages);
1257 page = alloc_pages_node(cpu_to_node(cpu), mflags, 0);
1260 bpage->page = page_address(page);
1261 rb_init_page(bpage->page);
1263 if (user_thread && fatal_signal_pending(current))
1267 clear_current_oom_origin();
1272 list_for_each_entry_safe(bpage, tmp, pages, list) {
1273 list_del_init(&bpage->list);
1274 free_buffer_page(bpage);
1277 clear_current_oom_origin();
1282 static int rb_allocate_pages(struct ring_buffer_per_cpu *cpu_buffer,
1283 unsigned long nr_pages)
1289 if (__rb_allocate_pages(nr_pages, &pages, cpu_buffer->cpu))
1293 * The ring buffer page list is a circular list that does not
1294 * start and end with a list head. All page list items point to
1297 cpu_buffer->pages = pages.next;
1300 cpu_buffer->nr_pages = nr_pages;
1302 rb_check_pages(cpu_buffer);
1307 static struct ring_buffer_per_cpu *
1308 rb_allocate_cpu_buffer(struct ring_buffer *buffer, long nr_pages, int cpu)
1310 struct ring_buffer_per_cpu *cpu_buffer;
1311 struct buffer_page *bpage;
1315 cpu_buffer = kzalloc_node(ALIGN(sizeof(*cpu_buffer), cache_line_size()),
1316 GFP_KERNEL, cpu_to_node(cpu));
1320 cpu_buffer->cpu = cpu;
1321 cpu_buffer->buffer = buffer;
1322 raw_spin_lock_init(&cpu_buffer->reader_lock);
1323 lockdep_set_class(&cpu_buffer->reader_lock, buffer->reader_lock_key);
1324 cpu_buffer->lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
1325 INIT_WORK(&cpu_buffer->update_pages_work, update_pages_handler);
1326 init_completion(&cpu_buffer->update_done);
1327 init_irq_work(&cpu_buffer->irq_work.work, rb_wake_up_waiters);
1328 init_waitqueue_head(&cpu_buffer->irq_work.waiters);
1329 init_waitqueue_head(&cpu_buffer->irq_work.full_waiters);
1331 bpage = kzalloc_node(ALIGN(sizeof(*bpage), cache_line_size()),
1332 GFP_KERNEL, cpu_to_node(cpu));
1334 goto fail_free_buffer;
1336 rb_check_bpage(cpu_buffer, bpage);
1338 cpu_buffer->reader_page = bpage;
1339 page = alloc_pages_node(cpu_to_node(cpu), GFP_KERNEL, 0);
1341 goto fail_free_reader;
1342 bpage->page = page_address(page);
1343 rb_init_page(bpage->page);
1345 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
1346 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1348 ret = rb_allocate_pages(cpu_buffer, nr_pages);
1350 goto fail_free_reader;
1352 cpu_buffer->head_page
1353 = list_entry(cpu_buffer->pages, struct buffer_page, list);
1354 cpu_buffer->tail_page = cpu_buffer->commit_page = cpu_buffer->head_page;
1356 rb_head_page_activate(cpu_buffer);
1361 free_buffer_page(cpu_buffer->reader_page);
1368 static void rb_free_cpu_buffer(struct ring_buffer_per_cpu *cpu_buffer)
1370 struct list_head *head = cpu_buffer->pages;
1371 struct buffer_page *bpage, *tmp;
1373 free_buffer_page(cpu_buffer->reader_page);
1375 rb_head_page_deactivate(cpu_buffer);
1378 list_for_each_entry_safe(bpage, tmp, head, list) {
1379 list_del_init(&bpage->list);
1380 free_buffer_page(bpage);
1382 bpage = list_entry(head, struct buffer_page, list);
1383 free_buffer_page(bpage);
1390 * __ring_buffer_alloc - allocate a new ring_buffer
1391 * @size: the size in bytes per cpu that is needed.
1392 * @flags: attributes to set for the ring buffer.
1394 * Currently the only flag that is available is the RB_FL_OVERWRITE
1395 * flag. This flag means that the buffer will overwrite old data
1396 * when the buffer wraps. If this flag is not set, the buffer will
1397 * drop data when the tail hits the head.
1399 struct ring_buffer *__ring_buffer_alloc(unsigned long size, unsigned flags,
1400 struct lock_class_key *key)
1402 struct ring_buffer *buffer;
1408 /* keep it in its own cache line */
1409 buffer = kzalloc(ALIGN(sizeof(*buffer), cache_line_size()),
1414 if (!zalloc_cpumask_var(&buffer->cpumask, GFP_KERNEL))
1415 goto fail_free_buffer;
1417 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1418 buffer->flags = flags;
1419 buffer->clock = trace_clock_local;
1420 buffer->reader_lock_key = key;
1422 init_irq_work(&buffer->irq_work.work, rb_wake_up_waiters);
1423 init_waitqueue_head(&buffer->irq_work.waiters);
1425 /* need at least two pages */
1429 buffer->cpus = nr_cpu_ids;
1431 bsize = sizeof(void *) * nr_cpu_ids;
1432 buffer->buffers = kzalloc(ALIGN(bsize, cache_line_size()),
1434 if (!buffer->buffers)
1435 goto fail_free_cpumask;
1437 cpu = raw_smp_processor_id();
1438 cpumask_set_cpu(cpu, buffer->cpumask);
1439 buffer->buffers[cpu] = rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
1440 if (!buffer->buffers[cpu])
1441 goto fail_free_buffers;
1443 ret = cpuhp_state_add_instance(CPUHP_TRACE_RB_PREPARE, &buffer->node);
1445 goto fail_free_buffers;
1447 mutex_init(&buffer->mutex);
1452 for_each_buffer_cpu(buffer, cpu) {
1453 if (buffer->buffers[cpu])
1454 rb_free_cpu_buffer(buffer->buffers[cpu]);
1456 kfree(buffer->buffers);
1459 free_cpumask_var(buffer->cpumask);
1465 EXPORT_SYMBOL_GPL(__ring_buffer_alloc);
1468 * ring_buffer_free - free a ring buffer.
1469 * @buffer: the buffer to free.
1472 ring_buffer_free(struct ring_buffer *buffer)
1476 cpuhp_state_remove_instance(CPUHP_TRACE_RB_PREPARE, &buffer->node);
1478 for_each_buffer_cpu(buffer, cpu)
1479 rb_free_cpu_buffer(buffer->buffers[cpu]);
1481 kfree(buffer->buffers);
1482 free_cpumask_var(buffer->cpumask);
1486 EXPORT_SYMBOL_GPL(ring_buffer_free);
1488 void ring_buffer_set_clock(struct ring_buffer *buffer,
1491 buffer->clock = clock;
1494 void ring_buffer_set_time_stamp_abs(struct ring_buffer *buffer, bool abs)
1496 buffer->time_stamp_abs = abs;
1499 bool ring_buffer_time_stamp_abs(struct ring_buffer *buffer)
1501 return buffer->time_stamp_abs;
1504 static void rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer);
1506 static inline unsigned long rb_page_entries(struct buffer_page *bpage)
1508 return local_read(&bpage->entries) & RB_WRITE_MASK;
1511 static inline unsigned long rb_page_write(struct buffer_page *bpage)
1513 return local_read(&bpage->write) & RB_WRITE_MASK;
1517 rb_remove_pages(struct ring_buffer_per_cpu *cpu_buffer, unsigned long nr_pages)
1519 struct list_head *tail_page, *to_remove, *next_page;
1520 struct buffer_page *to_remove_page, *tmp_iter_page;
1521 struct buffer_page *last_page, *first_page;
1522 unsigned long nr_removed;
1523 unsigned long head_bit;
1528 raw_spin_lock_irq(&cpu_buffer->reader_lock);
1529 atomic_inc(&cpu_buffer->record_disabled);
1531 * We don't race with the readers since we have acquired the reader
1532 * lock. We also don't race with writers after disabling recording.
1533 * This makes it easy to figure out the first and the last page to be
1534 * removed from the list. We unlink all the pages in between including
1535 * the first and last pages. This is done in a busy loop so that we
1536 * lose the least number of traces.
1537 * The pages are freed after we restart recording and unlock readers.
1539 tail_page = &cpu_buffer->tail_page->list;
1542 * tail page might be on reader page, we remove the next page
1543 * from the ring buffer
1545 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
1546 tail_page = rb_list_head(tail_page->next);
1547 to_remove = tail_page;
1549 /* start of pages to remove */
1550 first_page = list_entry(rb_list_head(to_remove->next),
1551 struct buffer_page, list);
1553 for (nr_removed = 0; nr_removed < nr_pages; nr_removed++) {
1554 to_remove = rb_list_head(to_remove)->next;
1555 head_bit |= (unsigned long)to_remove & RB_PAGE_HEAD;
1558 next_page = rb_list_head(to_remove)->next;
1561 * Now we remove all pages between tail_page and next_page.
1562 * Make sure that we have head_bit value preserved for the
1565 tail_page->next = (struct list_head *)((unsigned long)next_page |
1567 next_page = rb_list_head(next_page);
1568 next_page->prev = tail_page;
1570 /* make sure pages points to a valid page in the ring buffer */
1571 cpu_buffer->pages = next_page;
1573 /* update head page */
1575 cpu_buffer->head_page = list_entry(next_page,
1576 struct buffer_page, list);
1579 * change read pointer to make sure any read iterators reset
1582 cpu_buffer->read = 0;
1584 /* pages are removed, resume tracing and then free the pages */
1585 atomic_dec(&cpu_buffer->record_disabled);
1586 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
1588 RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages));
1590 /* last buffer page to remove */
1591 last_page = list_entry(rb_list_head(to_remove), struct buffer_page,
1593 tmp_iter_page = first_page;
1598 to_remove_page = tmp_iter_page;
1599 rb_inc_page(cpu_buffer, &tmp_iter_page);
1601 /* update the counters */
1602 page_entries = rb_page_entries(to_remove_page);
1605 * If something was added to this page, it was full
1606 * since it is not the tail page. So we deduct the
1607 * bytes consumed in ring buffer from here.
1608 * Increment overrun to account for the lost events.
1610 local_add(page_entries, &cpu_buffer->overrun);
1611 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
1615 * We have already removed references to this list item, just
1616 * free up the buffer_page and its page
1618 free_buffer_page(to_remove_page);
1621 } while (to_remove_page != last_page);
1623 RB_WARN_ON(cpu_buffer, nr_removed);
1625 return nr_removed == 0;
1629 rb_insert_pages(struct ring_buffer_per_cpu *cpu_buffer)
1631 struct list_head *pages = &cpu_buffer->new_pages;
1632 int retries, success;
1634 raw_spin_lock_irq(&cpu_buffer->reader_lock);
1636 * We are holding the reader lock, so the reader page won't be swapped
1637 * in the ring buffer. Now we are racing with the writer trying to
1638 * move head page and the tail page.
1639 * We are going to adapt the reader page update process where:
1640 * 1. We first splice the start and end of list of new pages between
1641 * the head page and its previous page.
1642 * 2. We cmpxchg the prev_page->next to point from head page to the
1643 * start of new pages list.
1644 * 3. Finally, we update the head->prev to the end of new list.
1646 * We will try this process 10 times, to make sure that we don't keep
1652 struct list_head *head_page, *prev_page, *r;
1653 struct list_head *last_page, *first_page;
1654 struct list_head *head_page_with_bit;
1656 head_page = &rb_set_head_page(cpu_buffer)->list;
1659 prev_page = head_page->prev;
1661 first_page = pages->next;
1662 last_page = pages->prev;
1664 head_page_with_bit = (struct list_head *)
1665 ((unsigned long)head_page | RB_PAGE_HEAD);
1667 last_page->next = head_page_with_bit;
1668 first_page->prev = prev_page;
1670 r = cmpxchg(&prev_page->next, head_page_with_bit, first_page);
1672 if (r == head_page_with_bit) {
1674 * yay, we replaced the page pointer to our new list,
1675 * now, we just have to update to head page's prev
1676 * pointer to point to end of list
1678 head_page->prev = last_page;
1685 INIT_LIST_HEAD(pages);
1687 * If we weren't successful in adding in new pages, warn and stop
1690 RB_WARN_ON(cpu_buffer, !success);
1691 raw_spin_unlock_irq(&cpu_buffer->reader_lock);
1693 /* free pages if they weren't inserted */
1695 struct buffer_page *bpage, *tmp;
1696 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1698 list_del_init(&bpage->list);
1699 free_buffer_page(bpage);
1705 static void rb_update_pages(struct ring_buffer_per_cpu *cpu_buffer)
1709 if (cpu_buffer->nr_pages_to_update > 0)
1710 success = rb_insert_pages(cpu_buffer);
1712 success = rb_remove_pages(cpu_buffer,
1713 -cpu_buffer->nr_pages_to_update);
1716 cpu_buffer->nr_pages += cpu_buffer->nr_pages_to_update;
1719 static void update_pages_handler(struct work_struct *work)
1721 struct ring_buffer_per_cpu *cpu_buffer = container_of(work,
1722 struct ring_buffer_per_cpu, update_pages_work);
1723 rb_update_pages(cpu_buffer);
1724 complete(&cpu_buffer->update_done);
1728 * ring_buffer_resize - resize the ring buffer
1729 * @buffer: the buffer to resize.
1730 * @size: the new size.
1731 * @cpu_id: the cpu buffer to resize
1733 * Minimum size is 2 * BUF_PAGE_SIZE.
1735 * Returns 0 on success and < 0 on failure.
1737 int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size,
1740 struct ring_buffer_per_cpu *cpu_buffer;
1741 unsigned long nr_pages;
1745 * Always succeed at resizing a non-existent buffer:
1750 /* Make sure the requested buffer exists */
1751 if (cpu_id != RING_BUFFER_ALL_CPUS &&
1752 !cpumask_test_cpu(cpu_id, buffer->cpumask))
1755 nr_pages = DIV_ROUND_UP(size, BUF_PAGE_SIZE);
1757 /* we need a minimum of two pages */
1761 size = nr_pages * BUF_PAGE_SIZE;
1764 * Don't succeed if resizing is disabled, as a reader might be
1765 * manipulating the ring buffer and is expecting a sane state while
1768 if (atomic_read(&buffer->resize_disabled))
1771 /* prevent another thread from changing buffer sizes */
1772 mutex_lock(&buffer->mutex);
1774 if (cpu_id == RING_BUFFER_ALL_CPUS) {
1775 /* calculate the pages to update */
1776 for_each_buffer_cpu(buffer, cpu) {
1777 cpu_buffer = buffer->buffers[cpu];
1779 cpu_buffer->nr_pages_to_update = nr_pages -
1780 cpu_buffer->nr_pages;
1782 * nothing more to do for removing pages or no update
1784 if (cpu_buffer->nr_pages_to_update <= 0)
1787 * to add pages, make sure all new pages can be
1788 * allocated without receiving ENOMEM
1790 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1791 if (__rb_allocate_pages(cpu_buffer->nr_pages_to_update,
1792 &cpu_buffer->new_pages, cpu)) {
1793 /* not enough memory for new pages */
1801 * Fire off all the required work handlers
1802 * We can't schedule on offline CPUs, but it's not necessary
1803 * since we can change their buffer sizes without any race.
1805 for_each_buffer_cpu(buffer, cpu) {
1806 cpu_buffer = buffer->buffers[cpu];
1807 if (!cpu_buffer->nr_pages_to_update)
1810 /* Can't run something on an offline CPU. */
1811 if (!cpu_online(cpu)) {
1812 rb_update_pages(cpu_buffer);
1813 cpu_buffer->nr_pages_to_update = 0;
1815 schedule_work_on(cpu,
1816 &cpu_buffer->update_pages_work);
1820 /* wait for all the updates to complete */
1821 for_each_buffer_cpu(buffer, cpu) {
1822 cpu_buffer = buffer->buffers[cpu];
1823 if (!cpu_buffer->nr_pages_to_update)
1826 if (cpu_online(cpu))
1827 wait_for_completion(&cpu_buffer->update_done);
1828 cpu_buffer->nr_pages_to_update = 0;
1833 /* Make sure this CPU has been initialized */
1834 if (!cpumask_test_cpu(cpu_id, buffer->cpumask))
1837 cpu_buffer = buffer->buffers[cpu_id];
1839 if (nr_pages == cpu_buffer->nr_pages)
1842 cpu_buffer->nr_pages_to_update = nr_pages -
1843 cpu_buffer->nr_pages;
1845 INIT_LIST_HEAD(&cpu_buffer->new_pages);
1846 if (cpu_buffer->nr_pages_to_update > 0 &&
1847 __rb_allocate_pages(cpu_buffer->nr_pages_to_update,
1848 &cpu_buffer->new_pages, cpu_id)) {
1855 /* Can't run something on an offline CPU. */
1856 if (!cpu_online(cpu_id))
1857 rb_update_pages(cpu_buffer);
1859 schedule_work_on(cpu_id,
1860 &cpu_buffer->update_pages_work);
1861 wait_for_completion(&cpu_buffer->update_done);
1864 cpu_buffer->nr_pages_to_update = 0;
1870 * The ring buffer resize can happen with the ring buffer
1871 * enabled, so that the update disturbs the tracing as little
1872 * as possible. But if the buffer is disabled, we do not need
1873 * to worry about that, and we can take the time to verify
1874 * that the buffer is not corrupt.
1876 if (atomic_read(&buffer->record_disabled)) {
1877 atomic_inc(&buffer->record_disabled);
1879 * Even though the buffer was disabled, we must make sure
1880 * that it is truly disabled before calling rb_check_pages.
1881 * There could have been a race between checking
1882 * record_disable and incrementing it.
1885 for_each_buffer_cpu(buffer, cpu) {
1886 cpu_buffer = buffer->buffers[cpu];
1887 rb_check_pages(cpu_buffer);
1889 atomic_dec(&buffer->record_disabled);
1892 mutex_unlock(&buffer->mutex);
1896 for_each_buffer_cpu(buffer, cpu) {
1897 struct buffer_page *bpage, *tmp;
1899 cpu_buffer = buffer->buffers[cpu];
1900 cpu_buffer->nr_pages_to_update = 0;
1902 if (list_empty(&cpu_buffer->new_pages))
1905 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages,
1907 list_del_init(&bpage->list);
1908 free_buffer_page(bpage);
1911 mutex_unlock(&buffer->mutex);
1914 EXPORT_SYMBOL_GPL(ring_buffer_resize);
1916 void ring_buffer_change_overwrite(struct ring_buffer *buffer, int val)
1918 mutex_lock(&buffer->mutex);
1920 buffer->flags |= RB_FL_OVERWRITE;
1922 buffer->flags &= ~RB_FL_OVERWRITE;
1923 mutex_unlock(&buffer->mutex);
1925 EXPORT_SYMBOL_GPL(ring_buffer_change_overwrite);
1927 static __always_inline void *__rb_page_index(struct buffer_page *bpage, unsigned index)
1929 return bpage->page->data + index;
1932 static __always_inline struct ring_buffer_event *
1933 rb_reader_event(struct ring_buffer_per_cpu *cpu_buffer)
1935 return __rb_page_index(cpu_buffer->reader_page,
1936 cpu_buffer->reader_page->read);
1939 static __always_inline struct ring_buffer_event *
1940 rb_iter_head_event(struct ring_buffer_iter *iter)
1942 return __rb_page_index(iter->head_page, iter->head);
1945 static __always_inline unsigned rb_page_commit(struct buffer_page *bpage)
1947 return local_read(&bpage->page->commit);
1950 /* Size is determined by what has been committed */
1951 static __always_inline unsigned rb_page_size(struct buffer_page *bpage)
1953 return rb_page_commit(bpage);
1956 static __always_inline unsigned
1957 rb_commit_index(struct ring_buffer_per_cpu *cpu_buffer)
1959 return rb_page_commit(cpu_buffer->commit_page);
1962 static __always_inline unsigned
1963 rb_event_index(struct ring_buffer_event *event)
1965 unsigned long addr = (unsigned long)event;
1967 return (addr & ~PAGE_MASK) - BUF_PAGE_HDR_SIZE;
1970 static void rb_inc_iter(struct ring_buffer_iter *iter)
1972 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
1975 * The iterator could be on the reader page (it starts there).
1976 * But the head could have moved, since the reader was
1977 * found. Check for this case and assign the iterator
1978 * to the head page instead of next.
1980 if (iter->head_page == cpu_buffer->reader_page)
1981 iter->head_page = rb_set_head_page(cpu_buffer);
1983 rb_inc_page(cpu_buffer, &iter->head_page);
1985 iter->read_stamp = iter->head_page->page->time_stamp;
1990 * rb_handle_head_page - writer hit the head page
1992 * Returns: +1 to retry page
1997 rb_handle_head_page(struct ring_buffer_per_cpu *cpu_buffer,
1998 struct buffer_page *tail_page,
1999 struct buffer_page *next_page)
2001 struct buffer_page *new_head;
2006 entries = rb_page_entries(next_page);
2009 * The hard part is here. We need to move the head
2010 * forward, and protect against both readers on
2011 * other CPUs and writers coming in via interrupts.
2013 type = rb_head_page_set_update(cpu_buffer, next_page, tail_page,
2017 * type can be one of four:
2018 * NORMAL - an interrupt already moved it for us
2019 * HEAD - we are the first to get here.
2020 * UPDATE - we are the interrupt interrupting
2022 * MOVED - a reader on another CPU moved the next
2023 * pointer to its reader page. Give up
2030 * We changed the head to UPDATE, thus
2031 * it is our responsibility to update
2034 local_add(entries, &cpu_buffer->overrun);
2035 local_sub(BUF_PAGE_SIZE, &cpu_buffer->entries_bytes);
2038 * The entries will be zeroed out when we move the
2042 /* still more to do */
2045 case RB_PAGE_UPDATE:
2047 * This is an interrupt that interrupt the
2048 * previous update. Still more to do.
2051 case RB_PAGE_NORMAL:
2053 * An interrupt came in before the update
2054 * and processed this for us.
2055 * Nothing left to do.
2060 * The reader is on another CPU and just did
2061 * a swap with our next_page.
2066 RB_WARN_ON(cpu_buffer, 1); /* WTF??? */
2071 * Now that we are here, the old head pointer is
2072 * set to UPDATE. This will keep the reader from
2073 * swapping the head page with the reader page.
2074 * The reader (on another CPU) will spin till
2077 * We just need to protect against interrupts
2078 * doing the job. We will set the next pointer
2079 * to HEAD. After that, we set the old pointer
2080 * to NORMAL, but only if it was HEAD before.
2081 * otherwise we are an interrupt, and only
2082 * want the outer most commit to reset it.
2084 new_head = next_page;
2085 rb_inc_page(cpu_buffer, &new_head);
2087 ret = rb_head_page_set_head(cpu_buffer, new_head, next_page,
2091 * Valid returns are:
2092 * HEAD - an interrupt came in and already set it.
2093 * NORMAL - One of two things:
2094 * 1) We really set it.
2095 * 2) A bunch of interrupts came in and moved
2096 * the page forward again.
2100 case RB_PAGE_NORMAL:
2104 RB_WARN_ON(cpu_buffer, 1);
2109 * It is possible that an interrupt came in,
2110 * set the head up, then more interrupts came in
2111 * and moved it again. When we get back here,
2112 * the page would have been set to NORMAL but we
2113 * just set it back to HEAD.
2115 * How do you detect this? Well, if that happened
2116 * the tail page would have moved.
2118 if (ret == RB_PAGE_NORMAL) {
2119 struct buffer_page *buffer_tail_page;
2121 buffer_tail_page = READ_ONCE(cpu_buffer->tail_page);
2123 * If the tail had moved passed next, then we need
2124 * to reset the pointer.
2126 if (buffer_tail_page != tail_page &&
2127 buffer_tail_page != next_page)
2128 rb_head_page_set_normal(cpu_buffer, new_head,
2134 * If this was the outer most commit (the one that
2135 * changed the original pointer from HEAD to UPDATE),
2136 * then it is up to us to reset it to NORMAL.
2138 if (type == RB_PAGE_HEAD) {
2139 ret = rb_head_page_set_normal(cpu_buffer, next_page,
2142 if (RB_WARN_ON(cpu_buffer,
2143 ret != RB_PAGE_UPDATE))
2151 rb_reset_tail(struct ring_buffer_per_cpu *cpu_buffer,
2152 unsigned long tail, struct rb_event_info *info)
2154 struct buffer_page *tail_page = info->tail_page;
2155 struct ring_buffer_event *event;
2156 unsigned long length = info->length;
2159 * Only the event that crossed the page boundary
2160 * must fill the old tail_page with padding.
2162 if (tail >= BUF_PAGE_SIZE) {
2164 * If the page was filled, then we still need
2165 * to update the real_end. Reset it to zero
2166 * and the reader will ignore it.
2168 if (tail == BUF_PAGE_SIZE)
2169 tail_page->real_end = 0;
2171 local_sub(length, &tail_page->write);
2175 event = __rb_page_index(tail_page, tail);
2177 /* account for padding bytes */
2178 local_add(BUF_PAGE_SIZE - tail, &cpu_buffer->entries_bytes);
2181 * Save the original length to the meta data.
2182 * This will be used by the reader to add lost event
2185 tail_page->real_end = tail;
2188 * If this event is bigger than the minimum size, then
2189 * we need to be careful that we don't subtract the
2190 * write counter enough to allow another writer to slip
2192 * We put in a discarded commit instead, to make sure
2193 * that this space is not used again.
2195 * If we are less than the minimum size, we don't need to
2198 if (tail > (BUF_PAGE_SIZE - RB_EVNT_MIN_SIZE)) {
2199 /* No room for any events */
2201 /* Mark the rest of the page with padding */
2202 rb_event_set_padding(event);
2204 /* Set the write back to the previous setting */
2205 local_sub(length, &tail_page->write);
2209 /* Put in a discarded event */
2210 event->array[0] = (BUF_PAGE_SIZE - tail) - RB_EVNT_HDR_SIZE;
2211 event->type_len = RINGBUF_TYPE_PADDING;
2212 /* time delta must be non zero */
2213 event->time_delta = 1;
2215 /* Set write to end of buffer */
2216 length = (tail + length) - BUF_PAGE_SIZE;
2217 local_sub(length, &tail_page->write);
2220 static inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer);
2223 * This is the slow path, force gcc not to inline it.
2225 static noinline struct ring_buffer_event *
2226 rb_move_tail(struct ring_buffer_per_cpu *cpu_buffer,
2227 unsigned long tail, struct rb_event_info *info)
2229 struct buffer_page *tail_page = info->tail_page;
2230 struct buffer_page *commit_page = cpu_buffer->commit_page;
2231 struct ring_buffer *buffer = cpu_buffer->buffer;
2232 struct buffer_page *next_page;
2235 next_page = tail_page;
2237 rb_inc_page(cpu_buffer, &next_page);
2240 * If for some reason, we had an interrupt storm that made
2241 * it all the way around the buffer, bail, and warn
2244 if (unlikely(next_page == commit_page)) {
2245 local_inc(&cpu_buffer->commit_overrun);
2250 * This is where the fun begins!
2252 * We are fighting against races between a reader that
2253 * could be on another CPU trying to swap its reader
2254 * page with the buffer head.
2256 * We are also fighting against interrupts coming in and
2257 * moving the head or tail on us as well.
2259 * If the next page is the head page then we have filled
2260 * the buffer, unless the commit page is still on the
2263 if (rb_is_head_page(cpu_buffer, next_page, &tail_page->list)) {
2266 * If the commit is not on the reader page, then
2267 * move the header page.
2269 if (!rb_is_reader_page(cpu_buffer->commit_page)) {
2271 * If we are not in overwrite mode,
2272 * this is easy, just stop here.
2274 if (!(buffer->flags & RB_FL_OVERWRITE)) {
2275 local_inc(&cpu_buffer->dropped_events);
2279 ret = rb_handle_head_page(cpu_buffer,
2288 * We need to be careful here too. The
2289 * commit page could still be on the reader
2290 * page. We could have a small buffer, and
2291 * have filled up the buffer with events
2292 * from interrupts and such, and wrapped.
2294 * Note, if the tail page is also the on the
2295 * reader_page, we let it move out.
2297 if (unlikely((cpu_buffer->commit_page !=
2298 cpu_buffer->tail_page) &&
2299 (cpu_buffer->commit_page ==
2300 cpu_buffer->reader_page))) {
2301 local_inc(&cpu_buffer->commit_overrun);
2307 rb_tail_page_update(cpu_buffer, tail_page, next_page);
2311 rb_reset_tail(cpu_buffer, tail, info);
2313 /* Commit what we have for now. */
2314 rb_end_commit(cpu_buffer);
2315 /* rb_end_commit() decs committing */
2316 local_inc(&cpu_buffer->committing);
2318 /* fail and let the caller try again */
2319 return ERR_PTR(-EAGAIN);
2323 rb_reset_tail(cpu_buffer, tail, info);
2328 /* Slow path, do not inline */
2329 static noinline struct ring_buffer_event *
2330 rb_add_time_stamp(struct ring_buffer_event *event, u64 delta, bool abs)
2333 event->type_len = RINGBUF_TYPE_TIME_STAMP;
2335 event->type_len = RINGBUF_TYPE_TIME_EXTEND;
2337 /* Not the first event on the page, or not delta? */
2338 if (abs || rb_event_index(event)) {
2339 event->time_delta = delta & TS_MASK;
2340 event->array[0] = delta >> TS_SHIFT;
2342 /* nope, just zero it */
2343 event->time_delta = 0;
2344 event->array[0] = 0;
2347 return skip_time_extend(event);
2350 static inline bool rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
2351 struct ring_buffer_event *event);
2354 * rb_update_event - update event type and data
2355 * @event: the event to update
2356 * @type: the type of event
2357 * @length: the size of the event field in the ring buffer
2359 * Update the type and data fields of the event. The length
2360 * is the actual size that is written to the ring buffer,
2361 * and with this, we can determine what to place into the
2365 rb_update_event(struct ring_buffer_per_cpu *cpu_buffer,
2366 struct ring_buffer_event *event,
2367 struct rb_event_info *info)
2369 unsigned length = info->length;
2370 u64 delta = info->delta;
2372 /* Only a commit updates the timestamp */
2373 if (unlikely(!rb_event_is_commit(cpu_buffer, event)))
2377 * If we need to add a timestamp, then we
2378 * add it to the start of the reserved space.
2380 if (unlikely(info->add_timestamp)) {
2381 bool abs = ring_buffer_time_stamp_abs(cpu_buffer->buffer);
2383 event = rb_add_time_stamp(event, info->delta, abs);
2384 length -= RB_LEN_TIME_EXTEND;
2388 event->time_delta = delta;
2389 length -= RB_EVNT_HDR_SIZE;
2390 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT) {
2391 event->type_len = 0;
2392 event->array[0] = length;
2394 event->type_len = DIV_ROUND_UP(length, RB_ALIGNMENT);
2397 static unsigned rb_calculate_event_length(unsigned length)
2399 struct ring_buffer_event event; /* Used only for sizeof array */
2401 /* zero length can cause confusions */
2405 if (length > RB_MAX_SMALL_DATA || RB_FORCE_8BYTE_ALIGNMENT)
2406 length += sizeof(event.array[0]);
2408 length += RB_EVNT_HDR_SIZE;
2409 length = ALIGN(length, RB_ARCH_ALIGNMENT);
2412 * In case the time delta is larger than the 27 bits for it
2413 * in the header, we need to add a timestamp. If another
2414 * event comes in when trying to discard this one to increase
2415 * the length, then the timestamp will be added in the allocated
2416 * space of this event. If length is bigger than the size needed
2417 * for the TIME_EXTEND, then padding has to be used. The events
2418 * length must be either RB_LEN_TIME_EXTEND, or greater than or equal
2419 * to RB_LEN_TIME_EXTEND + 8, as 8 is the minimum size for padding.
2420 * As length is a multiple of 4, we only need to worry if it
2421 * is 12 (RB_LEN_TIME_EXTEND + 4).
2423 if (length == RB_LEN_TIME_EXTEND + RB_ALIGNMENT)
2424 length += RB_ALIGNMENT;
2429 #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK
2430 static inline bool sched_clock_stable(void)
2437 rb_try_to_discard(struct ring_buffer_per_cpu *cpu_buffer,
2438 struct ring_buffer_event *event)
2440 unsigned long new_index, old_index;
2441 struct buffer_page *bpage;
2442 unsigned long index;
2445 new_index = rb_event_index(event);
2446 old_index = new_index + rb_event_ts_length(event);
2447 addr = (unsigned long)event;
2450 bpage = READ_ONCE(cpu_buffer->tail_page);
2452 if (bpage->page == (void *)addr && rb_page_write(bpage) == old_index) {
2453 unsigned long write_mask =
2454 local_read(&bpage->write) & ~RB_WRITE_MASK;
2455 unsigned long event_length = rb_event_length(event);
2457 * This is on the tail page. It is possible that
2458 * a write could come in and move the tail page
2459 * and write to the next page. That is fine
2460 * because we just shorten what is on this page.
2462 old_index += write_mask;
2463 new_index += write_mask;
2464 index = local_cmpxchg(&bpage->write, old_index, new_index);
2465 if (index == old_index) {
2466 /* update counters */
2467 local_sub(event_length, &cpu_buffer->entries_bytes);
2472 /* could not discard */
2476 static void rb_start_commit(struct ring_buffer_per_cpu *cpu_buffer)
2478 local_inc(&cpu_buffer->committing);
2479 local_inc(&cpu_buffer->commits);
2482 static __always_inline void
2483 rb_set_commit_to_write(struct ring_buffer_per_cpu *cpu_buffer)
2485 unsigned long max_count;
2488 * We only race with interrupts and NMIs on this CPU.
2489 * If we own the commit event, then we can commit
2490 * all others that interrupted us, since the interruptions
2491 * are in stack format (they finish before they come
2492 * back to us). This allows us to do a simple loop to
2493 * assign the commit to the tail.
2496 max_count = cpu_buffer->nr_pages * 100;
2498 while (cpu_buffer->commit_page != READ_ONCE(cpu_buffer->tail_page)) {
2499 if (RB_WARN_ON(cpu_buffer, !(--max_count)))
2501 if (RB_WARN_ON(cpu_buffer,
2502 rb_is_reader_page(cpu_buffer->tail_page)))
2504 local_set(&cpu_buffer->commit_page->page->commit,
2505 rb_page_write(cpu_buffer->commit_page));
2506 rb_inc_page(cpu_buffer, &cpu_buffer->commit_page);
2507 /* Only update the write stamp if the page has an event */
2508 if (rb_page_write(cpu_buffer->commit_page))
2509 cpu_buffer->write_stamp =
2510 cpu_buffer->commit_page->page->time_stamp;
2511 /* add barrier to keep gcc from optimizing too much */
2514 while (rb_commit_index(cpu_buffer) !=
2515 rb_page_write(cpu_buffer->commit_page)) {
2517 local_set(&cpu_buffer->commit_page->page->commit,
2518 rb_page_write(cpu_buffer->commit_page));
2519 RB_WARN_ON(cpu_buffer,
2520 local_read(&cpu_buffer->commit_page->page->commit) &
2525 /* again, keep gcc from optimizing */
2529 * If an interrupt came in just after the first while loop
2530 * and pushed the tail page forward, we will be left with
2531 * a dangling commit that will never go forward.
2533 if (unlikely(cpu_buffer->commit_page != READ_ONCE(cpu_buffer->tail_page)))
2537 static __always_inline void rb_end_commit(struct ring_buffer_per_cpu *cpu_buffer)
2539 unsigned long commits;
2541 if (RB_WARN_ON(cpu_buffer,
2542 !local_read(&cpu_buffer->committing)))
2546 commits = local_read(&cpu_buffer->commits);
2547 /* synchronize with interrupts */
2549 if (local_read(&cpu_buffer->committing) == 1)
2550 rb_set_commit_to_write(cpu_buffer);
2552 local_dec(&cpu_buffer->committing);
2554 /* synchronize with interrupts */
2558 * Need to account for interrupts coming in between the
2559 * updating of the commit page and the clearing of the
2560 * committing counter.
2562 if (unlikely(local_read(&cpu_buffer->commits) != commits) &&
2563 !local_read(&cpu_buffer->committing)) {
2564 local_inc(&cpu_buffer->committing);
2569 static inline void rb_event_discard(struct ring_buffer_event *event)
2571 if (extended_time(event))
2572 event = skip_time_extend(event);
2574 /* array[0] holds the actual length for the discarded event */
2575 event->array[0] = rb_event_data_length(event) - RB_EVNT_HDR_SIZE;
2576 event->type_len = RINGBUF_TYPE_PADDING;
2577 /* time delta must be non zero */
2578 if (!event->time_delta)
2579 event->time_delta = 1;
2582 static __always_inline bool
2583 rb_event_is_commit(struct ring_buffer_per_cpu *cpu_buffer,
2584 struct ring_buffer_event *event)
2586 unsigned long addr = (unsigned long)event;
2587 unsigned long index;
2589 index = rb_event_index(event);
2592 return cpu_buffer->commit_page->page == (void *)addr &&
2593 rb_commit_index(cpu_buffer) == index;
2596 static __always_inline void
2597 rb_update_write_stamp(struct ring_buffer_per_cpu *cpu_buffer,
2598 struct ring_buffer_event *event)
2603 * The event first in the commit queue updates the
2606 if (rb_event_is_commit(cpu_buffer, event)) {
2608 * A commit event that is first on a page
2609 * updates the write timestamp with the page stamp
2611 if (!rb_event_index(event))
2612 cpu_buffer->write_stamp =
2613 cpu_buffer->commit_page->page->time_stamp;
2614 else if (event->type_len == RINGBUF_TYPE_TIME_EXTEND) {
2615 delta = ring_buffer_event_time_stamp(event);
2616 cpu_buffer->write_stamp += delta;
2617 } else if (event->type_len == RINGBUF_TYPE_TIME_STAMP) {
2618 delta = ring_buffer_event_time_stamp(event);
2619 cpu_buffer->write_stamp = delta;
2621 cpu_buffer->write_stamp += event->time_delta;
2625 static void rb_commit(struct ring_buffer_per_cpu *cpu_buffer,
2626 struct ring_buffer_event *event)
2628 local_inc(&cpu_buffer->entries);
2629 rb_update_write_stamp(cpu_buffer, event);
2630 rb_end_commit(cpu_buffer);
2633 static __always_inline void
2634 rb_wakeups(struct ring_buffer *buffer, struct ring_buffer_per_cpu *cpu_buffer)
2640 if (buffer->irq_work.waiters_pending) {
2641 buffer->irq_work.waiters_pending = false;
2642 /* irq_work_queue() supplies it's own memory barriers */
2643 irq_work_queue(&buffer->irq_work.work);
2646 if (cpu_buffer->irq_work.waiters_pending) {
2647 cpu_buffer->irq_work.waiters_pending = false;
2648 /* irq_work_queue() supplies it's own memory barriers */
2649 irq_work_queue(&cpu_buffer->irq_work.work);
2652 if (cpu_buffer->last_pages_touch == local_read(&cpu_buffer->pages_touched))
2655 if (cpu_buffer->reader_page == cpu_buffer->commit_page)
2658 if (!cpu_buffer->irq_work.full_waiters_pending)
2661 cpu_buffer->last_pages_touch = local_read(&cpu_buffer->pages_touched);
2663 full = cpu_buffer->shortest_full;
2664 nr_pages = cpu_buffer->nr_pages;
2665 dirty = ring_buffer_nr_dirty_pages(buffer, cpu_buffer->cpu);
2666 if (full && nr_pages && (dirty * 100) <= full * nr_pages)
2669 cpu_buffer->irq_work.wakeup_full = true;
2670 cpu_buffer->irq_work.full_waiters_pending = false;
2671 /* irq_work_queue() supplies it's own memory barriers */
2672 irq_work_queue(&cpu_buffer->irq_work.work);
2676 * The lock and unlock are done within a preempt disable section.
2677 * The current_context per_cpu variable can only be modified
2678 * by the current task between lock and unlock. But it can
2679 * be modified more than once via an interrupt. To pass this
2680 * information from the lock to the unlock without having to
2681 * access the 'in_interrupt()' functions again (which do show
2682 * a bit of overhead in something as critical as function tracing,
2683 * we use a bitmask trick.
2685 * bit 0 = NMI context
2686 * bit 1 = IRQ context
2687 * bit 2 = SoftIRQ context
2688 * bit 3 = normal context.
2690 * This works because this is the order of contexts that can
2691 * preempt other contexts. A SoftIRQ never preempts an IRQ
2694 * When the context is determined, the corresponding bit is
2695 * checked and set (if it was set, then a recursion of that context
2698 * On unlock, we need to clear this bit. To do so, just subtract
2699 * 1 from the current_context and AND it to itself.
2703 * 101 & 100 = 100 (clearing bit zero)
2706 * 1010 & 1001 = 1000 (clearing bit 1)
2708 * The least significant bit can be cleared this way, and it
2709 * just so happens that it is the same bit corresponding to
2710 * the current context.
2713 static __always_inline int
2714 trace_recursive_lock(struct ring_buffer_per_cpu *cpu_buffer)
2716 unsigned int val = cpu_buffer->current_context;
2717 unsigned long pc = preempt_count();
2720 if (!(pc & (NMI_MASK | HARDIRQ_MASK | SOFTIRQ_OFFSET)))
2721 bit = RB_CTX_NORMAL;
2723 bit = pc & NMI_MASK ? RB_CTX_NMI :
2724 pc & HARDIRQ_MASK ? RB_CTX_IRQ : RB_CTX_SOFTIRQ;
2726 if (unlikely(val & (1 << (bit + cpu_buffer->nest))))
2729 val |= (1 << (bit + cpu_buffer->nest));
2730 cpu_buffer->current_context = val;
2735 static __always_inline void
2736 trace_recursive_unlock(struct ring_buffer_per_cpu *cpu_buffer)
2738 cpu_buffer->current_context &=
2739 cpu_buffer->current_context - (1 << cpu_buffer->nest);
2742 /* The recursive locking above uses 4 bits */
2743 #define NESTED_BITS 4
2746 * ring_buffer_nest_start - Allow to trace while nested
2747 * @buffer: The ring buffer to modify
2749 * The ring buffer has a safety mechanism to prevent recursion.
2750 * But there may be a case where a trace needs to be done while
2751 * tracing something else. In this case, calling this function
2752 * will allow this function to nest within a currently active
2753 * ring_buffer_lock_reserve().
2755 * Call this function before calling another ring_buffer_lock_reserve() and
2756 * call ring_buffer_nest_end() after the nested ring_buffer_unlock_commit().
2758 void ring_buffer_nest_start(struct ring_buffer *buffer)
2760 struct ring_buffer_per_cpu *cpu_buffer;
2763 /* Enabled by ring_buffer_nest_end() */
2764 preempt_disable_notrace();
2765 cpu = raw_smp_processor_id();
2766 cpu_buffer = buffer->buffers[cpu];
2767 /* This is the shift value for the above recursive locking */
2768 cpu_buffer->nest += NESTED_BITS;
2772 * ring_buffer_nest_end - Allow to trace while nested
2773 * @buffer: The ring buffer to modify
2775 * Must be called after ring_buffer_nest_start() and after the
2776 * ring_buffer_unlock_commit().
2778 void ring_buffer_nest_end(struct ring_buffer *buffer)
2780 struct ring_buffer_per_cpu *cpu_buffer;
2783 /* disabled by ring_buffer_nest_start() */
2784 cpu = raw_smp_processor_id();
2785 cpu_buffer = buffer->buffers[cpu];
2786 /* This is the shift value for the above recursive locking */
2787 cpu_buffer->nest -= NESTED_BITS;
2788 preempt_enable_notrace();
2792 * ring_buffer_unlock_commit - commit a reserved
2793 * @buffer: The buffer to commit to
2794 * @event: The event pointer to commit.
2796 * This commits the data to the ring buffer, and releases any locks held.
2798 * Must be paired with ring_buffer_lock_reserve.
2800 int ring_buffer_unlock_commit(struct ring_buffer *buffer,
2801 struct ring_buffer_event *event)
2803 struct ring_buffer_per_cpu *cpu_buffer;
2804 int cpu = raw_smp_processor_id();
2806 cpu_buffer = buffer->buffers[cpu];
2808 rb_commit(cpu_buffer, event);
2810 rb_wakeups(buffer, cpu_buffer);
2812 trace_recursive_unlock(cpu_buffer);
2814 preempt_enable_notrace();
2818 EXPORT_SYMBOL_GPL(ring_buffer_unlock_commit);
2820 static noinline void
2821 rb_handle_timestamp(struct ring_buffer_per_cpu *cpu_buffer,
2822 struct rb_event_info *info)
2824 WARN_ONCE(info->delta > (1ULL << 59),
2825 KERN_WARNING "Delta way too big! %llu ts=%llu write stamp = %llu\n%s",
2826 (unsigned long long)info->delta,
2827 (unsigned long long)info->ts,
2828 (unsigned long long)cpu_buffer->write_stamp,
2829 sched_clock_stable() ? "" :
2830 "If you just came from a suspend/resume,\n"
2831 "please switch to the trace global clock:\n"
2832 " echo global > /sys/kernel/debug/tracing/trace_clock\n"
2833 "or add trace_clock=global to the kernel command line\n");
2834 info->add_timestamp = 1;
2837 static struct ring_buffer_event *
2838 __rb_reserve_next(struct ring_buffer_per_cpu *cpu_buffer,
2839 struct rb_event_info *info)
2841 struct ring_buffer_event *event;
2842 struct buffer_page *tail_page;
2843 unsigned long tail, write;
2846 * If the time delta since the last event is too big to
2847 * hold in the time field of the event, then we append a
2848 * TIME EXTEND event ahead of the data event.
2850 if (unlikely(info->add_timestamp))
2851 info->length += RB_LEN_TIME_EXTEND;
2853 /* Don't let the compiler play games with cpu_buffer->tail_page */
2854 tail_page = info->tail_page = READ_ONCE(cpu_buffer->tail_page);
2855 write = local_add_return(info->length, &tail_page->write);
2857 /* set write to only the index of the write */
2858 write &= RB_WRITE_MASK;
2859 tail = write - info->length;
2862 * If this is the first commit on the page, then it has the same
2863 * timestamp as the page itself.
2865 if (!tail && !ring_buffer_time_stamp_abs(cpu_buffer->buffer))
2868 /* See if we shot pass the end of this buffer page */
2869 if (unlikely(write > BUF_PAGE_SIZE))
2870 return rb_move_tail(cpu_buffer, tail, info);
2872 /* We reserved something on the buffer */
2874 event = __rb_page_index(tail_page, tail);
2875 rb_update_event(cpu_buffer, event, info);
2877 local_inc(&tail_page->entries);
2880 * If this is the first commit on the page, then update
2884 tail_page->page->time_stamp = info->ts;
2886 /* account for these added bytes */
2887 local_add(info->length, &cpu_buffer->entries_bytes);
2892 static __always_inline struct ring_buffer_event *
2893 rb_reserve_next_event(struct ring_buffer *buffer,
2894 struct ring_buffer_per_cpu *cpu_buffer,
2895 unsigned long length)
2897 struct ring_buffer_event *event;
2898 struct rb_event_info info;
2902 rb_start_commit(cpu_buffer);
2904 #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
2906 * Due to the ability to swap a cpu buffer from a buffer
2907 * it is possible it was swapped before we committed.
2908 * (committing stops a swap). We check for it here and
2909 * if it happened, we have to fail the write.
2912 if (unlikely(READ_ONCE(cpu_buffer->buffer) != buffer)) {
2913 local_dec(&cpu_buffer->committing);
2914 local_dec(&cpu_buffer->commits);
2919 info.length = rb_calculate_event_length(length);
2921 info.add_timestamp = 0;
2925 * We allow for interrupts to reenter here and do a trace.
2926 * If one does, it will cause this original code to loop
2927 * back here. Even with heavy interrupts happening, this
2928 * should only happen a few times in a row. If this happens
2929 * 1000 times in a row, there must be either an interrupt
2930 * storm or we have something buggy.
2933 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 1000))
2936 info.ts = rb_time_stamp(cpu_buffer->buffer);
2937 diff = info.ts - cpu_buffer->write_stamp;
2939 /* make sure this diff is calculated here */
2942 if (ring_buffer_time_stamp_abs(buffer)) {
2943 info.delta = info.ts;
2944 rb_handle_timestamp(cpu_buffer, &info);
2945 } else /* Did the write stamp get updated already? */
2946 if (likely(info.ts >= cpu_buffer->write_stamp)) {
2948 if (unlikely(test_time_stamp(info.delta)))
2949 rb_handle_timestamp(cpu_buffer, &info);
2952 event = __rb_reserve_next(cpu_buffer, &info);
2954 if (unlikely(PTR_ERR(event) == -EAGAIN)) {
2955 if (info.add_timestamp)
2956 info.length -= RB_LEN_TIME_EXTEND;
2966 rb_end_commit(cpu_buffer);
2971 * ring_buffer_lock_reserve - reserve a part of the buffer
2972 * @buffer: the ring buffer to reserve from
2973 * @length: the length of the data to reserve (excluding event header)
2975 * Returns a reserved event on the ring buffer to copy directly to.
2976 * The user of this interface will need to get the body to write into
2977 * and can use the ring_buffer_event_data() interface.
2979 * The length is the length of the data needed, not the event length
2980 * which also includes the event header.
2982 * Must be paired with ring_buffer_unlock_commit, unless NULL is returned.
2983 * If NULL is returned, then nothing has been allocated or locked.
2985 struct ring_buffer_event *
2986 ring_buffer_lock_reserve(struct ring_buffer *buffer, unsigned long length)
2988 struct ring_buffer_per_cpu *cpu_buffer;
2989 struct ring_buffer_event *event;
2992 /* If we are tracing schedule, we don't want to recurse */
2993 preempt_disable_notrace();
2995 if (unlikely(atomic_read(&buffer->record_disabled)))
2998 cpu = raw_smp_processor_id();
3000 if (unlikely(!cpumask_test_cpu(cpu, buffer->cpumask)))
3003 cpu_buffer = buffer->buffers[cpu];
3005 if (unlikely(atomic_read(&cpu_buffer->record_disabled)))
3008 if (unlikely(length > BUF_MAX_DATA_SIZE))
3011 if (unlikely(trace_recursive_lock(cpu_buffer)))
3014 event = rb_reserve_next_event(buffer, cpu_buffer, length);
3021 trace_recursive_unlock(cpu_buffer);
3023 preempt_enable_notrace();
3026 EXPORT_SYMBOL_GPL(ring_buffer_lock_reserve);
3029 * Decrement the entries to the page that an event is on.
3030 * The event does not even need to exist, only the pointer
3031 * to the page it is on. This may only be called before the commit
3035 rb_decrement_entry(struct ring_buffer_per_cpu *cpu_buffer,
3036 struct ring_buffer_event *event)
3038 unsigned long addr = (unsigned long)event;
3039 struct buffer_page *bpage = cpu_buffer->commit_page;
3040 struct buffer_page *start;
3044 /* Do the likely case first */
3045 if (likely(bpage->page == (void *)addr)) {
3046 local_dec(&bpage->entries);
3051 * Because the commit page may be on the reader page we
3052 * start with the next page and check the end loop there.
3054 rb_inc_page(cpu_buffer, &bpage);
3057 if (bpage->page == (void *)addr) {
3058 local_dec(&bpage->entries);
3061 rb_inc_page(cpu_buffer, &bpage);
3062 } while (bpage != start);
3064 /* commit not part of this buffer?? */
3065 RB_WARN_ON(cpu_buffer, 1);
3069 * ring_buffer_commit_discard - discard an event that has not been committed
3070 * @buffer: the ring buffer
3071 * @event: non committed event to discard
3073 * Sometimes an event that is in the ring buffer needs to be ignored.
3074 * This function lets the user discard an event in the ring buffer
3075 * and then that event will not be read later.
3077 * This function only works if it is called before the item has been
3078 * committed. It will try to free the event from the ring buffer
3079 * if another event has not been added behind it.
3081 * If another event has been added behind it, it will set the event
3082 * up as discarded, and perform the commit.
3084 * If this function is called, do not call ring_buffer_unlock_commit on
3087 void ring_buffer_discard_commit(struct ring_buffer *buffer,
3088 struct ring_buffer_event *event)
3090 struct ring_buffer_per_cpu *cpu_buffer;
3093 /* The event is discarded regardless */
3094 rb_event_discard(event);
3096 cpu = smp_processor_id();
3097 cpu_buffer = buffer->buffers[cpu];
3100 * This must only be called if the event has not been
3101 * committed yet. Thus we can assume that preemption
3102 * is still disabled.
3104 RB_WARN_ON(buffer, !local_read(&cpu_buffer->committing));
3106 rb_decrement_entry(cpu_buffer, event);
3107 if (rb_try_to_discard(cpu_buffer, event))
3111 * The commit is still visible by the reader, so we
3112 * must still update the timestamp.
3114 rb_update_write_stamp(cpu_buffer, event);
3116 rb_end_commit(cpu_buffer);
3118 trace_recursive_unlock(cpu_buffer);
3120 preempt_enable_notrace();
3123 EXPORT_SYMBOL_GPL(ring_buffer_discard_commit);
3126 * ring_buffer_write - write data to the buffer without reserving
3127 * @buffer: The ring buffer to write to.
3128 * @length: The length of the data being written (excluding the event header)
3129 * @data: The data to write to the buffer.
3131 * This is like ring_buffer_lock_reserve and ring_buffer_unlock_commit as
3132 * one function. If you already have the data to write to the buffer, it
3133 * may be easier to simply call this function.
3135 * Note, like ring_buffer_lock_reserve, the length is the length of the data
3136 * and not the length of the event which would hold the header.
3138 int ring_buffer_write(struct ring_buffer *buffer,
3139 unsigned long length,
3142 struct ring_buffer_per_cpu *cpu_buffer;
3143 struct ring_buffer_event *event;
3148 preempt_disable_notrace();
3150 if (atomic_read(&buffer->record_disabled))
3153 cpu = raw_smp_processor_id();
3155 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3158 cpu_buffer = buffer->buffers[cpu];
3160 if (atomic_read(&cpu_buffer->record_disabled))
3163 if (length > BUF_MAX_DATA_SIZE)
3166 if (unlikely(trace_recursive_lock(cpu_buffer)))
3169 event = rb_reserve_next_event(buffer, cpu_buffer, length);
3173 body = rb_event_data(event);
3175 memcpy(body, data, length);
3177 rb_commit(cpu_buffer, event);
3179 rb_wakeups(buffer, cpu_buffer);
3184 trace_recursive_unlock(cpu_buffer);
3187 preempt_enable_notrace();
3191 EXPORT_SYMBOL_GPL(ring_buffer_write);
3193 static bool rb_per_cpu_empty(struct ring_buffer_per_cpu *cpu_buffer)
3195 struct buffer_page *reader = cpu_buffer->reader_page;
3196 struct buffer_page *head = rb_set_head_page(cpu_buffer);
3197 struct buffer_page *commit = cpu_buffer->commit_page;
3199 /* In case of error, head will be NULL */
3200 if (unlikely(!head))
3203 return reader->read == rb_page_commit(reader) &&
3204 (commit == reader ||
3206 head->read == rb_page_commit(commit)));
3210 * ring_buffer_record_disable - stop all writes into the buffer
3211 * @buffer: The ring buffer to stop writes to.
3213 * This prevents all writes to the buffer. Any attempt to write
3214 * to the buffer after this will fail and return NULL.
3216 * The caller should call synchronize_rcu() after this.
3218 void ring_buffer_record_disable(struct ring_buffer *buffer)
3220 atomic_inc(&buffer->record_disabled);
3222 EXPORT_SYMBOL_GPL(ring_buffer_record_disable);
3225 * ring_buffer_record_enable - enable writes to the buffer
3226 * @buffer: The ring buffer to enable writes
3228 * Note, multiple disables will need the same number of enables
3229 * to truly enable the writing (much like preempt_disable).
3231 void ring_buffer_record_enable(struct ring_buffer *buffer)
3233 atomic_dec(&buffer->record_disabled);
3235 EXPORT_SYMBOL_GPL(ring_buffer_record_enable);
3238 * ring_buffer_record_off - stop all writes into the buffer
3239 * @buffer: The ring buffer to stop writes to.
3241 * This prevents all writes to the buffer. Any attempt to write
3242 * to the buffer after this will fail and return NULL.
3244 * This is different than ring_buffer_record_disable() as
3245 * it works like an on/off switch, where as the disable() version
3246 * must be paired with a enable().
3248 void ring_buffer_record_off(struct ring_buffer *buffer)
3251 unsigned int new_rd;
3254 rd = atomic_read(&buffer->record_disabled);
3255 new_rd = rd | RB_BUFFER_OFF;
3256 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3258 EXPORT_SYMBOL_GPL(ring_buffer_record_off);
3261 * ring_buffer_record_on - restart writes into the buffer
3262 * @buffer: The ring buffer to start writes to.
3264 * This enables all writes to the buffer that was disabled by
3265 * ring_buffer_record_off().
3267 * This is different than ring_buffer_record_enable() as
3268 * it works like an on/off switch, where as the enable() version
3269 * must be paired with a disable().
3271 void ring_buffer_record_on(struct ring_buffer *buffer)
3274 unsigned int new_rd;
3277 rd = atomic_read(&buffer->record_disabled);
3278 new_rd = rd & ~RB_BUFFER_OFF;
3279 } while (atomic_cmpxchg(&buffer->record_disabled, rd, new_rd) != rd);
3281 EXPORT_SYMBOL_GPL(ring_buffer_record_on);
3284 * ring_buffer_record_is_on - return true if the ring buffer can write
3285 * @buffer: The ring buffer to see if write is enabled
3287 * Returns true if the ring buffer is in a state that it accepts writes.
3289 bool ring_buffer_record_is_on(struct ring_buffer *buffer)
3291 return !atomic_read(&buffer->record_disabled);
3295 * ring_buffer_record_is_set_on - return true if the ring buffer is set writable
3296 * @buffer: The ring buffer to see if write is set enabled
3298 * Returns true if the ring buffer is set writable by ring_buffer_record_on().
3299 * Note that this does NOT mean it is in a writable state.
3301 * It may return true when the ring buffer has been disabled by
3302 * ring_buffer_record_disable(), as that is a temporary disabling of
3305 bool ring_buffer_record_is_set_on(struct ring_buffer *buffer)
3307 return !(atomic_read(&buffer->record_disabled) & RB_BUFFER_OFF);
3311 * ring_buffer_record_disable_cpu - stop all writes into the cpu_buffer
3312 * @buffer: The ring buffer to stop writes to.
3313 * @cpu: The CPU buffer to stop
3315 * This prevents all writes to the buffer. Any attempt to write
3316 * to the buffer after this will fail and return NULL.
3318 * The caller should call synchronize_rcu() after this.
3320 void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu)
3322 struct ring_buffer_per_cpu *cpu_buffer;
3324 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3327 cpu_buffer = buffer->buffers[cpu];
3328 atomic_inc(&cpu_buffer->record_disabled);
3330 EXPORT_SYMBOL_GPL(ring_buffer_record_disable_cpu);
3333 * ring_buffer_record_enable_cpu - enable writes to the buffer
3334 * @buffer: The ring buffer to enable writes
3335 * @cpu: The CPU to enable.
3337 * Note, multiple disables will need the same number of enables
3338 * to truly enable the writing (much like preempt_disable).
3340 void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu)
3342 struct ring_buffer_per_cpu *cpu_buffer;
3344 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3347 cpu_buffer = buffer->buffers[cpu];
3348 atomic_dec(&cpu_buffer->record_disabled);
3350 EXPORT_SYMBOL_GPL(ring_buffer_record_enable_cpu);
3353 * The total entries in the ring buffer is the running counter
3354 * of entries entered into the ring buffer, minus the sum of
3355 * the entries read from the ring buffer and the number of
3356 * entries that were overwritten.
3358 static inline unsigned long
3359 rb_num_of_entries(struct ring_buffer_per_cpu *cpu_buffer)
3361 return local_read(&cpu_buffer->entries) -
3362 (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
3366 * ring_buffer_oldest_event_ts - get the oldest event timestamp from the buffer
3367 * @buffer: The ring buffer
3368 * @cpu: The per CPU buffer to read from.
3370 u64 ring_buffer_oldest_event_ts(struct ring_buffer *buffer, int cpu)
3372 unsigned long flags;
3373 struct ring_buffer_per_cpu *cpu_buffer;
3374 struct buffer_page *bpage;
3377 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3380 cpu_buffer = buffer->buffers[cpu];
3381 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
3383 * if the tail is on reader_page, oldest time stamp is on the reader
3386 if (cpu_buffer->tail_page == cpu_buffer->reader_page)
3387 bpage = cpu_buffer->reader_page;
3389 bpage = rb_set_head_page(cpu_buffer);
3391 ret = bpage->page->time_stamp;
3392 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
3396 EXPORT_SYMBOL_GPL(ring_buffer_oldest_event_ts);
3399 * ring_buffer_bytes_cpu - get the number of bytes consumed in a cpu buffer
3400 * @buffer: The ring buffer
3401 * @cpu: The per CPU buffer to read from.
3403 unsigned long ring_buffer_bytes_cpu(struct ring_buffer *buffer, int cpu)
3405 struct ring_buffer_per_cpu *cpu_buffer;
3408 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3411 cpu_buffer = buffer->buffers[cpu];
3412 ret = local_read(&cpu_buffer->entries_bytes) - cpu_buffer->read_bytes;
3416 EXPORT_SYMBOL_GPL(ring_buffer_bytes_cpu);
3419 * ring_buffer_entries_cpu - get the number of entries in a cpu buffer
3420 * @buffer: The ring buffer
3421 * @cpu: The per CPU buffer to get the entries from.
3423 unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu)
3425 struct ring_buffer_per_cpu *cpu_buffer;
3427 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3430 cpu_buffer = buffer->buffers[cpu];
3432 return rb_num_of_entries(cpu_buffer);
3434 EXPORT_SYMBOL_GPL(ring_buffer_entries_cpu);
3437 * ring_buffer_overrun_cpu - get the number of overruns caused by the ring
3438 * buffer wrapping around (only if RB_FL_OVERWRITE is on).
3439 * @buffer: The ring buffer
3440 * @cpu: The per CPU buffer to get the number of overruns from
3442 unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu)
3444 struct ring_buffer_per_cpu *cpu_buffer;
3447 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3450 cpu_buffer = buffer->buffers[cpu];
3451 ret = local_read(&cpu_buffer->overrun);
3455 EXPORT_SYMBOL_GPL(ring_buffer_overrun_cpu);
3458 * ring_buffer_commit_overrun_cpu - get the number of overruns caused by
3459 * commits failing due to the buffer wrapping around while there are uncommitted
3460 * events, such as during an interrupt storm.
3461 * @buffer: The ring buffer
3462 * @cpu: The per CPU buffer to get the number of overruns from
3465 ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu)
3467 struct ring_buffer_per_cpu *cpu_buffer;
3470 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3473 cpu_buffer = buffer->buffers[cpu];
3474 ret = local_read(&cpu_buffer->commit_overrun);
3478 EXPORT_SYMBOL_GPL(ring_buffer_commit_overrun_cpu);
3481 * ring_buffer_dropped_events_cpu - get the number of dropped events caused by
3482 * the ring buffer filling up (only if RB_FL_OVERWRITE is off).
3483 * @buffer: The ring buffer
3484 * @cpu: The per CPU buffer to get the number of overruns from
3487 ring_buffer_dropped_events_cpu(struct ring_buffer *buffer, int cpu)
3489 struct ring_buffer_per_cpu *cpu_buffer;
3492 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3495 cpu_buffer = buffer->buffers[cpu];
3496 ret = local_read(&cpu_buffer->dropped_events);
3500 EXPORT_SYMBOL_GPL(ring_buffer_dropped_events_cpu);
3503 * ring_buffer_read_events_cpu - get the number of events successfully read
3504 * @buffer: The ring buffer
3505 * @cpu: The per CPU buffer to get the number of events read
3508 ring_buffer_read_events_cpu(struct ring_buffer *buffer, int cpu)
3510 struct ring_buffer_per_cpu *cpu_buffer;
3512 if (!cpumask_test_cpu(cpu, buffer->cpumask))
3515 cpu_buffer = buffer->buffers[cpu];
3516 return cpu_buffer->read;
3518 EXPORT_SYMBOL_GPL(ring_buffer_read_events_cpu);
3521 * ring_buffer_entries - get the number of entries in a buffer
3522 * @buffer: The ring buffer
3524 * Returns the total number of entries in the ring buffer
3527 unsigned long ring_buffer_entries(struct ring_buffer *buffer)
3529 struct ring_buffer_per_cpu *cpu_buffer;
3530 unsigned long entries = 0;
3533 /* if you care about this being correct, lock the buffer */
3534 for_each_buffer_cpu(buffer, cpu) {
3535 cpu_buffer = buffer->buffers[cpu];
3536 entries += rb_num_of_entries(cpu_buffer);
3541 EXPORT_SYMBOL_GPL(ring_buffer_entries);
3544 * ring_buffer_overruns - get the number of overruns in buffer
3545 * @buffer: The ring buffer
3547 * Returns the total number of overruns in the ring buffer
3550 unsigned long ring_buffer_overruns(struct ring_buffer *buffer)
3552 struct ring_buffer_per_cpu *cpu_buffer;
3553 unsigned long overruns = 0;
3556 /* if you care about this being correct, lock the buffer */
3557 for_each_buffer_cpu(buffer, cpu) {
3558 cpu_buffer = buffer->buffers[cpu];
3559 overruns += local_read(&cpu_buffer->overrun);
3564 EXPORT_SYMBOL_GPL(ring_buffer_overruns);
3566 static void rb_iter_reset(struct ring_buffer_iter *iter)
3568 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
3570 /* Iterator usage is expected to have record disabled */
3571 iter->head_page = cpu_buffer->reader_page;
3572 iter->head = cpu_buffer->reader_page->read;
3574 iter->cache_reader_page = iter->head_page;
3575 iter->cache_read = cpu_buffer->read;
3578 iter->read_stamp = cpu_buffer->read_stamp;
3580 iter->read_stamp = iter->head_page->page->time_stamp;
3584 * ring_buffer_iter_reset - reset an iterator
3585 * @iter: The iterator to reset
3587 * Resets the iterator, so that it will start from the beginning
3590 void ring_buffer_iter_reset(struct ring_buffer_iter *iter)
3592 struct ring_buffer_per_cpu *cpu_buffer;
3593 unsigned long flags;
3598 cpu_buffer = iter->cpu_buffer;
3600 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
3601 rb_iter_reset(iter);
3602 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
3604 EXPORT_SYMBOL_GPL(ring_buffer_iter_reset);
3607 * ring_buffer_iter_empty - check if an iterator has no more to read
3608 * @iter: The iterator to check
3610 int ring_buffer_iter_empty(struct ring_buffer_iter *iter)
3612 struct ring_buffer_per_cpu *cpu_buffer;
3613 struct buffer_page *reader;
3614 struct buffer_page *head_page;
3615 struct buffer_page *commit_page;
3618 cpu_buffer = iter->cpu_buffer;
3620 /* Remember, trace recording is off when iterator is in use */
3621 reader = cpu_buffer->reader_page;
3622 head_page = cpu_buffer->head_page;
3623 commit_page = cpu_buffer->commit_page;
3624 commit = rb_page_commit(commit_page);
3626 return ((iter->head_page == commit_page && iter->head == commit) ||
3627 (iter->head_page == reader && commit_page == head_page &&
3628 head_page->read == commit &&
3629 iter->head == rb_page_commit(cpu_buffer->reader_page)));
3631 EXPORT_SYMBOL_GPL(ring_buffer_iter_empty);
3634 rb_update_read_stamp(struct ring_buffer_per_cpu *cpu_buffer,
3635 struct ring_buffer_event *event)
3639 switch (event->type_len) {
3640 case RINGBUF_TYPE_PADDING:
3643 case RINGBUF_TYPE_TIME_EXTEND:
3644 delta = ring_buffer_event_time_stamp(event);
3645 cpu_buffer->read_stamp += delta;
3648 case RINGBUF_TYPE_TIME_STAMP:
3649 delta = ring_buffer_event_time_stamp(event);
3650 cpu_buffer->read_stamp = delta;
3653 case RINGBUF_TYPE_DATA:
3654 cpu_buffer->read_stamp += event->time_delta;
3664 rb_update_iter_read_stamp(struct ring_buffer_iter *iter,
3665 struct ring_buffer_event *event)
3669 switch (event->type_len) {
3670 case RINGBUF_TYPE_PADDING:
3673 case RINGBUF_TYPE_TIME_EXTEND:
3674 delta = ring_buffer_event_time_stamp(event);
3675 iter->read_stamp += delta;
3678 case RINGBUF_TYPE_TIME_STAMP:
3679 delta = ring_buffer_event_time_stamp(event);
3680 iter->read_stamp = delta;
3683 case RINGBUF_TYPE_DATA:
3684 iter->read_stamp += event->time_delta;
3693 static struct buffer_page *
3694 rb_get_reader_page(struct ring_buffer_per_cpu *cpu_buffer)
3696 struct buffer_page *reader = NULL;
3697 unsigned long overwrite;
3698 unsigned long flags;
3702 local_irq_save(flags);
3703 arch_spin_lock(&cpu_buffer->lock);
3707 * This should normally only loop twice. But because the
3708 * start of the reader inserts an empty page, it causes
3709 * a case where we will loop three times. There should be no
3710 * reason to loop four times (that I know of).
3712 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3)) {
3717 reader = cpu_buffer->reader_page;
3719 /* If there's more to read, return this page */
3720 if (cpu_buffer->reader_page->read < rb_page_size(reader))
3723 /* Never should we have an index greater than the size */
3724 if (RB_WARN_ON(cpu_buffer,
3725 cpu_buffer->reader_page->read > rb_page_size(reader)))
3728 /* check if we caught up to the tail */
3730 if (cpu_buffer->commit_page == cpu_buffer->reader_page)
3733 /* Don't bother swapping if the ring buffer is empty */
3734 if (rb_num_of_entries(cpu_buffer) == 0)
3738 * Reset the reader page to size zero.
3740 local_set(&cpu_buffer->reader_page->write, 0);
3741 local_set(&cpu_buffer->reader_page->entries, 0);
3742 local_set(&cpu_buffer->reader_page->page->commit, 0);
3743 cpu_buffer->reader_page->real_end = 0;
3747 * Splice the empty reader page into the list around the head.
3749 reader = rb_set_head_page(cpu_buffer);
3752 cpu_buffer->reader_page->list.next = rb_list_head(reader->list.next);
3753 cpu_buffer->reader_page->list.prev = reader->list.prev;
3756 * cpu_buffer->pages just needs to point to the buffer, it
3757 * has no specific buffer page to point to. Lets move it out
3758 * of our way so we don't accidentally swap it.
3760 cpu_buffer->pages = reader->list.prev;
3762 /* The reader page will be pointing to the new head */
3763 rb_set_list_to_head(cpu_buffer, &cpu_buffer->reader_page->list);
3766 * We want to make sure we read the overruns after we set up our
3767 * pointers to the next object. The writer side does a
3768 * cmpxchg to cross pages which acts as the mb on the writer
3769 * side. Note, the reader will constantly fail the swap
3770 * while the writer is updating the pointers, so this
3771 * guarantees that the overwrite recorded here is the one we
3772 * want to compare with the last_overrun.
3775 overwrite = local_read(&(cpu_buffer->overrun));
3778 * Here's the tricky part.
3780 * We need to move the pointer past the header page.
3781 * But we can only do that if a writer is not currently
3782 * moving it. The page before the header page has the
3783 * flag bit '1' set if it is pointing to the page we want.
3784 * but if the writer is in the process of moving it
3785 * than it will be '2' or already moved '0'.
3788 ret = rb_head_page_replace(reader, cpu_buffer->reader_page);
3791 * If we did not convert it, then we must try again.
3797 * Yay! We succeeded in replacing the page.
3799 * Now make the new head point back to the reader page.
3801 rb_list_head(reader->list.next)->prev = &cpu_buffer->reader_page->list;
3802 rb_inc_page(cpu_buffer, &cpu_buffer->head_page);
3804 local_inc(&cpu_buffer->pages_read);
3806 /* Finally update the reader page to the new head */
3807 cpu_buffer->reader_page = reader;
3808 cpu_buffer->reader_page->read = 0;
3810 if (overwrite != cpu_buffer->last_overrun) {
3811 cpu_buffer->lost_events = overwrite - cpu_buffer->last_overrun;
3812 cpu_buffer->last_overrun = overwrite;
3818 /* Update the read_stamp on the first event */
3819 if (reader && reader->read == 0)
3820 cpu_buffer->read_stamp = reader->page->time_stamp;
3822 arch_spin_unlock(&cpu_buffer->lock);
3823 local_irq_restore(flags);
3828 static void rb_advance_reader(struct ring_buffer_per_cpu *cpu_buffer)
3830 struct ring_buffer_event *event;
3831 struct buffer_page *reader;
3834 reader = rb_get_reader_page(cpu_buffer);
3836 /* This function should not be called when buffer is empty */
3837 if (RB_WARN_ON(cpu_buffer, !reader))
3840 event = rb_reader_event(cpu_buffer);
3842 if (event->type_len <= RINGBUF_TYPE_DATA_TYPE_LEN_MAX)
3845 rb_update_read_stamp(cpu_buffer, event);
3847 length = rb_event_length(event);
3848 cpu_buffer->reader_page->read += length;
3851 static void rb_advance_iter(struct ring_buffer_iter *iter)
3853 struct ring_buffer_per_cpu *cpu_buffer;
3854 struct ring_buffer_event *event;
3857 cpu_buffer = iter->cpu_buffer;
3860 * Check if we are at the end of the buffer.
3862 if (iter->head >= rb_page_size(iter->head_page)) {
3863 /* discarded commits can make the page empty */
3864 if (iter->head_page == cpu_buffer->commit_page)
3870 event = rb_iter_head_event(iter);
3872 length = rb_event_length(event);
3875 * This should not be called to advance the header if we are
3876 * at the tail of the buffer.
3878 if (RB_WARN_ON(cpu_buffer,
3879 (iter->head_page == cpu_buffer->commit_page) &&
3880 (iter->head + length > rb_commit_index(cpu_buffer))))
3883 rb_update_iter_read_stamp(iter, event);
3885 iter->head += length;
3887 /* check for end of page padding */
3888 if ((iter->head >= rb_page_size(iter->head_page)) &&
3889 (iter->head_page != cpu_buffer->commit_page))
3893 static int rb_lost_events(struct ring_buffer_per_cpu *cpu_buffer)
3895 return cpu_buffer->lost_events;
3898 static struct ring_buffer_event *
3899 rb_buffer_peek(struct ring_buffer_per_cpu *cpu_buffer, u64 *ts,
3900 unsigned long *lost_events)
3902 struct ring_buffer_event *event;
3903 struct buffer_page *reader;
3910 * We repeat when a time extend is encountered.
3911 * Since the time extend is always attached to a data event,
3912 * we should never loop more than once.
3913 * (We never hit the following condition more than twice).
3915 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 2))
3918 reader = rb_get_reader_page(cpu_buffer);
3922 event = rb_reader_event(cpu_buffer);
3924 switch (event->type_len) {
3925 case RINGBUF_TYPE_PADDING:
3926 if (rb_null_event(event))
3927 RB_WARN_ON(cpu_buffer, 1);
3929 * Because the writer could be discarding every
3930 * event it creates (which would probably be bad)
3931 * if we were to go back to "again" then we may never
3932 * catch up, and will trigger the warn on, or lock
3933 * the box. Return the padding, and we will release
3934 * the current locks, and try again.
3938 case RINGBUF_TYPE_TIME_EXTEND:
3939 /* Internal data, OK to advance */
3940 rb_advance_reader(cpu_buffer);
3943 case RINGBUF_TYPE_TIME_STAMP:
3945 *ts = ring_buffer_event_time_stamp(event);
3946 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
3947 cpu_buffer->cpu, ts);
3949 /* Internal data, OK to advance */
3950 rb_advance_reader(cpu_buffer);
3953 case RINGBUF_TYPE_DATA:
3955 *ts = cpu_buffer->read_stamp + event->time_delta;
3956 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
3957 cpu_buffer->cpu, ts);
3960 *lost_events = rb_lost_events(cpu_buffer);
3969 EXPORT_SYMBOL_GPL(ring_buffer_peek);
3971 static struct ring_buffer_event *
3972 rb_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
3974 struct ring_buffer *buffer;
3975 struct ring_buffer_per_cpu *cpu_buffer;
3976 struct ring_buffer_event *event;
3982 cpu_buffer = iter->cpu_buffer;
3983 buffer = cpu_buffer->buffer;
3986 * Check if someone performed a consuming read to
3987 * the buffer. A consuming read invalidates the iterator
3988 * and we need to reset the iterator in this case.
3990 if (unlikely(iter->cache_read != cpu_buffer->read ||
3991 iter->cache_reader_page != cpu_buffer->reader_page))
3992 rb_iter_reset(iter);
3995 if (ring_buffer_iter_empty(iter))
3999 * We repeat when a time extend is encountered or we hit
4000 * the end of the page. Since the time extend is always attached
4001 * to a data event, we should never loop more than three times.
4002 * Once for going to next page, once on time extend, and
4003 * finally once to get the event.
4004 * (We never hit the following condition more than thrice).
4006 if (RB_WARN_ON(cpu_buffer, ++nr_loops > 3))
4009 if (rb_per_cpu_empty(cpu_buffer))
4012 if (iter->head >= rb_page_size(iter->head_page)) {
4017 event = rb_iter_head_event(iter);
4019 switch (event->type_len) {
4020 case RINGBUF_TYPE_PADDING:
4021 if (rb_null_event(event)) {
4025 rb_advance_iter(iter);
4028 case RINGBUF_TYPE_TIME_EXTEND:
4029 /* Internal data, OK to advance */
4030 rb_advance_iter(iter);
4033 case RINGBUF_TYPE_TIME_STAMP:
4035 *ts = ring_buffer_event_time_stamp(event);
4036 ring_buffer_normalize_time_stamp(cpu_buffer->buffer,
4037 cpu_buffer->cpu, ts);
4039 /* Internal data, OK to advance */
4040 rb_advance_iter(iter);
4043 case RINGBUF_TYPE_DATA:
4045 *ts = iter->read_stamp + event->time_delta;
4046 ring_buffer_normalize_time_stamp(buffer,
4047 cpu_buffer->cpu, ts);
4057 EXPORT_SYMBOL_GPL(ring_buffer_iter_peek);
4059 static inline bool rb_reader_lock(struct ring_buffer_per_cpu *cpu_buffer)
4061 if (likely(!in_nmi())) {
4062 raw_spin_lock(&cpu_buffer->reader_lock);
4067 * If an NMI die dumps out the content of the ring buffer
4068 * trylock must be used to prevent a deadlock if the NMI
4069 * preempted a task that holds the ring buffer locks. If
4070 * we get the lock then all is fine, if not, then continue
4071 * to do the read, but this can corrupt the ring buffer,
4072 * so it must be permanently disabled from future writes.
4073 * Reading from NMI is a oneshot deal.
4075 if (raw_spin_trylock(&cpu_buffer->reader_lock))
4078 /* Continue without locking, but disable the ring buffer */
4079 atomic_inc(&cpu_buffer->record_disabled);
4084 rb_reader_unlock(struct ring_buffer_per_cpu *cpu_buffer, bool locked)
4087 raw_spin_unlock(&cpu_buffer->reader_lock);
4092 * ring_buffer_peek - peek at the next event to be read
4093 * @buffer: The ring buffer to read
4094 * @cpu: The cpu to peak at
4095 * @ts: The timestamp counter of this event.
4096 * @lost_events: a variable to store if events were lost (may be NULL)
4098 * This will return the event that will be read next, but does
4099 * not consume the data.
4101 struct ring_buffer_event *
4102 ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
4103 unsigned long *lost_events)
4105 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4106 struct ring_buffer_event *event;
4107 unsigned long flags;
4110 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4114 local_irq_save(flags);
4115 dolock = rb_reader_lock(cpu_buffer);
4116 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
4117 if (event && event->type_len == RINGBUF_TYPE_PADDING)
4118 rb_advance_reader(cpu_buffer);
4119 rb_reader_unlock(cpu_buffer, dolock);
4120 local_irq_restore(flags);
4122 if (event && event->type_len == RINGBUF_TYPE_PADDING)
4129 * ring_buffer_iter_peek - peek at the next event to be read
4130 * @iter: The ring buffer iterator
4131 * @ts: The timestamp counter of this event.
4133 * This will return the event that will be read next, but does
4134 * not increment the iterator.
4136 struct ring_buffer_event *
4137 ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts)
4139 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4140 struct ring_buffer_event *event;
4141 unsigned long flags;
4144 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
4145 event = rb_iter_peek(iter, ts);
4146 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
4148 if (event && event->type_len == RINGBUF_TYPE_PADDING)
4155 * ring_buffer_consume - return an event and consume it
4156 * @buffer: The ring buffer to get the next event from
4157 * @cpu: the cpu to read the buffer from
4158 * @ts: a variable to store the timestamp (may be NULL)
4159 * @lost_events: a variable to store if events were lost (may be NULL)
4161 * Returns the next event in the ring buffer, and that event is consumed.
4162 * Meaning, that sequential reads will keep returning a different event,
4163 * and eventually empty the ring buffer if the producer is slower.
4165 struct ring_buffer_event *
4166 ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
4167 unsigned long *lost_events)
4169 struct ring_buffer_per_cpu *cpu_buffer;
4170 struct ring_buffer_event *event = NULL;
4171 unsigned long flags;
4175 /* might be called in atomic */
4178 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4181 cpu_buffer = buffer->buffers[cpu];
4182 local_irq_save(flags);
4183 dolock = rb_reader_lock(cpu_buffer);
4185 event = rb_buffer_peek(cpu_buffer, ts, lost_events);
4187 cpu_buffer->lost_events = 0;
4188 rb_advance_reader(cpu_buffer);
4191 rb_reader_unlock(cpu_buffer, dolock);
4192 local_irq_restore(flags);
4197 if (event && event->type_len == RINGBUF_TYPE_PADDING)
4202 EXPORT_SYMBOL_GPL(ring_buffer_consume);
4205 * ring_buffer_read_prepare - Prepare for a non consuming read of the buffer
4206 * @buffer: The ring buffer to read from
4207 * @cpu: The cpu buffer to iterate over
4209 * This performs the initial preparations necessary to iterate
4210 * through the buffer. Memory is allocated, buffer recording
4211 * is disabled, and the iterator pointer is returned to the caller.
4213 * Disabling buffer recording prevents the reading from being
4214 * corrupted. This is not a consuming read, so a producer is not
4217 * After a sequence of ring_buffer_read_prepare calls, the user is
4218 * expected to make at least one call to ring_buffer_read_prepare_sync.
4219 * Afterwards, ring_buffer_read_start is invoked to get things going
4222 * This overall must be paired with ring_buffer_read_finish.
4224 struct ring_buffer_iter *
4225 ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu)
4227 struct ring_buffer_per_cpu *cpu_buffer;
4228 struct ring_buffer_iter *iter;
4230 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4233 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
4237 cpu_buffer = buffer->buffers[cpu];
4239 iter->cpu_buffer = cpu_buffer;
4241 atomic_inc(&buffer->resize_disabled);
4242 atomic_inc(&cpu_buffer->record_disabled);
4246 EXPORT_SYMBOL_GPL(ring_buffer_read_prepare);
4249 * ring_buffer_read_prepare_sync - Synchronize a set of prepare calls
4251 * All previously invoked ring_buffer_read_prepare calls to prepare
4252 * iterators will be synchronized. Afterwards, read_buffer_read_start
4253 * calls on those iterators are allowed.
4256 ring_buffer_read_prepare_sync(void)
4260 EXPORT_SYMBOL_GPL(ring_buffer_read_prepare_sync);
4263 * ring_buffer_read_start - start a non consuming read of the buffer
4264 * @iter: The iterator returned by ring_buffer_read_prepare
4266 * This finalizes the startup of an iteration through the buffer.
4267 * The iterator comes from a call to ring_buffer_read_prepare and
4268 * an intervening ring_buffer_read_prepare_sync must have been
4271 * Must be paired with ring_buffer_read_finish.
4274 ring_buffer_read_start(struct ring_buffer_iter *iter)
4276 struct ring_buffer_per_cpu *cpu_buffer;
4277 unsigned long flags;
4282 cpu_buffer = iter->cpu_buffer;
4284 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
4285 arch_spin_lock(&cpu_buffer->lock);
4286 rb_iter_reset(iter);
4287 arch_spin_unlock(&cpu_buffer->lock);
4288 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
4290 EXPORT_SYMBOL_GPL(ring_buffer_read_start);
4293 * ring_buffer_read_finish - finish reading the iterator of the buffer
4294 * @iter: The iterator retrieved by ring_buffer_start
4296 * This re-enables the recording to the buffer, and frees the
4300 ring_buffer_read_finish(struct ring_buffer_iter *iter)
4302 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4303 unsigned long flags;
4306 * Ring buffer is disabled from recording, here's a good place
4307 * to check the integrity of the ring buffer.
4308 * Must prevent readers from trying to read, as the check
4309 * clears the HEAD page and readers require it.
4311 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
4312 rb_check_pages(cpu_buffer);
4313 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
4315 atomic_dec(&cpu_buffer->record_disabled);
4316 atomic_dec(&cpu_buffer->buffer->resize_disabled);
4319 EXPORT_SYMBOL_GPL(ring_buffer_read_finish);
4322 * ring_buffer_read - read the next item in the ring buffer by the iterator
4323 * @iter: The ring buffer iterator
4324 * @ts: The time stamp of the event read.
4326 * This reads the next event in the ring buffer and increments the iterator.
4328 struct ring_buffer_event *
4329 ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts)
4331 struct ring_buffer_event *event;
4332 struct ring_buffer_per_cpu *cpu_buffer = iter->cpu_buffer;
4333 unsigned long flags;
4335 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
4337 event = rb_iter_peek(iter, ts);
4341 if (event->type_len == RINGBUF_TYPE_PADDING)
4344 rb_advance_iter(iter);
4346 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
4350 EXPORT_SYMBOL_GPL(ring_buffer_read);
4353 * ring_buffer_size - return the size of the ring buffer (in bytes)
4354 * @buffer: The ring buffer.
4356 unsigned long ring_buffer_size(struct ring_buffer *buffer, int cpu)
4359 * Earlier, this method returned
4360 * BUF_PAGE_SIZE * buffer->nr_pages
4361 * Since the nr_pages field is now removed, we have converted this to
4362 * return the per cpu buffer value.
4364 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4367 return BUF_PAGE_SIZE * buffer->buffers[cpu]->nr_pages;
4369 EXPORT_SYMBOL_GPL(ring_buffer_size);
4372 rb_reset_cpu(struct ring_buffer_per_cpu *cpu_buffer)
4374 rb_head_page_deactivate(cpu_buffer);
4376 cpu_buffer->head_page
4377 = list_entry(cpu_buffer->pages, struct buffer_page, list);
4378 local_set(&cpu_buffer->head_page->write, 0);
4379 local_set(&cpu_buffer->head_page->entries, 0);
4380 local_set(&cpu_buffer->head_page->page->commit, 0);
4382 cpu_buffer->head_page->read = 0;
4384 cpu_buffer->tail_page = cpu_buffer->head_page;
4385 cpu_buffer->commit_page = cpu_buffer->head_page;
4387 INIT_LIST_HEAD(&cpu_buffer->reader_page->list);
4388 INIT_LIST_HEAD(&cpu_buffer->new_pages);
4389 local_set(&cpu_buffer->reader_page->write, 0);
4390 local_set(&cpu_buffer->reader_page->entries, 0);
4391 local_set(&cpu_buffer->reader_page->page->commit, 0);
4392 cpu_buffer->reader_page->read = 0;
4394 local_set(&cpu_buffer->entries_bytes, 0);
4395 local_set(&cpu_buffer->overrun, 0);
4396 local_set(&cpu_buffer->commit_overrun, 0);
4397 local_set(&cpu_buffer->dropped_events, 0);
4398 local_set(&cpu_buffer->entries, 0);
4399 local_set(&cpu_buffer->committing, 0);
4400 local_set(&cpu_buffer->commits, 0);
4401 local_set(&cpu_buffer->pages_touched, 0);
4402 local_set(&cpu_buffer->pages_read, 0);
4403 cpu_buffer->last_pages_touch = 0;
4404 cpu_buffer->shortest_full = 0;
4405 cpu_buffer->read = 0;
4406 cpu_buffer->read_bytes = 0;
4408 cpu_buffer->write_stamp = 0;
4409 cpu_buffer->read_stamp = 0;
4411 cpu_buffer->lost_events = 0;
4412 cpu_buffer->last_overrun = 0;
4414 rb_head_page_activate(cpu_buffer);
4418 * ring_buffer_reset_cpu - reset a ring buffer per CPU buffer
4419 * @buffer: The ring buffer to reset a per cpu buffer of
4420 * @cpu: The CPU buffer to be reset
4422 void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu)
4424 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4425 unsigned long flags;
4427 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4430 atomic_inc(&buffer->resize_disabled);
4431 atomic_inc(&cpu_buffer->record_disabled);
4433 /* Make sure all commits have finished */
4436 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
4438 if (RB_WARN_ON(cpu_buffer, local_read(&cpu_buffer->committing)))
4441 arch_spin_lock(&cpu_buffer->lock);
4443 rb_reset_cpu(cpu_buffer);
4445 arch_spin_unlock(&cpu_buffer->lock);
4448 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
4450 atomic_dec(&cpu_buffer->record_disabled);
4451 atomic_dec(&buffer->resize_disabled);
4453 EXPORT_SYMBOL_GPL(ring_buffer_reset_cpu);
4456 * ring_buffer_reset - reset a ring buffer
4457 * @buffer: The ring buffer to reset all cpu buffers
4459 void ring_buffer_reset(struct ring_buffer *buffer)
4463 for_each_buffer_cpu(buffer, cpu)
4464 ring_buffer_reset_cpu(buffer, cpu);
4466 EXPORT_SYMBOL_GPL(ring_buffer_reset);
4469 * rind_buffer_empty - is the ring buffer empty?
4470 * @buffer: The ring buffer to test
4472 bool ring_buffer_empty(struct ring_buffer *buffer)
4474 struct ring_buffer_per_cpu *cpu_buffer;
4475 unsigned long flags;
4480 /* yes this is racy, but if you don't like the race, lock the buffer */
4481 for_each_buffer_cpu(buffer, cpu) {
4482 cpu_buffer = buffer->buffers[cpu];
4483 local_irq_save(flags);
4484 dolock = rb_reader_lock(cpu_buffer);
4485 ret = rb_per_cpu_empty(cpu_buffer);
4486 rb_reader_unlock(cpu_buffer, dolock);
4487 local_irq_restore(flags);
4495 EXPORT_SYMBOL_GPL(ring_buffer_empty);
4498 * ring_buffer_empty_cpu - is a cpu buffer of a ring buffer empty?
4499 * @buffer: The ring buffer
4500 * @cpu: The CPU buffer to test
4502 bool ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu)
4504 struct ring_buffer_per_cpu *cpu_buffer;
4505 unsigned long flags;
4509 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4512 cpu_buffer = buffer->buffers[cpu];
4513 local_irq_save(flags);
4514 dolock = rb_reader_lock(cpu_buffer);
4515 ret = rb_per_cpu_empty(cpu_buffer);
4516 rb_reader_unlock(cpu_buffer, dolock);
4517 local_irq_restore(flags);
4521 EXPORT_SYMBOL_GPL(ring_buffer_empty_cpu);
4523 #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
4525 * ring_buffer_swap_cpu - swap a CPU buffer between two ring buffers
4526 * @buffer_a: One buffer to swap with
4527 * @buffer_b: The other buffer to swap with
4529 * This function is useful for tracers that want to take a "snapshot"
4530 * of a CPU buffer and has another back up buffer lying around.
4531 * it is expected that the tracer handles the cpu buffer not being
4532 * used at the moment.
4534 int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
4535 struct ring_buffer *buffer_b, int cpu)
4537 struct ring_buffer_per_cpu *cpu_buffer_a;
4538 struct ring_buffer_per_cpu *cpu_buffer_b;
4541 if (!cpumask_test_cpu(cpu, buffer_a->cpumask) ||
4542 !cpumask_test_cpu(cpu, buffer_b->cpumask))
4545 cpu_buffer_a = buffer_a->buffers[cpu];
4546 cpu_buffer_b = buffer_b->buffers[cpu];
4548 /* At least make sure the two buffers are somewhat the same */
4549 if (cpu_buffer_a->nr_pages != cpu_buffer_b->nr_pages)
4554 if (atomic_read(&buffer_a->record_disabled))
4557 if (atomic_read(&buffer_b->record_disabled))
4560 if (atomic_read(&cpu_buffer_a->record_disabled))
4563 if (atomic_read(&cpu_buffer_b->record_disabled))
4567 * We can't do a synchronize_rcu here because this
4568 * function can be called in atomic context.
4569 * Normally this will be called from the same CPU as cpu.
4570 * If not it's up to the caller to protect this.
4572 atomic_inc(&cpu_buffer_a->record_disabled);
4573 atomic_inc(&cpu_buffer_b->record_disabled);
4576 if (local_read(&cpu_buffer_a->committing))
4578 if (local_read(&cpu_buffer_b->committing))
4581 buffer_a->buffers[cpu] = cpu_buffer_b;
4582 buffer_b->buffers[cpu] = cpu_buffer_a;
4584 cpu_buffer_b->buffer = buffer_a;
4585 cpu_buffer_a->buffer = buffer_b;
4590 atomic_dec(&cpu_buffer_a->record_disabled);
4591 atomic_dec(&cpu_buffer_b->record_disabled);
4595 EXPORT_SYMBOL_GPL(ring_buffer_swap_cpu);
4596 #endif /* CONFIG_RING_BUFFER_ALLOW_SWAP */
4599 * ring_buffer_alloc_read_page - allocate a page to read from buffer
4600 * @buffer: the buffer to allocate for.
4601 * @cpu: the cpu buffer to allocate.
4603 * This function is used in conjunction with ring_buffer_read_page.
4604 * When reading a full page from the ring buffer, these functions
4605 * can be used to speed up the process. The calling function should
4606 * allocate a few pages first with this function. Then when it
4607 * needs to get pages from the ring buffer, it passes the result
4608 * of this function into ring_buffer_read_page, which will swap
4609 * the page that was allocated, with the read page of the buffer.
4612 * The page allocated, or ERR_PTR
4614 void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu)
4616 struct ring_buffer_per_cpu *cpu_buffer;
4617 struct buffer_data_page *bpage = NULL;
4618 unsigned long flags;
4621 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4622 return ERR_PTR(-ENODEV);
4624 cpu_buffer = buffer->buffers[cpu];
4625 local_irq_save(flags);
4626 arch_spin_lock(&cpu_buffer->lock);
4628 if (cpu_buffer->free_page) {
4629 bpage = cpu_buffer->free_page;
4630 cpu_buffer->free_page = NULL;
4633 arch_spin_unlock(&cpu_buffer->lock);
4634 local_irq_restore(flags);
4639 page = alloc_pages_node(cpu_to_node(cpu),
4640 GFP_KERNEL | __GFP_NORETRY, 0);
4642 return ERR_PTR(-ENOMEM);
4644 bpage = page_address(page);
4647 rb_init_page(bpage);
4651 EXPORT_SYMBOL_GPL(ring_buffer_alloc_read_page);
4654 * ring_buffer_free_read_page - free an allocated read page
4655 * @buffer: the buffer the page was allocate for
4656 * @cpu: the cpu buffer the page came from
4657 * @data: the page to free
4659 * Free a page allocated from ring_buffer_alloc_read_page.
4661 void ring_buffer_free_read_page(struct ring_buffer *buffer, int cpu, void *data)
4663 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4664 struct buffer_data_page *bpage = data;
4665 struct page *page = virt_to_page(bpage);
4666 unsigned long flags;
4668 /* If the page is still in use someplace else, we can't reuse it */
4669 if (page_ref_count(page) > 1)
4672 local_irq_save(flags);
4673 arch_spin_lock(&cpu_buffer->lock);
4675 if (!cpu_buffer->free_page) {
4676 cpu_buffer->free_page = bpage;
4680 arch_spin_unlock(&cpu_buffer->lock);
4681 local_irq_restore(flags);
4684 free_page((unsigned long)bpage);
4686 EXPORT_SYMBOL_GPL(ring_buffer_free_read_page);
4689 * ring_buffer_read_page - extract a page from the ring buffer
4690 * @buffer: buffer to extract from
4691 * @data_page: the page to use allocated from ring_buffer_alloc_read_page
4692 * @len: amount to extract
4693 * @cpu: the cpu of the buffer to extract
4694 * @full: should the extraction only happen when the page is full.
4696 * This function will pull out a page from the ring buffer and consume it.
4697 * @data_page must be the address of the variable that was returned
4698 * from ring_buffer_alloc_read_page. This is because the page might be used
4699 * to swap with a page in the ring buffer.
4702 * rpage = ring_buffer_alloc_read_page(buffer, cpu);
4703 * if (IS_ERR(rpage))
4704 * return PTR_ERR(rpage);
4705 * ret = ring_buffer_read_page(buffer, &rpage, len, cpu, 0);
4707 * process_page(rpage, ret);
4709 * When @full is set, the function will not return true unless
4710 * the writer is off the reader page.
4712 * Note: it is up to the calling functions to handle sleeps and wakeups.
4713 * The ring buffer can be used anywhere in the kernel and can not
4714 * blindly call wake_up. The layer that uses the ring buffer must be
4715 * responsible for that.
4718 * >=0 if data has been transferred, returns the offset of consumed data.
4719 * <0 if no data has been transferred.
4721 int ring_buffer_read_page(struct ring_buffer *buffer,
4722 void **data_page, size_t len, int cpu, int full)
4724 struct ring_buffer_per_cpu *cpu_buffer = buffer->buffers[cpu];
4725 struct ring_buffer_event *event;
4726 struct buffer_data_page *bpage;
4727 struct buffer_page *reader;
4728 unsigned long missed_events;
4729 unsigned long flags;
4730 unsigned int commit;
4735 if (!cpumask_test_cpu(cpu, buffer->cpumask))
4739 * If len is not big enough to hold the page header, then
4740 * we can not copy anything.
4742 if (len <= BUF_PAGE_HDR_SIZE)
4745 len -= BUF_PAGE_HDR_SIZE;
4754 raw_spin_lock_irqsave(&cpu_buffer->reader_lock, flags);
4756 reader = rb_get_reader_page(cpu_buffer);
4760 event = rb_reader_event(cpu_buffer);
4762 read = reader->read;
4763 commit = rb_page_commit(reader);
4765 /* Check if any events were dropped */
4766 missed_events = cpu_buffer->lost_events;
4769 * If this page has been partially read or
4770 * if len is not big enough to read the rest of the page or
4771 * a writer is still on the page, then
4772 * we must copy the data from the page to the buffer.
4773 * Otherwise, we can simply swap the page with the one passed in.
4775 if (read || (len < (commit - read)) ||
4776 cpu_buffer->reader_page == cpu_buffer->commit_page) {
4777 struct buffer_data_page *rpage = cpu_buffer->reader_page->page;
4778 unsigned int rpos = read;
4779 unsigned int pos = 0;
4785 if (len > (commit - read))
4786 len = (commit - read);
4788 /* Always keep the time extend and data together */
4789 size = rb_event_ts_length(event);
4794 /* save the current timestamp, since the user will need it */
4795 save_timestamp = cpu_buffer->read_stamp;
4797 /* Need to copy one event at a time */
4799 /* We need the size of one event, because
4800 * rb_advance_reader only advances by one event,
4801 * whereas rb_event_ts_length may include the size of
4802 * one or two events.
4803 * We have already ensured there's enough space if this
4804 * is a time extend. */
4805 size = rb_event_length(event);
4806 memcpy(bpage->data + pos, rpage->data + rpos, size);
4810 rb_advance_reader(cpu_buffer);
4811 rpos = reader->read;
4817 event = rb_reader_event(cpu_buffer);
4818 /* Always keep the time extend and data together */
4819 size = rb_event_ts_length(event);
4820 } while (len >= size);
4823 local_set(&bpage->commit, pos);
4824 bpage->time_stamp = save_timestamp;
4826 /* we copied everything to the beginning */
4829 /* update the entry counter */
4830 cpu_buffer->read += rb_page_entries(reader);
4831 cpu_buffer->read_bytes += BUF_PAGE_SIZE;
4833 /* swap the pages */
4834 rb_init_page(bpage);
4835 bpage = reader->page;
4836 reader->page = *data_page;
4837 local_set(&reader->write, 0);
4838 local_set(&reader->entries, 0);
4843 * Use the real_end for the data size,
4844 * This gives us a chance to store the lost events
4847 if (reader->real_end)
4848 local_set(&bpage->commit, reader->real_end);
4852 cpu_buffer->lost_events = 0;
4854 commit = local_read(&bpage->commit);
4856 * Set a flag in the commit field if we lost events
4858 if (missed_events) {
4859 /* If there is room at the end of the page to save the
4860 * missed events, then record it there.
4862 if (BUF_PAGE_SIZE - commit >= sizeof(missed_events)) {
4863 memcpy(&bpage->data[commit], &missed_events,
4864 sizeof(missed_events));
4865 local_add(RB_MISSED_STORED, &bpage->commit);
4866 commit += sizeof(missed_events);
4868 local_add(RB_MISSED_EVENTS, &bpage->commit);
4872 * This page may be off to user land. Zero it out here.
4874 if (commit < BUF_PAGE_SIZE)
4875 memset(&bpage->data[commit], 0, BUF_PAGE_SIZE - commit);
4878 raw_spin_unlock_irqrestore(&cpu_buffer->reader_lock, flags);
4883 EXPORT_SYMBOL_GPL(ring_buffer_read_page);
4886 * We only allocate new buffers, never free them if the CPU goes down.
4887 * If we were to free the buffer, then the user would lose any trace that was in
4890 int trace_rb_cpu_prepare(unsigned int cpu, struct hlist_node *node)
4892 struct ring_buffer *buffer;
4895 unsigned long nr_pages;
4897 buffer = container_of(node, struct ring_buffer, node);
4898 if (cpumask_test_cpu(cpu, buffer->cpumask))
4903 /* check if all cpu sizes are same */
4904 for_each_buffer_cpu(buffer, cpu_i) {
4905 /* fill in the size from first enabled cpu */
4907 nr_pages = buffer->buffers[cpu_i]->nr_pages;
4908 if (nr_pages != buffer->buffers[cpu_i]->nr_pages) {
4913 /* allocate minimum pages, user can later expand it */
4916 buffer->buffers[cpu] =
4917 rb_allocate_cpu_buffer(buffer, nr_pages, cpu);
4918 if (!buffer->buffers[cpu]) {
4919 WARN(1, "failed to allocate ring buffer on CPU %u\n",
4924 cpumask_set_cpu(cpu, buffer->cpumask);
4928 #ifdef CONFIG_RING_BUFFER_STARTUP_TEST
4930 * This is a basic integrity check of the ring buffer.
4931 * Late in the boot cycle this test will run when configured in.
4932 * It will kick off a thread per CPU that will go into a loop
4933 * writing to the per cpu ring buffer various sizes of data.
4934 * Some of the data will be large items, some small.
4936 * Another thread is created that goes into a spin, sending out
4937 * IPIs to the other CPUs to also write into the ring buffer.
4938 * this is to test the nesting ability of the buffer.
4940 * Basic stats are recorded and reported. If something in the
4941 * ring buffer should happen that's not expected, a big warning
4942 * is displayed and all ring buffers are disabled.
4944 static struct task_struct *rb_threads[NR_CPUS] __initdata;
4946 struct rb_test_data {
4947 struct ring_buffer *buffer;
4948 unsigned long events;
4949 unsigned long bytes_written;
4950 unsigned long bytes_alloc;
4951 unsigned long bytes_dropped;
4952 unsigned long events_nested;
4953 unsigned long bytes_written_nested;
4954 unsigned long bytes_alloc_nested;
4955 unsigned long bytes_dropped_nested;
4956 int min_size_nested;
4957 int max_size_nested;
4964 static struct rb_test_data rb_data[NR_CPUS] __initdata;
4967 #define RB_TEST_BUFFER_SIZE 1048576
4969 static char rb_string[] __initdata =
4970 "abcdefghijklmnopqrstuvwxyz1234567890!@#$%^&*()?+\\"
4971 "?+|:';\",.<>/?abcdefghijklmnopqrstuvwxyz1234567890"
4972 "!@#$%^&*()?+\\?+|:';\",.<>/?abcdefghijklmnopqrstuv";
4974 static bool rb_test_started __initdata;
4981 static __init int rb_write_something(struct rb_test_data *data, bool nested)
4983 struct ring_buffer_event *event;
4984 struct rb_item *item;
4991 /* Have nested writes different that what is written */
4992 cnt = data->cnt + (nested ? 27 : 0);
4994 /* Multiply cnt by ~e, to make some unique increment */
4995 size = (data->cnt * 68 / 25) % (sizeof(rb_string) - 1);
4997 len = size + sizeof(struct rb_item);
4999 started = rb_test_started;
5000 /* read rb_test_started before checking buffer enabled */
5003 event = ring_buffer_lock_reserve(data->buffer, len);
5005 /* Ignore dropped events before test starts. */
5008 data->bytes_dropped += len;
5010 data->bytes_dropped_nested += len;
5015 event_len = ring_buffer_event_length(event);
5017 if (RB_WARN_ON(data->buffer, event_len < len))
5020 item = ring_buffer_event_data(event);
5022 memcpy(item->str, rb_string, size);
5025 data->bytes_alloc_nested += event_len;
5026 data->bytes_written_nested += len;
5027 data->events_nested++;
5028 if (!data->min_size_nested || len < data->min_size_nested)
5029 data->min_size_nested = len;
5030 if (len > data->max_size_nested)
5031 data->max_size_nested = len;
5033 data->bytes_alloc += event_len;
5034 data->bytes_written += len;
5036 if (!data->min_size || len < data->min_size)
5037 data->max_size = len;
5038 if (len > data->max_size)
5039 data->max_size = len;
5043 ring_buffer_unlock_commit(data->buffer, event);
5048 static __init int rb_test(void *arg)
5050 struct rb_test_data *data = arg;
5052 while (!kthread_should_stop()) {
5053 rb_write_something(data, false);
5056 set_current_state(TASK_INTERRUPTIBLE);
5057 /* Now sleep between a min of 100-300us and a max of 1ms */
5058 usleep_range(((data->cnt % 3) + 1) * 100, 1000);
5064 static __init void rb_ipi(void *ignore)
5066 struct rb_test_data *data;
5067 int cpu = smp_processor_id();
5069 data = &rb_data[cpu];
5070 rb_write_something(data, true);
5073 static __init int rb_hammer_test(void *arg)
5075 while (!kthread_should_stop()) {
5077 /* Send an IPI to all cpus to write data! */
5078 smp_call_function(rb_ipi, NULL, 1);
5079 /* No sleep, but for non preempt, let others run */
5086 static __init int test_ringbuffer(void)
5088 struct task_struct *rb_hammer;
5089 struct ring_buffer *buffer;
5093 pr_info("Running ring buffer tests...\n");
5095 buffer = ring_buffer_alloc(RB_TEST_BUFFER_SIZE, RB_FL_OVERWRITE);
5096 if (WARN_ON(!buffer))
5099 /* Disable buffer so that threads can't write to it yet */
5100 ring_buffer_record_off(buffer);
5102 for_each_online_cpu(cpu) {
5103 rb_data[cpu].buffer = buffer;
5104 rb_data[cpu].cpu = cpu;
5105 rb_data[cpu].cnt = cpu;
5106 rb_threads[cpu] = kthread_create(rb_test, &rb_data[cpu],
5107 "rbtester/%d", cpu);
5108 if (WARN_ON(IS_ERR(rb_threads[cpu]))) {
5109 pr_cont("FAILED\n");
5110 ret = PTR_ERR(rb_threads[cpu]);
5114 kthread_bind(rb_threads[cpu], cpu);
5115 wake_up_process(rb_threads[cpu]);
5118 /* Now create the rb hammer! */
5119 rb_hammer = kthread_run(rb_hammer_test, NULL, "rbhammer");
5120 if (WARN_ON(IS_ERR(rb_hammer))) {
5121 pr_cont("FAILED\n");
5122 ret = PTR_ERR(rb_hammer);
5126 ring_buffer_record_on(buffer);
5128 * Show buffer is enabled before setting rb_test_started.
5129 * Yes there's a small race window where events could be
5130 * dropped and the thread wont catch it. But when a ring
5131 * buffer gets enabled, there will always be some kind of
5132 * delay before other CPUs see it. Thus, we don't care about
5133 * those dropped events. We care about events dropped after
5134 * the threads see that the buffer is active.
5137 rb_test_started = true;
5139 set_current_state(TASK_INTERRUPTIBLE);
5140 /* Just run for 10 seconds */;
5141 schedule_timeout(10 * HZ);
5143 kthread_stop(rb_hammer);
5146 for_each_online_cpu(cpu) {
5147 if (!rb_threads[cpu])
5149 kthread_stop(rb_threads[cpu]);
5152 ring_buffer_free(buffer);
5157 pr_info("finished\n");
5158 for_each_online_cpu(cpu) {
5159 struct ring_buffer_event *event;
5160 struct rb_test_data *data = &rb_data[cpu];
5161 struct rb_item *item;
5162 unsigned long total_events;
5163 unsigned long total_dropped;
5164 unsigned long total_written;
5165 unsigned long total_alloc;
5166 unsigned long total_read = 0;
5167 unsigned long total_size = 0;
5168 unsigned long total_len = 0;
5169 unsigned long total_lost = 0;
5172 int small_event_size;
5176 total_events = data->events + data->events_nested;
5177 total_written = data->bytes_written + data->bytes_written_nested;
5178 total_alloc = data->bytes_alloc + data->bytes_alloc_nested;
5179 total_dropped = data->bytes_dropped + data->bytes_dropped_nested;
5181 big_event_size = data->max_size + data->max_size_nested;
5182 small_event_size = data->min_size + data->min_size_nested;
5184 pr_info("CPU %d:\n", cpu);
5185 pr_info(" events: %ld\n", total_events);
5186 pr_info(" dropped bytes: %ld\n", total_dropped);
5187 pr_info(" alloced bytes: %ld\n", total_alloc);
5188 pr_info(" written bytes: %ld\n", total_written);
5189 pr_info(" biggest event: %d\n", big_event_size);
5190 pr_info(" smallest event: %d\n", small_event_size);
5192 if (RB_WARN_ON(buffer, total_dropped))
5197 while ((event = ring_buffer_consume(buffer, cpu, NULL, &lost))) {
5199 item = ring_buffer_event_data(event);
5200 total_len += ring_buffer_event_length(event);
5201 total_size += item->size + sizeof(struct rb_item);
5202 if (memcmp(&item->str[0], rb_string, item->size) != 0) {
5203 pr_info("FAILED!\n");
5204 pr_info("buffer had: %.*s\n", item->size, item->str);
5205 pr_info("expected: %.*s\n", item->size, rb_string);
5206 RB_WARN_ON(buffer, 1);
5217 pr_info(" read events: %ld\n", total_read);
5218 pr_info(" lost events: %ld\n", total_lost);
5219 pr_info(" total events: %ld\n", total_lost + total_read);
5220 pr_info(" recorded len bytes: %ld\n", total_len);
5221 pr_info(" recorded size bytes: %ld\n", total_size);
5223 pr_info(" With dropped events, record len and size may not match\n"
5224 " alloced and written from above\n");
5226 if (RB_WARN_ON(buffer, total_len != total_alloc ||
5227 total_size != total_written))
5230 if (RB_WARN_ON(buffer, total_lost + total_read != total_events))
5236 pr_info("Ring buffer PASSED!\n");
5238 ring_buffer_free(buffer);
5242 late_initcall(test_ringbuffer);
5243 #endif /* CONFIG_RING_BUFFER_STARTUP_TEST */