ring_buffer.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. #ifndef _LINUX_RING_BUFFER_H
  2. #define _LINUX_RING_BUFFER_H
  3. #include <linux/kmemcheck.h>
  4. #include <linux/mm.h>
  5. #include <linux/seq_file.h>
  6. struct ring_buffer;
  7. struct ring_buffer_iter;
  8. /*
  9. * Don't refer to this struct directly, use functions below.
  10. */
  11. struct ring_buffer_event {
  12. kmemcheck_bitfield_begin(bitfield);
  13. u32 type_len:5, time_delta:27;
  14. kmemcheck_bitfield_end(bitfield);
  15. u32 array[];
  16. };
  17. /**
  18. * enum ring_buffer_type - internal ring buffer types
  19. *
  20. * @RINGBUF_TYPE_PADDING: Left over page padding or discarded event
  21. * If time_delta is 0:
  22. * array is ignored
  23. * size is variable depending on how much
  24. * padding is needed
  25. * If time_delta is non zero:
  26. * array[0] holds the actual length
  27. * size = 4 + length (bytes)
  28. *
  29. * @RINGBUF_TYPE_TIME_EXTEND: Extend the time delta
  30. * array[0] = time delta (28 .. 59)
  31. * size = 8 bytes
  32. *
  33. * @RINGBUF_TYPE_TIME_STAMP: Sync time stamp with external clock
  34. * array[0] = tv_nsec
  35. * array[1..2] = tv_sec
  36. * size = 16 bytes
  37. *
  38. * <= @RINGBUF_TYPE_DATA_TYPE_LEN_MAX:
  39. * Data record
  40. * If type_len is zero:
  41. * array[0] holds the actual length
  42. * array[1..(length+3)/4] holds data
  43. * size = 4 + length (bytes)
  44. * else
  45. * length = type_len << 2
  46. * array[0..(length+3)/4-1] holds data
  47. * size = 4 + length (bytes)
  48. */
  49. enum ring_buffer_type {
  50. RINGBUF_TYPE_DATA_TYPE_LEN_MAX = 28,
  51. RINGBUF_TYPE_PADDING,
  52. RINGBUF_TYPE_TIME_EXTEND,
  53. /* FIXME: RINGBUF_TYPE_TIME_STAMP not implemented */
  54. RINGBUF_TYPE_TIME_STAMP,
  55. };
  56. unsigned ring_buffer_event_length(struct ring_buffer_event *event);
  57. void *ring_buffer_event_data(struct ring_buffer_event *event);
  58. /**
  59. * ring_buffer_event_time_delta - return the delta timestamp of the event
  60. * @event: the event to get the delta timestamp of
  61. *
  62. * The delta timestamp is the 27 bit timestamp since the last event.
  63. */
  64. static inline unsigned
  65. ring_buffer_event_time_delta(struct ring_buffer_event *event)
  66. {
  67. return event->time_delta;
  68. }
  69. /*
  70. * ring_buffer_discard_commit will remove an event that has not
  71. * ben committed yet. If this is used, then ring_buffer_unlock_commit
  72. * must not be called on the discarded event. This function
  73. * will try to remove the event from the ring buffer completely
  74. * if another event has not been written after it.
  75. *
  76. * Example use:
  77. *
  78. * if (some_condition)
  79. * ring_buffer_discard_commit(buffer, event);
  80. * else
  81. * ring_buffer_unlock_commit(buffer, event);
  82. */
  83. void ring_buffer_discard_commit(struct ring_buffer *buffer,
  84. struct ring_buffer_event *event);
  85. /*
  86. * size is in bytes for each per CPU buffer.
  87. */
  88. struct ring_buffer *
  89. __ring_buffer_alloc(unsigned long size, unsigned flags, struct lock_class_key *key);
  90. /*
  91. * Because the ring buffer is generic, if other users of the ring buffer get
  92. * traced by ftrace, it can produce lockdep warnings. We need to keep each
  93. * ring buffer's lock class separate.
  94. */
  95. #define ring_buffer_alloc(size, flags) \
  96. ({ \
  97. static struct lock_class_key __key; \
  98. __ring_buffer_alloc((size), (flags), &__key); \
  99. })
  100. void ring_buffer_free(struct ring_buffer *buffer);
  101. int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size);
  102. struct ring_buffer_event *ring_buffer_lock_reserve(struct ring_buffer *buffer,
  103. unsigned long length);
  104. int ring_buffer_unlock_commit(struct ring_buffer *buffer,
  105. struct ring_buffer_event *event);
  106. int ring_buffer_write(struct ring_buffer *buffer,
  107. unsigned long length, void *data);
  108. struct ring_buffer_event *
  109. ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
  110. unsigned long *lost_events);
  111. struct ring_buffer_event *
  112. ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
  113. unsigned long *lost_events);
  114. struct ring_buffer_iter *
  115. ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu);
  116. void ring_buffer_read_prepare_sync(void);
  117. void ring_buffer_read_start(struct ring_buffer_iter *iter);
  118. void ring_buffer_read_finish(struct ring_buffer_iter *iter);
  119. struct ring_buffer_event *
  120. ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts);
  121. struct ring_buffer_event *
  122. ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts);
  123. void ring_buffer_iter_reset(struct ring_buffer_iter *iter);
  124. int ring_buffer_iter_empty(struct ring_buffer_iter *iter);
  125. unsigned long ring_buffer_size(struct ring_buffer *buffer);
  126. void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu);
  127. void ring_buffer_reset(struct ring_buffer *buffer);
  128. #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
  129. int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
  130. struct ring_buffer *buffer_b, int cpu);
  131. #else
  132. static inline int
  133. ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
  134. struct ring_buffer *buffer_b, int cpu)
  135. {
  136. return -ENODEV;
  137. }
  138. #endif
  139. int ring_buffer_empty(struct ring_buffer *buffer);
  140. int ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu);
  141. void ring_buffer_record_disable(struct ring_buffer *buffer);
  142. void ring_buffer_record_enable(struct ring_buffer *buffer);
  143. void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu);
  144. void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu);
  145. unsigned long ring_buffer_entries(struct ring_buffer *buffer);
  146. unsigned long ring_buffer_overruns(struct ring_buffer *buffer);
  147. unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu);
  148. unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu);
  149. unsigned long ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu);
  150. u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu);
  151. void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
  152. int cpu, u64 *ts);
  153. void ring_buffer_set_clock(struct ring_buffer *buffer,
  154. u64 (*clock)(void));
  155. size_t ring_buffer_page_len(void *page);
  156. void *ring_buffer_alloc_read_page(struct ring_buffer *buffer);
  157. void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data);
  158. int ring_buffer_read_page(struct ring_buffer *buffer, void **data_page,
  159. size_t len, int cpu, int full);
  160. struct trace_seq;
  161. int ring_buffer_print_entry_header(struct trace_seq *s);
  162. int ring_buffer_print_page_header(struct trace_seq *s);
  163. enum ring_buffer_flags {
  164. RB_FL_OVERWRITE = 1 << 0,
  165. };
  166. #endif /* _LINUX_RING_BUFFER_H */