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