fix: Adjust ranges for Ubuntu 4.15.0-119 kernel
[lttng-modules.git] / instrumentation / events / lttng-module / writeback.h
CommitLineData
9f36eaed 1/* SPDX-License-Identifier: GPL-2.0 */
b87700e3
AG
2#undef TRACE_SYSTEM
3#define TRACE_SYSTEM writeback
4
3bc29f0a
MD
5#if !defined(LTTNG_TRACE_WRITEBACK_H) || defined(TRACE_HEADER_MULTI_READ)
6#define LTTNG_TRACE_WRITEBACK_H
b87700e3 7
6ec43db8 8#include <probes/lttng-tracepoint-event.h>
aa634cd1 9#include <linux/tracepoint.h>
b87700e3
AG
10#include <linux/backing-dev.h>
11#include <linux/writeback.h>
12#include <linux/version.h>
13
14#ifndef _TRACE_WRITEBACK_DEF_
15#define _TRACE_WRITEBACK_DEF_
99a570c8 16
70f6fc80
MJ
17/*
18 * Vanilla kernels before 4.0 do not implement inode_to_bdi
19 * RHEL kernels before 3.10.0-327.10.1 do not implement inode_to_bdi
20 * RHEL kernel 3.10.0-327.10.1 has inode_to_bdi
21 * RHEL kernel 3.10.0-327.13.1 includes a partial merge of upstream
22 * commit a212b105b07d75b48b1a166378282e8a77fbf53d which inlines
23 * inode_to_bdi but not sb_is_blkdev_sb making it unusable by modules.
24 */
25#if (LINUX_VERSION_CODE < KERNEL_VERSION(4,0,0))
26static inline struct backing_dev_info *lttng_inode_to_bdi(struct inode *inode)
b87700e3 27{
70f6fc80
MJ
28 struct super_block *sb;
29
30 if (!inode)
31 return &noop_backing_dev_info;
32
33 sb = inode->i_sb;
b87700e3
AG
34
35 if (strcmp(sb->s_type->name, "bdev") == 0)
36 return inode->i_mapping->backing_dev_info;
37
38 return sb->s_bdi;
39}
70f6fc80
MJ
40#else
41static inline struct backing_dev_info *lttng_inode_to_bdi(struct inode *inode)
42{
43 return inode_to_bdi(inode);
44}
99a570c8
MD
45#endif /* #if (LINUX_VERSION_CODE < KERNEL_VERSION(4,0,0)) */
46
b87700e3
AG
47#endif
48
e1eb6145
MJ
49#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0))
50#define show_inode_state(state) \
51 __print_flags(state, "|", \
52 {I_DIRTY_SYNC, "I_DIRTY_SYNC"}, \
53 {I_DIRTY_DATASYNC, "I_DIRTY_DATASYNC"}, \
54 {I_DIRTY_PAGES, "I_DIRTY_PAGES"}, \
55 {I_NEW, "I_NEW"}, \
56 {I_WILL_FREE, "I_WILL_FREE"}, \
57 {I_FREEING, "I_FREEING"}, \
58 {I_CLEAR, "I_CLEAR"}, \
59 {I_SYNC, "I_SYNC"}, \
60 {I_DIRTY_TIME, "I_DIRTY_TIME"}, \
61 {I_REFERENCED, "I_REFERENCED"} \
62 )
63#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0))
99a570c8
MD
64#define show_inode_state(state) \
65 __print_flags(state, "|", \
66 {I_DIRTY_SYNC, "I_DIRTY_SYNC"}, \
67 {I_DIRTY_DATASYNC, "I_DIRTY_DATASYNC"}, \
68 {I_DIRTY_PAGES, "I_DIRTY_PAGES"}, \
69 {I_NEW, "I_NEW"}, \
70 {I_WILL_FREE, "I_WILL_FREE"}, \
71 {I_FREEING, "I_FREEING"}, \
72 {I_CLEAR, "I_CLEAR"}, \
73 {I_SYNC, "I_SYNC"}, \
74 {I_DIRTY_TIME, "I_DIRTY_TIME"}, \
75 {I_DIRTY_TIME_EXPIRED, "I_DIRTY_TIME_EXPIRED"}, \
76 {I_REFERENCED, "I_REFERENCED"} \
77 )
78#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0)) */
b87700e3
AG
79#define show_inode_state(state) \
80 __print_flags(state, "|", \
81 {I_DIRTY_SYNC, "I_DIRTY_SYNC"}, \
82 {I_DIRTY_DATASYNC, "I_DIRTY_DATASYNC"}, \
83 {I_DIRTY_PAGES, "I_DIRTY_PAGES"}, \
84 {I_NEW, "I_NEW"}, \
85 {I_WILL_FREE, "I_WILL_FREE"}, \
86 {I_FREEING, "I_FREEING"}, \
87 {I_CLEAR, "I_CLEAR"}, \
88 {I_SYNC, "I_SYNC"}, \
89 {I_REFERENCED, "I_REFERENCED"} \
90 )
99a570c8 91#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0)) */
b87700e3 92
99a570c8
MD
93#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0))
94
95LTTNG_TRACEPOINT_EVENT(writeback_dirty_page,
96 TP_PROTO(struct page *page, struct address_space *mapping),
97 TP_ARGS(page, mapping),
f127e61e
MD
98 TP_FIELDS(
99 ctf_array_text(char, name,
70f6fc80 100 mapping ? dev_name(lttng_inode_to_bdi(mapping->host)->dev) : "(unknown)", 32)
f127e61e
MD
101 ctf_integer(unsigned long, ino, mapping ? mapping->host->i_ino : 0)
102 ctf_integer(pgoff_t, index, page->index)
99a570c8
MD
103 )
104)
105
106LTTNG_TRACEPOINT_EVENT_CLASS(writeback_dirty_inode_template,
107 TP_PROTO(struct inode *inode, int flags),
108 TP_ARGS(inode, flags),
f127e61e 109 TP_FIELDS(
99a570c8 110 /* may be called for files on pseudo FSes w/ unregistered bdi */
f127e61e 111 ctf_array_text(char, name,
70f6fc80
MJ
112 lttng_inode_to_bdi(inode)->dev ?
113 dev_name(lttng_inode_to_bdi(inode)->dev) : "(unknown)", 32)
f127e61e
MD
114 ctf_integer(unsigned long, ino, inode->i_ino)
115 ctf_integer(unsigned long, state, inode->i_state)
116 ctf_integer(unsigned long, flags, flags)
99a570c8
MD
117 )
118)
119#define LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(name) \
120LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_dirty_inode_template, name, \
121 TP_PROTO(struct inode *inode, int flags), \
122 TP_ARGS(inode, flags))
123LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(writeback_dirty_inode_start)
124LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(writeback_dirty_inode)
125LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(writeback_mark_inode_dirty)
126
127LTTNG_TRACEPOINT_EVENT_CLASS(writeback_write_inode_template,
128 TP_PROTO(struct inode *inode, struct writeback_control *wbc),
129 TP_ARGS(inode, wbc),
f127e61e
MD
130 TP_FIELDS(
131 ctf_array_text(char, name,
70f6fc80 132 dev_name(lttng_inode_to_bdi(inode)->dev), 32)
f127e61e
MD
133 ctf_integer(unsigned long, ino, inode->i_ino)
134 ctf_integer(int, sync_mode, wbc->sync_mode)
99a570c8
MD
135 )
136)
137
138#define LTTNG_TRACEPOINT_EVENT_WRITEBACK_WRITE_INODE(name) \
139LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_write_inode_template, name, \
140 TP_PROTO(struct inode *inode, struct writeback_control *wbc), \
141 TP_ARGS(inode, wbc))
142LTTNG_TRACEPOINT_EVENT_WRITEBACK_WRITE_INODE(writeback_write_inode_start)
143LTTNG_TRACEPOINT_EVENT_WRITEBACK_WRITE_INODE(writeback_write_inode)
144
145#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0))
146
aa634cd1
JD
147LTTNG_TRACEPOINT_EVENT(writeback_dirty_page,
148 TP_PROTO(struct page *page, struct address_space *mapping),
149 TP_ARGS(page, mapping),
f127e61e
MD
150 TP_FIELDS(
151 ctf_array_text(char, name,
aa634cd1 152 mapping ? dev_name(mapping->backing_dev_info->dev) : "(unknown)", 32)
f127e61e
MD
153 ctf_integer(unsigned long, ino, mapping ? mapping->host->i_ino : 0)
154 ctf_integer(pgoff_t, index, page->index)
aa634cd1
JD
155 )
156)
157
158LTTNG_TRACEPOINT_EVENT_CLASS(writeback_dirty_inode_template,
159 TP_PROTO(struct inode *inode, int flags),
160 TP_ARGS(inode, flags),
f127e61e 161 TP_FIELDS(
aa634cd1 162 /* may be called for files on pseudo FSes w/ unregistered bdi */
f127e61e 163 ctf_array_text(char, name,
aa634cd1 164 inode->i_mapping->backing_dev_info->dev ?
f127e61e
MD
165 dev_name(inode->i_mapping->backing_dev_info->dev)
166 : "(unknown)", 32)
167 ctf_integer(unsigned long, ino, inode->i_ino)
168 ctf_integer(unsigned long, flags, flags)
aa634cd1
JD
169 )
170)
171#define LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(name) \
172LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_dirty_inode_template, name, \
173 TP_PROTO(struct inode *inode, int flags), \
174 TP_ARGS(inode, flags))
175LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(writeback_dirty_inode_start)
176LTTNG_TRACEPOINT_EVENT_WRITEBACK_DIRTY_INODE_TEMPLATE(writeback_dirty_inode)
177
178LTTNG_TRACEPOINT_EVENT_CLASS(writeback_write_inode_template,
179 TP_PROTO(struct inode *inode, struct writeback_control *wbc),
180 TP_ARGS(inode, wbc),
f127e61e
MD
181 TP_FIELDS(
182 ctf_array_text(char, name,
aa634cd1 183 dev_name(inode->i_mapping->backing_dev_info->dev), 32)
f127e61e
MD
184 ctf_integer(unsigned long, ino, inode->i_ino)
185 ctf_integer(int, sync_mode, wbc->sync_mode)
aa634cd1
JD
186 )
187)
188
189#define LTTNG_TRACEPOINT_EVENT_WRITEBACK_WRITE_INODE(name) \
190LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_write_inode_template, name, \
191 TP_PROTO(struct inode *inode, struct writeback_control *wbc), \
192 TP_ARGS(inode, wbc))
193LTTNG_TRACEPOINT_EVENT_WRITEBACK_WRITE_INODE(writeback_write_inode_start)
194LTTNG_TRACEPOINT_EVENT_WRITEBACK_WRITE_INODE(writeback_write_inode)
99a570c8 195
aa634cd1
JD
196#endif /* (LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0)) */
197
a40cb509
MD
198#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0))
199
200LTTNG_TRACEPOINT_EVENT_CLASS(writeback_work_class,
201 TP_PROTO(struct bdi_writeback *wb, struct wb_writeback_work *work),
202 TP_ARGS(wb, work),
203 TP_FIELDS(
204 ctf_array_text(char, name, wb->bdi->dev ? dev_name(wb->bdi->dev) :
205 "(unknown)", 32)
206 )
207)
208
209#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0))
99a570c8
MD
210
211LTTNG_TRACEPOINT_EVENT_CLASS(writeback_work_class,
212 TP_PROTO(struct backing_dev_info *bdi, struct wb_writeback_work *work),
213 TP_ARGS(bdi, work),
f127e61e
MD
214 TP_FIELDS(
215 ctf_array_text(char, name, bdi->dev ? dev_name(bdi->dev) :
99a570c8 216 "(unknown)", 32)
99a570c8
MD
217 )
218)
219
220#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0)) */
221
3bc29f0a 222LTTNG_TRACEPOINT_EVENT_CLASS(writeback_work_class,
b87700e3
AG
223 TP_PROTO(struct backing_dev_info *bdi, struct wb_writeback_work *work),
224 TP_ARGS(bdi, work),
f127e61e
MD
225 TP_FIELDS(
226 ctf_array_text(char, name,
227 dev_name(bdi->dev ? bdi->dev :
b87700e3 228 default_backing_dev_info.dev), 32)
b87700e3 229 )
b87700e3 230)
99a570c8
MD
231
232#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,0,0)) */
233
a40cb509
MD
234#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0))
235
236#define LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(name) \
237LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_work_class, name, \
238 TP_PROTO(struct bdi_writeback *wb, struct wb_writeback_work *work), \
239 TP_ARGS(wb, work))
240
241#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)) */
242
3bc29f0a
MD
243#define LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(name) \
244LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_work_class, name, \
b87700e3
AG
245 TP_PROTO(struct backing_dev_info *bdi, struct wb_writeback_work *work), \
246 TP_ARGS(bdi, work))
a40cb509
MD
247
248#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)) */
249
3bc29f0a
MD
250LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(writeback_nothread)
251LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(writeback_queue)
252LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(writeback_exec)
b87700e3 253#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0))
3bc29f0a
MD
254LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(writeback_start)
255LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(writeback_written)
256LTTNG_TRACEPOINT_EVENT_WRITEBACK_WORK_INSTANCE(writeback_wait)
b87700e3
AG
257#endif
258
3bc29f0a 259LTTNG_TRACEPOINT_EVENT(writeback_pages_written,
b87700e3
AG
260 TP_PROTO(long pages_written),
261 TP_ARGS(pages_written),
f127e61e
MD
262 TP_FIELDS(
263 ctf_integer(long, pages, pages_written)
264 )
b87700e3
AG
265)
266
a40cb509
MD
267#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0))
268
269LTTNG_TRACEPOINT_EVENT_CLASS(writeback_class,
270 TP_PROTO(struct bdi_writeback *wb),
271 TP_ARGS(wb),
272 TP_FIELDS(
273 ctf_array_text(char, name,
274 dev_name(wb->bdi->dev), 32)
275 )
276)
277
278#undef DEFINE_WRITEBACK_EVENT
279#define DEFINE_WRITEBACK_EVENT(name) \
280LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_class, name, \
281 TP_PROTO(struct bdi_writeback *wb), \
282 TP_ARGS(wb))
283
284#define DEFINE_WRITEBACK_EVENT_MAP(name, map) \
285LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(writeback_class, name, map, \
286 TP_PROTO(struct bdi_writeback *wb), \
287 TP_ARGS(wb))
288
289LTTNG_TRACEPOINT_EVENT(writeback_bdi_register,
290 TP_PROTO(struct backing_dev_info *bdi),
291 TP_ARGS(bdi),
292 TP_FIELDS(
293 ctf_array_text(char, name,
294 dev_name(bdi->dev), 32)
295 )
296)
297
298#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)) */
299
3bc29f0a 300LTTNG_TRACEPOINT_EVENT_CLASS(writeback_class,
b87700e3
AG
301 TP_PROTO(struct backing_dev_info *bdi),
302 TP_ARGS(bdi),
f127e61e
MD
303 TP_FIELDS(
304 ctf_array_text(char, name,
305 dev_name(bdi->dev), 32)
b87700e3
AG
306 )
307)
a40cb509 308
59fecd6c 309#undef DEFINE_WRITEBACK_EVENT
b87700e3 310#define DEFINE_WRITEBACK_EVENT(name) \
3bc29f0a 311LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_class, name, \
b87700e3
AG
312 TP_PROTO(struct backing_dev_info *bdi), \
313 TP_ARGS(bdi))
314
9cf29d3e 315#define DEFINE_WRITEBACK_EVENT_MAP(name, map) \
3bc29f0a 316LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(writeback_class, name, map, \
9cf29d3e
MD
317 TP_PROTO(struct backing_dev_info *bdi), \
318 TP_ARGS(bdi))
319
a40cb509
MD
320DEFINE_WRITEBACK_EVENT(writeback_bdi_register)
321
322#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)) */
323
b87700e3
AG
324DEFINE_WRITEBACK_EVENT(writeback_nowork)
325#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,38))
326DEFINE_WRITEBACK_EVENT(writeback_wake_background)
327#endif
328DEFINE_WRITEBACK_EVENT(writeback_wake_thread)
329DEFINE_WRITEBACK_EVENT(writeback_wake_forker_thread)
b87700e3
AG
330DEFINE_WRITEBACK_EVENT(writeback_bdi_unregister)
331DEFINE_WRITEBACK_EVENT(writeback_thread_start)
332DEFINE_WRITEBACK_EVENT(writeback_thread_stop)
333#if (LTTNG_KERNEL_RANGE(3,1,0, 3,2,0))
9cf29d3e
MD
334DEFINE_WRITEBACK_EVENT_MAP(balance_dirty_start, writeback_balance_dirty_start)
335DEFINE_WRITEBACK_EVENT_MAP(balance_dirty_wait, writeback_balance_dirty_wait)
336
3bc29f0a 337LTTNG_TRACEPOINT_EVENT_MAP(balance_dirty_written,
b87700e3 338
9cf29d3e 339 writeback_balance_dirty_written,
b87700e3
AG
340
341 TP_PROTO(struct backing_dev_info *bdi, int written),
342
343 TP_ARGS(bdi, written),
344
f127e61e
MD
345 TP_FIELDS(
346 ctf_array_text(char, name, dev_name(bdi->dev), 32)
347 ctf_integer(int, written, written)
b87700e3
AG
348 )
349)
350#endif
351
3bc29f0a 352LTTNG_TRACEPOINT_EVENT_CLASS(writeback_wbc_class,
b87700e3
AG
353 TP_PROTO(struct writeback_control *wbc, struct backing_dev_info *bdi),
354 TP_ARGS(wbc, bdi),
f127e61e
MD
355 TP_FIELDS(
356 ctf_array_text(char, name, dev_name(bdi->dev), 32)
357 ctf_integer(long, nr_to_write, wbc->nr_to_write)
358 ctf_integer(long, pages_skipped, wbc->pages_skipped)
359 ctf_integer(int, sync_mode, wbc->sync_mode)
360 ctf_integer(int, for_kupdate, wbc->for_kupdate)
361 ctf_integer(int, for_background, wbc->for_background)
362 ctf_integer(int, for_reclaim, wbc->for_reclaim)
363 ctf_integer(int, range_cyclic, wbc->range_cyclic)
b87700e3 364#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0))
f127e61e
MD
365 ctf_integer(int, more_io, wbc->more_io)
366 ctf_integer(unsigned long, older_than_this,
367 wbc->older_than_this ? *wbc->older_than_this : 0)
b87700e3 368#endif
f127e61e
MD
369 ctf_integer(long, range_start, (long) wbc->range_start)
370 ctf_integer(long, range_end, (long) wbc->range_end)
371 )
b87700e3
AG
372)
373
9cf29d3e 374#undef DEFINE_WBC_EVENT
3bc29f0a
MD
375#define LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(name, map) \
376LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(writeback_wbc_class, name, map, \
b87700e3
AG
377 TP_PROTO(struct writeback_control *wbc, struct backing_dev_info *bdi), \
378 TP_ARGS(wbc, bdi))
379#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0))
3bc29f0a
MD
380LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_writeback_start, writeback_wbc_writeback_start)
381LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_writeback_written, writeback_wbc_writeback_written)
382LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_writeback_wait, writeback_wbc_writeback_wait)
383LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_balance_dirty_start, writeback_wbc_balance_dirty_start)
384LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_balance_dirty_written, writeback_wbc_balance_dirty_written)
385LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_balance_dirty_wait, writeback_wbc_balance_dirty_wait)
b87700e3 386#endif
3bc29f0a 387LTTNG_TRACEPOINT_EVENT_WBC_INSTANCE(wbc_writepage, writeback_wbc_writepage)
b87700e3 388
f60ce55b
MJ
389#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0) || \
390 LTTNG_KERNEL_RANGE(5,8,6, 5,9,0) || \
391 LTTNG_KERNEL_RANGE(5,4,62, 5,5,0) || \
392 LTTNG_KERNEL_RANGE(4,19,143, 4,20,0) || \
393 LTTNG_KERNEL_RANGE(4,14,196, 4,15,0) || \
394 LTTNG_KERNEL_RANGE(4,9,235, 4,10,0) || \
e85a3521
MJ
395 LTTNG_KERNEL_RANGE(4,4,235, 4,5,0) || \
396 LTTNG_UBUNTU_KERNEL_RANGE(4,15,18,119, 4,16,0,0))
31410cca
MJ
397LTTNG_TRACEPOINT_EVENT(writeback_queue_io,
398 TP_PROTO(struct bdi_writeback *wb,
399 struct wb_writeback_work *work,
400 unsigned long dirtied_before,
401 int moved),
402 TP_ARGS(wb, work, dirtied_before, moved),
403 TP_FIELDS(
404 ctf_array_text(char, name, dev_name(wb->bdi->dev), 32)
405 ctf_integer(unsigned long, older, dirtied_before)
406 ctf_integer(int, moved, moved)
407 )
408)
409#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0))
3bc29f0a 410LTTNG_TRACEPOINT_EVENT(writeback_queue_io,
b87700e3 411 TP_PROTO(struct bdi_writeback *wb,
b87700e3 412 struct wb_writeback_work *work,
b87700e3 413 int moved),
b87700e3 414 TP_ARGS(wb, work, moved),
31410cca
MJ
415 TP_FIELDS(
416 ctf_array_text(char, name, dev_name(wb->bdi->dev), 32)
417 ctf_integer(int, moved, moved)
418 )
419)
420#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0))
421LTTNG_TRACEPOINT_EVENT(writeback_queue_io,
422 TP_PROTO(struct bdi_writeback *wb,
423 unsigned long *older_than_this,
424 int moved),
b87700e3 425 TP_ARGS(wb, older_than_this, moved),
f127e61e
MD
426 TP_FIELDS(
427 ctf_array_text(char, name, dev_name(wb->bdi->dev), 32)
f127e61e
MD
428 ctf_integer(unsigned long, older,
429 older_than_this ? *older_than_this : 0)
430 ctf_integer(long, age,
431 older_than_this ?
432 (jiffies - *older_than_this) * 1000 / HZ
433 : -1)
f127e61e 434 ctf_integer(int, moved, moved)
b87700e3 435 )
b87700e3 436)
31410cca 437#endif
b87700e3 438
b87a9840
MJ
439#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0))
440LTTNG_TRACEPOINT_EVENT_MAP(global_dirty_state,
441
442 writeback_global_dirty_state,
443
444 TP_PROTO(unsigned long background_thresh,
445 unsigned long dirty_thresh
446 ),
447
448 TP_ARGS(background_thresh,
449 dirty_thresh
450 ),
451
452 TP_FIELDS(
453 ctf_integer(unsigned long, nr_dirty, global_node_page_state(NR_FILE_DIRTY))
454 ctf_integer(unsigned long, nr_writeback, global_node_page_state(NR_WRITEBACK))
455 ctf_integer(unsigned long, nr_dirtied, global_node_page_state(NR_DIRTIED))
456 ctf_integer(unsigned long, nr_written, global_node_page_state(NR_WRITTEN))
457 ctf_integer(unsigned long, background_thresh, background_thresh)
458 ctf_integer(unsigned long, dirty_thresh, dirty_thresh)
459 ctf_integer(unsigned long, dirty_limit, global_dirty_limit)
460 )
461)
462#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
7ceeb15d
MJ
463LTTNG_TRACEPOINT_EVENT_MAP(global_dirty_state,
464
465 writeback_global_dirty_state,
466
467 TP_PROTO(unsigned long background_thresh,
468 unsigned long dirty_thresh
469 ),
470
471 TP_ARGS(background_thresh,
472 dirty_thresh
473 ),
474
475 TP_FIELDS(
476 ctf_integer(unsigned long, nr_dirty, global_node_page_state(NR_FILE_DIRTY))
477 ctf_integer(unsigned long, nr_writeback, global_node_page_state(NR_WRITEBACK))
478 ctf_integer(unsigned long, nr_unstable, global_node_page_state(NR_UNSTABLE_NFS))
479 ctf_integer(unsigned long, nr_dirtied, global_node_page_state(NR_DIRTIED))
480 ctf_integer(unsigned long, nr_written, global_node_page_state(NR_WRITTEN))
481 ctf_integer(unsigned long, background_thresh, background_thresh)
482 ctf_integer(unsigned long, dirty_thresh, dirty_thresh)
483 ctf_integer(unsigned long, dirty_limit, global_dirty_limit)
484 )
485)
31410cca 486#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0))
3bc29f0a 487LTTNG_TRACEPOINT_EVENT_MAP(global_dirty_state,
9cf29d3e
MD
488
489 writeback_global_dirty_state,
b87700e3
AG
490
491 TP_PROTO(unsigned long background_thresh,
492 unsigned long dirty_thresh
493 ),
494
495 TP_ARGS(background_thresh,
496 dirty_thresh
497 ),
498
f127e61e
MD
499 TP_FIELDS(
500 ctf_integer(unsigned long, nr_dirty, global_page_state(NR_FILE_DIRTY))
501 ctf_integer(unsigned long, nr_writeback, global_page_state(NR_WRITEBACK))
502 ctf_integer(unsigned long, nr_unstable, global_page_state(NR_UNSTABLE_NFS))
503 ctf_integer(unsigned long, nr_dirtied, global_page_state(NR_DIRTIED))
504 ctf_integer(unsigned long, nr_written, global_page_state(NR_WRITTEN))
505 ctf_integer(unsigned long, background_thresh, background_thresh)
506 ctf_integer(unsigned long, dirty_thresh, dirty_thresh)
507 ctf_integer(unsigned long, dirty_limit, global_dirty_limit)
b87700e3
AG
508 )
509)
510#endif
511
512#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0))
513
514#define KBps(x) ((x) << (PAGE_SHIFT - 10))
515
a40cb509
MD
516#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0))
517
518LTTNG_TRACEPOINT_EVENT_MAP(bdi_dirty_ratelimit,
519
520 writeback_bdi_dirty_ratelimit,
521
522 TP_PROTO(struct bdi_writeback *wb,
523 unsigned long dirty_rate,
524 unsigned long task_ratelimit),
525
526 TP_ARGS(wb, dirty_rate, task_ratelimit),
527
528 TP_FIELDS(
529 ctf_array_text(char, bdi, dev_name(wb->bdi->dev), 32)
530 ctf_integer(unsigned long, write_bw, KBps(wb->bdi->wb.write_bandwidth))
531 ctf_integer(unsigned long, avg_write_bw, KBps(wb->bdi->wb.avg_write_bandwidth))
532 ctf_integer(unsigned long, dirty_rate, KBps(dirty_rate))
533 ctf_integer(unsigned long, dirty_ratelimit, KBps(wb->bdi->wb.dirty_ratelimit))
534 ctf_integer(unsigned long, task_ratelimit, KBps(task_ratelimit))
535 ctf_integer(unsigned long, balanced_dirty_ratelimit,
536 KBps(wb->bdi->wb.balanced_dirty_ratelimit))
537 )
538)
539
540#elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0))
c7d89a6d 541
3bc29f0a 542LTTNG_TRACEPOINT_EVENT_MAP(bdi_dirty_ratelimit,
9cf29d3e
MD
543
544 writeback_bdi_dirty_ratelimit,
b87700e3
AG
545
546 TP_PROTO(struct backing_dev_info *bdi,
547 unsigned long dirty_rate,
548 unsigned long task_ratelimit),
549
550 TP_ARGS(bdi, dirty_rate, task_ratelimit),
551
f127e61e
MD
552 TP_FIELDS(
553 ctf_array_text(char, bdi, dev_name(bdi->dev), 32)
902947a4
MJ
554 ctf_integer(unsigned long, write_bw, KBps(bdi->wb.write_bandwidth))
555 ctf_integer(unsigned long, avg_write_bw, KBps(bdi->wb.avg_write_bandwidth))
f127e61e 556 ctf_integer(unsigned long, dirty_rate, KBps(dirty_rate))
902947a4 557 ctf_integer(unsigned long, dirty_ratelimit, KBps(bdi->wb.dirty_ratelimit))
f127e61e 558 ctf_integer(unsigned long, task_ratelimit, KBps(task_ratelimit))
902947a4
MJ
559 ctf_integer(unsigned long, balanced_dirty_ratelimit,
560 KBps(bdi->wb.balanced_dirty_ratelimit))
c7d89a6d
MD
561 )
562)
563
564#else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0)) */
565
566LTTNG_TRACEPOINT_EVENT_MAP(bdi_dirty_ratelimit,
567
568 writeback_bdi_dirty_ratelimit,
569
570 TP_PROTO(struct backing_dev_info *bdi,
571 unsigned long dirty_rate,
572 unsigned long task_ratelimit),
573
574 TP_ARGS(bdi, dirty_rate, task_ratelimit),
575
576 TP_FIELDS(
577 ctf_array_text(char, bdi, dev_name(bdi->dev), 32)
578 ctf_integer(unsigned long, write_bw, KBps(bdi->write_bandwidth))
579 ctf_integer(unsigned long, avg_write_bw, KBps(bdi->avg_write_bandwidth))
580 ctf_integer(unsigned long, dirty_rate, KBps(dirty_rate))
581 ctf_integer(unsigned long, dirty_ratelimit, KBps(bdi->dirty_ratelimit))
582 ctf_integer(unsigned long, task_ratelimit, KBps(task_ratelimit))
f127e61e 583 ctf_integer(unsigned long, balanced_dirty_ratelimit,
b87700e3 584 KBps(bdi->balanced_dirty_ratelimit))
b87700e3
AG
585 )
586)
587
c7d89a6d
MD
588#endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0)) */
589
a40cb509
MD
590#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0))
591
592LTTNG_TRACEPOINT_EVENT_MAP(balance_dirty_pages,
593
594 writeback_balance_dirty_pages,
595
596 TP_PROTO(struct bdi_writeback *wb,
597 unsigned long thresh,
598 unsigned long bg_thresh,
599 unsigned long dirty,
600 unsigned long bdi_thresh,
601 unsigned long bdi_dirty,
602 unsigned long dirty_ratelimit,
603 unsigned long task_ratelimit,
604 unsigned long dirtied,
605 unsigned long period,
606 long pause,
607 unsigned long start_time),
608
609 TP_ARGS(wb, thresh, bg_thresh, dirty, bdi_thresh, bdi_dirty,
610 dirty_ratelimit, task_ratelimit,
611 dirtied, period, pause, start_time
612 ),
613
614 TP_FIELDS(
615 ctf_array_text(char, bdi, dev_name(wb->bdi->dev), 32)
616 ctf_integer(unsigned long, limit, global_dirty_limit)
617 ctf_integer(unsigned long, setpoint,
618 (global_dirty_limit + (thresh + bg_thresh) / 2) / 2)
619 ctf_integer(unsigned long, dirty, dirty)
620 ctf_integer(unsigned long, bdi_setpoint,
621 ((global_dirty_limit + (thresh + bg_thresh) / 2) / 2) *
622 bdi_thresh / (thresh + 1))
623 ctf_integer(unsigned long, bdi_dirty, bdi_dirty)
624 ctf_integer(unsigned long, dirty_ratelimit,
625 KBps(dirty_ratelimit))
626 ctf_integer(unsigned long, task_ratelimit,
627 KBps(task_ratelimit))
628 ctf_integer(unsigned int, dirtied, dirtied)
629 ctf_integer(unsigned int, dirtied_pause,
630 current->nr_dirtied_pause)
631 ctf_integer(unsigned long, paused,
632 (jiffies - start_time) * 1000 / HZ)
633 ctf_integer(long, pause, pause * 1000 / HZ)
634 ctf_integer(unsigned long, period,
635 period * 1000 / HZ)
636 ctf_integer(long, think,
637 current->dirty_paused_when == 0 ? 0 :
638 (long)(jiffies - current->dirty_paused_when) * 1000/HZ)
639 )
640)
641
642#else /* #if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)) */
643
3bc29f0a 644LTTNG_TRACEPOINT_EVENT_MAP(balance_dirty_pages,
9cf29d3e
MD
645
646 writeback_balance_dirty_pages,
b87700e3
AG
647
648 TP_PROTO(struct backing_dev_info *bdi,
649 unsigned long thresh,
650 unsigned long bg_thresh,
651 unsigned long dirty,
652 unsigned long bdi_thresh,
653 unsigned long bdi_dirty,
654 unsigned long dirty_ratelimit,
655 unsigned long task_ratelimit,
656 unsigned long dirtied,
657#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
658 unsigned long period,
659#endif
660 long pause,
661 unsigned long start_time),
662
663 TP_ARGS(bdi, thresh, bg_thresh, dirty, bdi_thresh, bdi_dirty,
664 dirty_ratelimit, task_ratelimit,
665#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
f127e61e 666 dirtied, period, pause, start_time
b87700e3 667#else
f127e61e 668 dirtied, pause, start_time
b87700e3
AG
669#endif
670 ),
671
f127e61e
MD
672 TP_FIELDS(
673 ctf_array_text(char, bdi, dev_name(bdi->dev), 32)
674 ctf_integer(unsigned long, limit, global_dirty_limit)
675 ctf_integer(unsigned long, setpoint,
b87700e3 676 (global_dirty_limit + (thresh + bg_thresh) / 2) / 2)
f127e61e
MD
677 ctf_integer(unsigned long, dirty, dirty)
678 ctf_integer(unsigned long, bdi_setpoint,
b87700e3 679 ((global_dirty_limit + (thresh + bg_thresh) / 2) / 2) *
f127e61e
MD
680 bdi_thresh / (thresh + 1))
681 ctf_integer(unsigned long, bdi_dirty, bdi_dirty)
682 ctf_integer(unsigned long, dirty_ratelimit,
683 KBps(dirty_ratelimit))
684 ctf_integer(unsigned long, task_ratelimit,
685 KBps(task_ratelimit))
686 ctf_integer(unsigned int, dirtied, dirtied)
687 ctf_integer(unsigned int, dirtied_pause,
688 current->nr_dirtied_pause)
689 ctf_integer(unsigned long, paused,
690 (jiffies - start_time) * 1000 / HZ)
691 ctf_integer(long, pause, pause * 1000 / HZ)
b87700e3 692#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
f127e61e
MD
693 ctf_integer(unsigned long, period,
694 period * 1000 / HZ)
695 ctf_integer(long, think,
696 current->dirty_paused_when == 0 ? 0 :
697 (long)(jiffies - current->dirty_paused_when) * 1000/HZ)
b87700e3 698#endif
f127e61e 699 )
b87700e3 700)
a40cb509
MD
701#endif /* #else #if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)) */
702
703#endif /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) */
b87700e3
AG
704
705#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0))
3bc29f0a 706LTTNG_TRACEPOINT_EVENT(writeback_sb_inodes_requeue,
b87700e3
AG
707
708 TP_PROTO(struct inode *inode),
709 TP_ARGS(inode),
710
f127e61e
MD
711 TP_FIELDS(
712 ctf_array_text(char, name,
70f6fc80 713 dev_name(lttng_inode_to_bdi(inode)->dev), 32)
f127e61e
MD
714 ctf_integer(unsigned long, ino, inode->i_ino)
715 ctf_integer(unsigned long, state, inode->i_state)
716 ctf_integer(unsigned long, dirtied_when, inode->dirtied_when)
b87700e3
AG
717 )
718)
719#endif
720
721#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
3bc29f0a 722LTTNG_TRACEPOINT_EVENT_CLASS(writeback_congest_waited_template,
b87700e3
AG
723
724 TP_PROTO(unsigned int usec_timeout, unsigned int usec_delayed),
725
726 TP_ARGS(usec_timeout, usec_delayed),
727
f127e61e
MD
728 TP_FIELDS(
729 ctf_integer(unsigned int, usec_timeout, usec_timeout)
730 ctf_integer(unsigned int, usec_delayed, usec_delayed)
731 )
b87700e3
AG
732)
733
3bc29f0a 734LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_congest_waited_template, writeback_congestion_wait,
b87700e3
AG
735
736 TP_PROTO(unsigned int usec_timeout, unsigned int usec_delayed),
737
738 TP_ARGS(usec_timeout, usec_delayed)
739)
740
3bc29f0a 741LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_congest_waited_template, writeback_wait_iff_congested,
b87700e3
AG
742
743 TP_PROTO(unsigned int usec_timeout, unsigned int usec_delayed),
744
745 TP_ARGS(usec_timeout, usec_delayed)
746)
747#endif
748
749#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,1,0))
3bc29f0a 750LTTNG_TRACEPOINT_EVENT_CLASS(writeback_single_inode_template,
b87700e3
AG
751
752 TP_PROTO(struct inode *inode,
753 struct writeback_control *wbc,
754 unsigned long nr_to_write
755 ),
756
757 TP_ARGS(inode, wbc, nr_to_write),
758
f127e61e
MD
759 TP_FIELDS(
760 ctf_array_text(char, name,
70f6fc80 761 dev_name(lttng_inode_to_bdi(inode)->dev), 32)
f127e61e
MD
762 ctf_integer(unsigned long, ino, inode->i_ino)
763 ctf_integer(unsigned long, state, inode->i_state)
764 ctf_integer(unsigned long, dirtied_when, inode->dirtied_when)
765 ctf_integer(unsigned long, writeback_index,
766 inode->i_mapping->writeback_index)
767 ctf_integer(long, nr_to_write, nr_to_write)
768 ctf_integer(unsigned long, wrote,
769 nr_to_write - wbc->nr_to_write)
b87700e3
AG
770 )
771)
772
773#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0))
3bc29f0a 774LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_single_inode_template, writeback_single_inode_requeue,
b87700e3
AG
775 TP_PROTO(struct inode *inode,
776 struct writeback_control *wbc,
777 unsigned long nr_to_write),
778 TP_ARGS(inode, wbc, nr_to_write)
779)
780#endif
781
3bc29f0a 782LTTNG_TRACEPOINT_EVENT_INSTANCE(writeback_single_inode_template, writeback_single_inode,
b87700e3
AG
783 TP_PROTO(struct inode *inode,
784 struct writeback_control *wbc,
785 unsigned long nr_to_write),
786 TP_ARGS(inode, wbc, nr_to_write)
787)
788#endif
789
3bc29f0a 790#endif /* LTTNG_TRACE_WRITEBACK_H */
b87700e3
AG
791
792/* This part must be outside protection */
6ec43db8 793#include <probes/define_trace.h>
This page took 0.072943 seconds and 4 git commands to generate.