Blame view

include/linux/ring_buffer.h 6.63 KB
7a8e76a38   Steven Rostedt   tracing: unified ...
1
2
  #ifndef _LINUX_RING_BUFFER_H
  #define _LINUX_RING_BUFFER_H
1744a21d5   Vegard Nossum   trace: annotate b...
3
  #include <linux/kmemcheck.h>
7a8e76a38   Steven Rostedt   tracing: unified ...
4
5
  #include <linux/mm.h>
  #include <linux/seq_file.h>
15693458c   Steven Rostedt (Red Hat)   tracing/ring-buff...
6
  #include <linux/poll.h>
7a8e76a38   Steven Rostedt   tracing: unified ...
7
8
9
10
11
  
  struct ring_buffer;
  struct ring_buffer_iter;
  
  /*
c3706f005   Wenji Huang   tracing: fix typo...
12
   * Don't refer to this struct directly, use functions below.
7a8e76a38   Steven Rostedt   tracing: unified ...
13
14
   */
  struct ring_buffer_event {
1744a21d5   Vegard Nossum   trace: annotate b...
15
  	kmemcheck_bitfield_begin(bitfield);
334d4169a   Lai Jiangshan   ring_buffer: comp...
16
  	u32		type_len:5, time_delta:27;
1744a21d5   Vegard Nossum   trace: annotate b...
17
  	kmemcheck_bitfield_end(bitfield);
7a8e76a38   Steven Rostedt   tracing: unified ...
18
19
20
21
22
23
  	u32		array[];
  };
  
  /**
   * enum ring_buffer_type - internal ring buffer types
   *
2d622719f   Tom Zanussi   tracing: add ring...
24
25
26
27
   * @RINGBUF_TYPE_PADDING:	Left over page padding or discarded event
   *				 If time_delta is 0:
   *				  array is ignored
   *				  size is variable depending on how much
7a8e76a38   Steven Rostedt   tracing: unified ...
28
   *				  padding is needed
2d622719f   Tom Zanussi   tracing: add ring...
29
   *				 If time_delta is non zero:
334d4169a   Lai Jiangshan   ring_buffer: comp...
30
31
   *				  array[0] holds the actual length
   *				  size = 4 + length (bytes)
7a8e76a38   Steven Rostedt   tracing: unified ...
32
33
34
35
36
37
   *
   * @RINGBUF_TYPE_TIME_EXTEND:	Extend the time delta
   *				 array[0] = time delta (28 .. 59)
   *				 size = 8 bytes
   *
   * @RINGBUF_TYPE_TIME_STAMP:	Sync time stamp with external clock
361b73d5c   Lai Jiangshan   ring_buffer: fix ...
38
39
   *				 array[0]    = tv_nsec
   *				 array[1..2] = tv_sec
7a8e76a38   Steven Rostedt   tracing: unified ...
40
41
   *				 size = 16 bytes
   *
334d4169a   Lai Jiangshan   ring_buffer: comp...
42
43
44
   * <= @RINGBUF_TYPE_DATA_TYPE_LEN_MAX:
   *				Data record
   *				 If type_len is zero:
7a8e76a38   Steven Rostedt   tracing: unified ...
45
   *				  array[0] holds the actual length
361b73d5c   Lai Jiangshan   ring_buffer: fix ...
46
   *				  array[1..(length+3)/4] holds data
334d4169a   Lai Jiangshan   ring_buffer: comp...
47
   *				  size = 4 + length (bytes)
7a8e76a38   Steven Rostedt   tracing: unified ...
48
   *				 else
334d4169a   Lai Jiangshan   ring_buffer: comp...
49
   *				  length = type_len << 2
361b73d5c   Lai Jiangshan   ring_buffer: fix ...
50
51
   *				  array[0..(length+3)/4-1] holds data
   *				  size = 4 + length (bytes)
7a8e76a38   Steven Rostedt   tracing: unified ...
52
53
   */
  enum ring_buffer_type {
334d4169a   Lai Jiangshan   ring_buffer: comp...
54
  	RINGBUF_TYPE_DATA_TYPE_LEN_MAX = 28,
7a8e76a38   Steven Rostedt   tracing: unified ...
55
56
57
58
  	RINGBUF_TYPE_PADDING,
  	RINGBUF_TYPE_TIME_EXTEND,
  	/* FIXME: RINGBUF_TYPE_TIME_STAMP not implemented */
  	RINGBUF_TYPE_TIME_STAMP,
7a8e76a38   Steven Rostedt   tracing: unified ...
59
60
61
62
  };
  
  unsigned ring_buffer_event_length(struct ring_buffer_event *event);
  void *ring_buffer_event_data(struct ring_buffer_event *event);
fa1b47dd8   Steven Rostedt   ring-buffer: add ...
63
  /*
fa1b47dd8   Steven Rostedt   ring-buffer: add ...
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
   * ring_buffer_discard_commit will remove an event that has not
   *   ben committed yet. If this is used, then ring_buffer_unlock_commit
   *   must not be called on the discarded event. This function
   *   will try to remove the event from the ring buffer completely
   *   if another event has not been written after it.
   *
   * Example use:
   *
   *  if (some_condition)
   *    ring_buffer_discard_commit(buffer, event);
   *  else
   *    ring_buffer_unlock_commit(buffer, event);
   */
  void ring_buffer_discard_commit(struct ring_buffer *buffer,
  				struct ring_buffer_event *event);
  
  /*
7a8e76a38   Steven Rostedt   tracing: unified ...
81
82
83
   * size is in bytes for each per CPU buffer.
   */
  struct ring_buffer *
1f8a6a10f   Peter Zijlstra   ring-buffer: pass...
84
85
86
87
88
89
90
91
92
93
94
95
  __ring_buffer_alloc(unsigned long size, unsigned flags, struct lock_class_key *key);
  
  /*
   * Because the ring buffer is generic, if other users of the ring buffer get
   * traced by ftrace, it can produce lockdep warnings. We need to keep each
   * ring buffer's lock class separate.
   */
  #define ring_buffer_alloc(size, flags)			\
  ({							\
  	static struct lock_class_key __key;		\
  	__ring_buffer_alloc((size), (flags), &__key);	\
  })
e30f53aad   Rabin Vincent   tracing: Do not b...
96
  int ring_buffer_wait(struct ring_buffer *buffer, int cpu, bool full);
15693458c   Steven Rostedt (Red Hat)   tracing/ring-buff...
97
98
  int ring_buffer_poll_wait(struct ring_buffer *buffer, int cpu,
  			  struct file *filp, poll_table *poll_table);
438ced172   Vaibhav Nagarnaik   ring-buffer: Add ...
99
  #define RING_BUFFER_ALL_CPUS -1
7a8e76a38   Steven Rostedt   tracing: unified ...
100
  void ring_buffer_free(struct ring_buffer *buffer);
438ced172   Vaibhav Nagarnaik   ring-buffer: Add ...
101
  int ring_buffer_resize(struct ring_buffer *buffer, unsigned long size, int cpu);
7a8e76a38   Steven Rostedt   tracing: unified ...
102

750912fa3   David Sharp   tracing: Add an '...
103
  void ring_buffer_change_overwrite(struct ring_buffer *buffer, int val);
0a9877514   Arnaldo Carvalho de Melo   ring_buffer: remo...
104
105
  struct ring_buffer_event *ring_buffer_lock_reserve(struct ring_buffer *buffer,
  						   unsigned long length);
7a8e76a38   Steven Rostedt   tracing: unified ...
106
  int ring_buffer_unlock_commit(struct ring_buffer *buffer,
0a9877514   Arnaldo Carvalho de Melo   ring_buffer: remo...
107
  			      struct ring_buffer_event *event);
7a8e76a38   Steven Rostedt   tracing: unified ...
108
109
110
111
  int ring_buffer_write(struct ring_buffer *buffer,
  		      unsigned long length, void *data);
  
  struct ring_buffer_event *
66a8cb95e   Steven Rostedt   ring-buffer: Add ...
112
113
  ring_buffer_peek(struct ring_buffer *buffer, int cpu, u64 *ts,
  		 unsigned long *lost_events);
7a8e76a38   Steven Rostedt   tracing: unified ...
114
  struct ring_buffer_event *
66a8cb95e   Steven Rostedt   ring-buffer: Add ...
115
116
  ring_buffer_consume(struct ring_buffer *buffer, int cpu, u64 *ts,
  		    unsigned long *lost_events);
7a8e76a38   Steven Rostedt   tracing: unified ...
117
118
  
  struct ring_buffer_iter *
72c9ddfd4   David Miller   ring-buffer: Make...
119
120
121
  ring_buffer_read_prepare(struct ring_buffer *buffer, int cpu);
  void ring_buffer_read_prepare_sync(void);
  void ring_buffer_read_start(struct ring_buffer_iter *iter);
7a8e76a38   Steven Rostedt   tracing: unified ...
122
123
124
125
126
127
128
129
  void ring_buffer_read_finish(struct ring_buffer_iter *iter);
  
  struct ring_buffer_event *
  ring_buffer_iter_peek(struct ring_buffer_iter *iter, u64 *ts);
  struct ring_buffer_event *
  ring_buffer_read(struct ring_buffer_iter *iter, u64 *ts);
  void ring_buffer_iter_reset(struct ring_buffer_iter *iter);
  int ring_buffer_iter_empty(struct ring_buffer_iter *iter);
438ced172   Vaibhav Nagarnaik   ring-buffer: Add ...
130
  unsigned long ring_buffer_size(struct ring_buffer *buffer, int cpu);
7a8e76a38   Steven Rostedt   tracing: unified ...
131
132
133
  
  void ring_buffer_reset_cpu(struct ring_buffer *buffer, int cpu);
  void ring_buffer_reset(struct ring_buffer *buffer);
85bac32c4   Steven Rostedt   ring-buffer: only...
134
  #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
7a8e76a38   Steven Rostedt   tracing: unified ...
135
136
  int ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
  			 struct ring_buffer *buffer_b, int cpu);
85bac32c4   Steven Rostedt   ring-buffer: only...
137
138
139
140
141
142
143
144
  #else
  static inline int
  ring_buffer_swap_cpu(struct ring_buffer *buffer_a,
  		     struct ring_buffer *buffer_b, int cpu)
  {
  	return -ENODEV;
  }
  #endif
7a8e76a38   Steven Rostedt   tracing: unified ...
145

3d4e204d8   Yaowei Bai   ring_buffer: ring...
146
147
  bool ring_buffer_empty(struct ring_buffer *buffer);
  bool ring_buffer_empty_cpu(struct ring_buffer *buffer, int cpu);
7a8e76a38   Steven Rostedt   tracing: unified ...
148
149
150
  
  void ring_buffer_record_disable(struct ring_buffer *buffer);
  void ring_buffer_record_enable(struct ring_buffer *buffer);
499e54705   Steven Rostedt   tracing/ring-buff...
151
152
153
  void ring_buffer_record_off(struct ring_buffer *buffer);
  void ring_buffer_record_on(struct ring_buffer *buffer);
  int ring_buffer_record_is_on(struct ring_buffer *buffer);
7a8e76a38   Steven Rostedt   tracing: unified ...
154
155
  void ring_buffer_record_disable_cpu(struct ring_buffer *buffer, int cpu);
  void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu);
50ecf2c3a   Yoshihiro YUNOMAE   ring-buffer: Chan...
156
  u64 ring_buffer_oldest_event_ts(struct ring_buffer *buffer, int cpu);
c64e148a3   Vaibhav Nagarnaik   trace: Add ring b...
157
  unsigned long ring_buffer_bytes_cpu(struct ring_buffer *buffer, int cpu);
7a8e76a38   Steven Rostedt   tracing: unified ...
158
159
  unsigned long ring_buffer_entries(struct ring_buffer *buffer);
  unsigned long ring_buffer_overruns(struct ring_buffer *buffer);
e09373f22   Robert Richter   ring_buffer: add ...
160
161
  unsigned long ring_buffer_entries_cpu(struct ring_buffer *buffer, int cpu);
  unsigned long ring_buffer_overrun_cpu(struct ring_buffer *buffer, int cpu);
f0d2c681a   Steven Rostedt   ring-buffer: add ...
162
  unsigned long ring_buffer_commit_overrun_cpu(struct ring_buffer *buffer, int cpu);
884bfe89a   Slava Pestov   ring-buffer: Add ...
163
  unsigned long ring_buffer_dropped_events_cpu(struct ring_buffer *buffer, int cpu);
ad964704b   Steven Rostedt (Red Hat)   ring-buffer: Add ...
164
  unsigned long ring_buffer_read_events_cpu(struct ring_buffer *buffer, int cpu);
7a8e76a38   Steven Rostedt   tracing: unified ...
165

37886f6a9   Steven Rostedt   ring-buffer: add ...
166
167
168
169
170
  u64 ring_buffer_time_stamp(struct ring_buffer *buffer, int cpu);
  void ring_buffer_normalize_time_stamp(struct ring_buffer *buffer,
  				      int cpu, u64 *ts);
  void ring_buffer_set_clock(struct ring_buffer *buffer,
  			   u64 (*clock)(void));
7a8e76a38   Steven Rostedt   tracing: unified ...
171

ef7a4a161   Steven Rostedt   ring-buffer: fix ...
172
  size_t ring_buffer_page_len(void *page);
7ea590640   Vaibhav Nagarnaik   tracing: Use NUMA...
173
  void *ring_buffer_alloc_read_page(struct ring_buffer *buffer, int cpu);
8789a9e7d   Steven Rostedt   ring-buffer: read...
174
  void ring_buffer_free_read_page(struct ring_buffer *buffer, void *data);
ef7a4a161   Steven Rostedt   ring-buffer: fix ...
175
176
  int ring_buffer_read_page(struct ring_buffer *buffer, void **data_page,
  			  size_t len, int cpu, int full);
8789a9e7d   Steven Rostedt   ring-buffer: read...
177

d1b182a8d   Steven Rostedt   tracing/events/ri...
178
179
180
181
  struct trace_seq;
  
  int ring_buffer_print_entry_header(struct trace_seq *s);
  int ring_buffer_print_page_header(struct trace_seq *s);
7a8e76a38   Steven Rostedt   tracing: unified ...
182
183
184
185
186
  enum ring_buffer_flags {
  	RB_FL_OVERWRITE		= 1 << 0,
  };
  
  #endif /* _LINUX_RING_BUFFER_H */