Fix: update btrfs instrumentation for SuSE 4.4.103-6
[lttng-modules.git] / instrumentation / events / lttng-module / btrfs.h
1 #undef TRACE_SYSTEM
2 #define TRACE_SYSTEM btrfs
3
4 #if !defined(LTTNG_TRACE_BTRFS_H) || defined(TRACE_HEADER_MULTI_READ)
5 #define LTTNG_TRACE_BTRFS_H
6
7 #include <probes/lttng-tracepoint-event.h>
8 #include <linux/writeback.h>
9 #include <linux/version.h>
10
11 #ifndef _TRACE_BTRFS_DEF_
12 #define _TRACE_BTRFS_DEF_
13 struct btrfs_root;
14 struct btrfs_fs_info;
15 struct btrfs_inode;
16 struct extent_map;
17 struct btrfs_ordered_extent;
18 struct btrfs_delayed_ref_node;
19 struct btrfs_delayed_tree_ref;
20 struct btrfs_delayed_data_ref;
21 struct btrfs_delayed_ref_head;
22 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
23 struct btrfs_block_group_cache;
24 struct btrfs_free_cluster;
25 #endif
26 struct map_lookup;
27 struct extent_buffer;
28 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
29 struct extent_state;
30 #endif
31 #endif
32
33 #define BTRFS_UUID_SIZE 16
34
35 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
36 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
37 LTTNG_TRACEPOINT_EVENT(btrfs_transaction_commit,
38
39 TP_PROTO(const struct btrfs_root *root),
40
41 TP_ARGS(root),
42
43 TP_FIELDS(
44 ctf_integer(u64, generation, root->fs_info->generation)
45 ctf_integer(u64, root_objectid, root->root_key.objectid)
46 )
47 )
48
49 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__inode,
50
51 TP_PROTO(const struct inode *inode),
52
53 TP_ARGS(inode),
54
55 TP_FIELDS(
56 ctf_integer(ino_t, ino, inode->i_ino)
57 ctf_integer(blkcnt_t, blocks, inode->i_blocks)
58 ctf_integer(u64, disk_i_size, BTRFS_I(inode)->disk_i_size)
59 ctf_integer(u64, generation, BTRFS_I(inode)->generation)
60 ctf_integer(u64, last_trans, BTRFS_I(inode)->last_trans)
61 ctf_integer(u64, logged_trans, BTRFS_I(inode)->logged_trans)
62 ctf_integer(u64, root_objectid,
63 BTRFS_I(inode)->root->root_key.objectid)
64 )
65 )
66
67 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__inode, btrfs_inode_new,
68
69 TP_PROTO(const struct inode *inode),
70
71 TP_ARGS(inode)
72 )
73
74 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__inode, btrfs_inode_request,
75
76 TP_PROTO(const struct inode *inode),
77
78 TP_ARGS(inode)
79 )
80
81 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__inode, btrfs_inode_evict,
82
83 TP_PROTO(const struct inode *inode),
84
85 TP_ARGS(inode)
86 )
87 #else
88 LTTNG_TRACEPOINT_EVENT(btrfs_transaction_commit,
89
90 TP_PROTO(struct btrfs_root *root),
91
92 TP_ARGS(root),
93
94 TP_FIELDS(
95 ctf_integer(u64, generation, root->fs_info->generation)
96 ctf_integer(u64, root_objectid, root->root_key.objectid)
97 )
98 )
99
100 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__inode,
101
102 TP_PROTO(struct inode *inode),
103
104 TP_ARGS(inode),
105
106 TP_FIELDS(
107 ctf_integer(ino_t, ino, inode->i_ino)
108 ctf_integer(blkcnt_t, blocks, inode->i_blocks)
109 ctf_integer(u64, disk_i_size, BTRFS_I(inode)->disk_i_size)
110 ctf_integer(u64, generation, BTRFS_I(inode)->generation)
111 ctf_integer(u64, last_trans, BTRFS_I(inode)->last_trans)
112 ctf_integer(u64, logged_trans, BTRFS_I(inode)->logged_trans)
113 ctf_integer(u64, root_objectid,
114 BTRFS_I(inode)->root->root_key.objectid)
115 )
116 )
117
118 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__inode, btrfs_inode_new,
119
120 TP_PROTO(struct inode *inode),
121
122 TP_ARGS(inode)
123 )
124
125 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__inode, btrfs_inode_request,
126
127 TP_PROTO(struct inode *inode),
128
129 TP_ARGS(inode)
130 )
131
132 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__inode, btrfs_inode_evict,
133
134 TP_PROTO(struct inode *inode),
135
136 TP_ARGS(inode)
137 )
138 #endif
139
140 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
141
142 LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
143
144 TP_PROTO(const struct btrfs_root *root, const struct btrfs_inode *inode,
145 const struct extent_map *map),
146
147 TP_ARGS(root, inode, map),
148
149 TP_FIELDS(
150 ctf_integer(u64, root_objectid, root->root_key.objectid)
151 ctf_integer(u64, ino, btrfs_ino(inode))
152 ctf_integer(u64, start, map->start)
153 ctf_integer(u64, len, map->len)
154 ctf_integer(u64, orig_start, map->orig_start)
155 ctf_integer(u64, block_start, map->block_start)
156 ctf_integer(u64, block_len, map->block_len)
157 ctf_integer(unsigned long, flags, map->flags)
158 ctf_integer(int, refs, refcount_read(&map->refs))
159 ctf_integer(unsigned int, compress_type, map->compress_type)
160 )
161 )
162
163 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0))
164
165 LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
166
167 TP_PROTO(struct btrfs_root *root, struct btrfs_inode *inode,
168 struct extent_map *map),
169
170 TP_ARGS(root, inode, map),
171
172 TP_FIELDS(
173 ctf_integer(u64, root_objectid, root->root_key.objectid)
174 ctf_integer(u64, ino, btrfs_ino(inode))
175 ctf_integer(u64, start, map->start)
176 ctf_integer(u64, len, map->len)
177 ctf_integer(u64, orig_start, map->orig_start)
178 ctf_integer(u64, block_start, map->block_start)
179 ctf_integer(u64, block_len, map->block_len)
180 ctf_integer(unsigned long, flags, map->flags)
181 ctf_integer(int, refs, refcount_read(&map->refs))
182 ctf_integer(unsigned int, compress_type, map->compress_type)
183 )
184 )
185
186 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,11,0))
187
188 LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
189
190 TP_PROTO(struct btrfs_root *root, struct btrfs_inode *inode,
191 struct extent_map *map),
192
193 TP_ARGS(root, inode, map),
194
195 TP_FIELDS(
196 ctf_integer(u64, root_objectid, root->root_key.objectid)
197 ctf_integer(u64, ino, btrfs_ino(inode))
198 ctf_integer(u64, start, map->start)
199 ctf_integer(u64, len, map->len)
200 ctf_integer(u64, orig_start, map->orig_start)
201 ctf_integer(u64, block_start, map->block_start)
202 ctf_integer(u64, block_len, map->block_len)
203 ctf_integer(unsigned long, flags, map->flags)
204 ctf_integer(int, refs, atomic_read(&map->refs))
205 ctf_integer(unsigned int, compress_type, map->compress_type)
206 )
207 )
208
209 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
210
211 LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
212
213 TP_PROTO(struct btrfs_root *root, struct inode *inode,
214 struct extent_map *map),
215
216 TP_ARGS(root, inode, map),
217
218 TP_FIELDS(
219 ctf_integer(u64, root_objectid, root->root_key.objectid)
220 ctf_integer(u64, ino, btrfs_ino(inode))
221 ctf_integer(u64, start, map->start)
222 ctf_integer(u64, len, map->len)
223 ctf_integer(u64, orig_start, map->orig_start)
224 ctf_integer(u64, block_start, map->block_start)
225 ctf_integer(u64, block_len, map->block_len)
226 ctf_integer(unsigned long, flags, map->flags)
227 ctf_integer(int, refs, atomic_read(&map->refs))
228 ctf_integer(unsigned int, compress_type, map->compress_type)
229 )
230 )
231
232 #elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
233
234 LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
235
236 TP_PROTO(const struct btrfs_root *root, const struct extent_map *map),
237
238 TP_ARGS(root, map),
239
240 TP_FIELDS(
241 ctf_integer(u64, root_objectid, root->root_key.objectid)
242 ctf_integer(u64, start, map->start)
243 ctf_integer(u64, len, map->len)
244 ctf_integer(u64, orig_start, map->orig_start)
245 ctf_integer(u64, block_start, map->block_start)
246 ctf_integer(u64, block_len, map->block_len)
247 ctf_integer(unsigned long, flags, map->flags)
248 ctf_integer(int, refs, atomic_read(&map->refs))
249 ctf_integer(unsigned int, compress_type, map->compress_type)
250 )
251 )
252
253 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
254
255 LTTNG_TRACEPOINT_EVENT(btrfs_get_extent,
256
257 TP_PROTO(struct btrfs_root *root, struct extent_map *map),
258
259 TP_ARGS(root, map),
260
261 TP_FIELDS(
262 ctf_integer(u64, root_objectid, root->root_key.objectid)
263 ctf_integer(u64, start, map->start)
264 ctf_integer(u64, len, map->len)
265 ctf_integer(u64, orig_start, map->orig_start)
266 ctf_integer(u64, block_start, map->block_start)
267 ctf_integer(u64, block_len, map->block_len)
268 ctf_integer(unsigned long, flags, map->flags)
269 ctf_integer(int, refs, atomic_read(&map->refs))
270 ctf_integer(unsigned int, compress_type, map->compress_type)
271 )
272 )
273
274 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
275
276 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
277 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__ordered_extent,
278
279 TP_PROTO(const struct inode *inode,
280 const struct btrfs_ordered_extent *ordered),
281
282 TP_ARGS(inode, ordered),
283
284 TP_FIELDS(
285 ctf_integer(ino_t, ino, inode->i_ino)
286 ctf_integer(u64, file_offset, ordered->file_offset)
287 ctf_integer(u64, start, ordered->start)
288 ctf_integer(u64, len, ordered->len)
289 ctf_integer(u64, disk_len, ordered->disk_len)
290 ctf_integer(u64, bytes_left, ordered->bytes_left)
291 ctf_integer(unsigned long, flags, ordered->flags)
292 ctf_integer(int, compress_type, ordered->compress_type)
293 ctf_integer(int, refs, refcount_read(&ordered->refs))
294 ctf_integer(u64, root_objectid,
295 BTRFS_I(inode)->root->root_key.objectid)
296 )
297 )
298 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0))
299 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__ordered_extent,
300
301 TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
302
303 TP_ARGS(inode, ordered),
304
305 TP_FIELDS(
306 ctf_integer(ino_t, ino, inode->i_ino)
307 ctf_integer(u64, file_offset, ordered->file_offset)
308 ctf_integer(u64, start, ordered->start)
309 ctf_integer(u64, len, ordered->len)
310 ctf_integer(u64, disk_len, ordered->disk_len)
311 ctf_integer(u64, bytes_left, ordered->bytes_left)
312 ctf_integer(unsigned long, flags, ordered->flags)
313 ctf_integer(int, compress_type, ordered->compress_type)
314 ctf_integer(int, refs, refcount_read(&ordered->refs))
315 ctf_integer(u64, root_objectid,
316 BTRFS_I(inode)->root->root_key.objectid)
317 )
318 )
319 #elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
320 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__ordered_extent,
321
322 TP_PROTO(const struct inode *inode, const struct btrfs_ordered_extent *ordered),
323
324 TP_ARGS(inode, ordered),
325
326 TP_FIELDS(
327 ctf_integer(ino_t, ino, inode->i_ino)
328 ctf_integer(u64, file_offset, ordered->file_offset)
329 ctf_integer(u64, start, ordered->start)
330 ctf_integer(u64, len, ordered->len)
331 ctf_integer(u64, disk_len, ordered->disk_len)
332 ctf_integer(u64, bytes_left, ordered->bytes_left)
333 ctf_integer(unsigned long, flags, ordered->flags)
334 ctf_integer(int, compress_type, ordered->compress_type)
335 ctf_integer(int, refs, atomic_read(&ordered->refs))
336 ctf_integer(u64, root_objectid,
337 BTRFS_I(inode)->root->root_key.objectid)
338 )
339 )
340 #else
341 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__ordered_extent,
342
343 TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
344
345 TP_ARGS(inode, ordered),
346
347 TP_FIELDS(
348 ctf_integer(ino_t, ino, inode->i_ino)
349 ctf_integer(u64, file_offset, ordered->file_offset)
350 ctf_integer(u64, start, ordered->start)
351 ctf_integer(u64, len, ordered->len)
352 ctf_integer(u64, disk_len, ordered->disk_len)
353 ctf_integer(u64, bytes_left, ordered->bytes_left)
354 ctf_integer(unsigned long, flags, ordered->flags)
355 ctf_integer(int, compress_type, ordered->compress_type)
356 ctf_integer(int, refs, atomic_read(&ordered->refs))
357 ctf_integer(u64, root_objectid,
358 BTRFS_I(inode)->root->root_key.objectid)
359 )
360 )
361 #endif
362
363 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
364 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
365 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_add,
366
367 TP_PROTO(const struct inode *inode,
368 const struct btrfs_ordered_extent *ordered),
369
370 TP_ARGS(inode, ordered)
371 )
372
373 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_remove,
374
375 TP_PROTO(const struct inode *inode,
376 const struct btrfs_ordered_extent *ordered),
377
378 TP_ARGS(inode, ordered)
379 )
380
381 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_start,
382
383 TP_PROTO(const struct inode *inode,
384 const struct btrfs_ordered_extent *ordered),
385
386 TP_ARGS(inode, ordered)
387 )
388
389 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_put,
390
391 TP_PROTO(const struct inode *inode,
392 const struct btrfs_ordered_extent *ordered),
393
394 TP_ARGS(inode, ordered)
395 )
396
397 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__writepage,
398
399 TP_PROTO(const struct page *page, const struct inode *inode,
400 const struct writeback_control *wbc),
401
402 TP_ARGS(page, inode, wbc),
403
404 TP_FIELDS(
405 ctf_integer(ino_t, ino, inode->i_ino)
406 ctf_integer(pgoff_t, index, page->index)
407 ctf_integer(long, nr_to_write, wbc->nr_to_write)
408 ctf_integer(long, pages_skipped, wbc->pages_skipped)
409 ctf_integer(loff_t, range_start, wbc->range_start)
410 ctf_integer(loff_t, range_end, wbc->range_end)
411 ctf_integer(char, for_kupdate, wbc->for_kupdate)
412 ctf_integer(char, for_reclaim, wbc->for_reclaim)
413 ctf_integer(char, range_cyclic, wbc->range_cyclic)
414 ctf_integer(pgoff_t, writeback_index,
415 inode->i_mapping->writeback_index)
416 ctf_integer(u64, root_objectid,
417 BTRFS_I(inode)->root->root_key.objectid)
418 )
419 )
420
421 LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs__writepage,
422
423 __extent_writepage,
424
425 btrfs__extent_writepage,
426
427 TP_PROTO(const struct page *page, const struct inode *inode,
428 const struct writeback_control *wbc),
429
430 TP_ARGS(page, inode, wbc)
431 )
432
433 LTTNG_TRACEPOINT_EVENT(btrfs_writepage_end_io_hook,
434
435 TP_PROTO(const struct page *page, u64 start, u64 end, int uptodate),
436
437 TP_ARGS(page, start, end, uptodate),
438
439 TP_FIELDS(
440 ctf_integer(ino_t, ino, page->mapping->host->i_ino)
441 ctf_integer(pgoff_t, index, page->index)
442 ctf_integer(u64, start, start)
443 ctf_integer(u64, end, end)
444 ctf_integer(int, uptodate, uptodate)
445 ctf_integer(u64, root_objectid,
446 BTRFS_I(page->mapping->host)->root->root_key.objectid)
447 )
448 )
449
450 LTTNG_TRACEPOINT_EVENT(btrfs_sync_file,
451
452 TP_PROTO(const struct file *file, int datasync),
453
454 TP_ARGS(file, datasync),
455
456 TP_FIELDS(
457 ctf_integer(ino_t, ino, file->f_path.dentry->d_inode->i_ino)
458 ctf_integer(ino_t, parent, file->f_path.dentry->d_parent->d_inode->i_ino)
459 ctf_integer(int, datasync, datasync)
460 ctf_integer(u64, root_objectid,
461 BTRFS_I(file->f_path.dentry->d_inode)->root->root_key.objectid)
462 )
463 )
464 #else
465 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_add,
466
467 TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
468
469 TP_ARGS(inode, ordered)
470 )
471
472 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_remove,
473
474 TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
475
476 TP_ARGS(inode, ordered)
477 )
478
479 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_start,
480
481 TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
482
483 TP_ARGS(inode, ordered)
484 )
485
486 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__ordered_extent, btrfs_ordered_extent_put,
487
488 TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
489
490 TP_ARGS(inode, ordered)
491 )
492
493 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__writepage,
494
495 TP_PROTO(struct page *page, struct inode *inode,
496 struct writeback_control *wbc),
497
498 TP_ARGS(page, inode, wbc),
499
500 TP_FIELDS(
501 ctf_integer(ino_t, ino, inode->i_ino)
502 ctf_integer(pgoff_t, index, page->index)
503 ctf_integer(long, nr_to_write, wbc->nr_to_write)
504 ctf_integer(long, pages_skipped, wbc->pages_skipped)
505 ctf_integer(loff_t, range_start, wbc->range_start)
506 ctf_integer(loff_t, range_end, wbc->range_end)
507 #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,1,0))
508 ctf_integer(char, nonblocking, wbc->nonblocking)
509 #endif
510 ctf_integer(char, for_kupdate, wbc->for_kupdate)
511 ctf_integer(char, for_reclaim, wbc->for_reclaim)
512 ctf_integer(char, range_cyclic, wbc->range_cyclic)
513 ctf_integer(pgoff_t, writeback_index,
514 inode->i_mapping->writeback_index)
515 ctf_integer(u64, root_objectid,
516 BTRFS_I(inode)->root->root_key.objectid)
517 )
518 )
519
520 LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(btrfs__writepage,
521
522 __extent_writepage,
523
524 btrfs__extent_writepage,
525
526 TP_PROTO(struct page *page, struct inode *inode,
527 struct writeback_control *wbc),
528
529 TP_ARGS(page, inode, wbc)
530 )
531
532 LTTNG_TRACEPOINT_EVENT(btrfs_writepage_end_io_hook,
533
534 TP_PROTO(struct page *page, u64 start, u64 end, int uptodate),
535
536 TP_ARGS(page, start, end, uptodate),
537
538 TP_FIELDS(
539 ctf_integer(ino_t, ino, page->mapping->host->i_ino)
540 ctf_integer(pgoff_t, index, page->index)
541 ctf_integer(u64, start, start)
542 ctf_integer(u64, end, end)
543 ctf_integer(int, uptodate, uptodate)
544 ctf_integer(u64, root_objectid,
545 BTRFS_I(page->mapping->host)->root->root_key.objectid)
546 )
547 )
548
549 LTTNG_TRACEPOINT_EVENT(btrfs_sync_file,
550
551 TP_PROTO(struct file *file, int datasync),
552
553 TP_ARGS(file, datasync),
554
555 TP_FIELDS(
556 ctf_integer(ino_t, ino, file->f_path.dentry->d_inode->i_ino)
557 ctf_integer(ino_t, parent, file->f_path.dentry->d_parent->d_inode->i_ino)
558 ctf_integer(int, datasync, datasync)
559 ctf_integer(u64, root_objectid,
560 BTRFS_I(file->f_path.dentry->d_inode)->root->root_key.objectid)
561 )
562 )
563 #endif
564
565 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
566 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
567 LTTNG_TRACEPOINT_EVENT(btrfs_sync_fs,
568
569 TP_PROTO(const struct btrfs_fs_info *fs_info, int wait),
570
571 TP_ARGS(fs_info, wait),
572
573 TP_FIELDS(
574 ctf_integer(int, wait, wait)
575 )
576 )
577 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0))
578 LTTNG_TRACEPOINT_EVENT(btrfs_sync_fs,
579
580 TP_PROTO(struct btrfs_fs_info *fs_info, int wait),
581
582 TP_ARGS(fs_info, wait),
583
584 TP_FIELDS(
585 ctf_integer(int, wait, wait)
586 )
587 )
588 #else
589 LTTNG_TRACEPOINT_EVENT(btrfs_sync_fs,
590
591 TP_PROTO(int wait),
592
593 TP_ARGS(wait),
594
595 TP_FIELDS(
596 ctf_integer(int, wait, wait)
597 )
598 )
599 #endif
600
601 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
602 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
603 LTTNG_TRACEPOINT_EVENT(btrfs_add_block_group,
604
605 TP_PROTO(const struct btrfs_fs_info *fs_info,
606 const struct btrfs_block_group_cache *block_group, int create),
607
608 TP_ARGS(fs_info, block_group, create),
609
610 TP_FIELDS(
611 ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
612 ctf_integer(u64, offset, block_group->key.objectid)
613 ctf_integer(u64, size, block_group->key.offset)
614 ctf_integer(u64, flags, block_group->flags)
615 ctf_integer(u64, bytes_used, btrfs_block_group_used(&block_group->item))
616 ctf_integer(u64, bytes_super, block_group->bytes_super)
617 ctf_integer(int, create, create)
618 )
619 )
620 #else
621 LTTNG_TRACEPOINT_EVENT(btrfs_add_block_group,
622
623 TP_PROTO(struct btrfs_fs_info *fs_info,
624 struct btrfs_block_group_cache *block_group, int create),
625
626 TP_ARGS(fs_info, block_group, create),
627
628 TP_FIELDS(
629 ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
630 ctf_integer(u64, offset, block_group->key.objectid)
631 ctf_integer(u64, size, block_group->key.offset)
632 ctf_integer(u64, flags, block_group->flags)
633 ctf_integer(u64, bytes_used, btrfs_block_group_used(&block_group->item))
634 ctf_integer(u64, bytes_super, block_group->bytes_super)
635 ctf_integer(int, create, create)
636 )
637 )
638 #endif
639
640 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
641 LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
642
643 TP_PROTO(const struct btrfs_fs_info *fs_info,
644 const struct btrfs_delayed_ref_node *ref,
645 const struct btrfs_delayed_tree_ref *full_ref,
646 int action),
647
648 TP_ARGS(fs_info, ref, full_ref, action),
649
650 TP_FIELDS(
651 ctf_integer(u64, bytenr, ref->bytenr)
652 ctf_integer(u64, num_bytes, ref->num_bytes)
653 ctf_integer(int, action, action)
654 ctf_integer(u64, parent, full_ref->parent)
655 ctf_integer(u64, ref_root, full_ref->root)
656 ctf_integer(int, level, full_ref->level)
657 ctf_integer(int, type, ref->type)
658 ctf_integer(u64, seq, ref->seq)
659 )
660 )
661 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0))
662 LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
663
664 TP_PROTO(struct btrfs_fs_info *fs_info,
665 struct btrfs_delayed_ref_node *ref,
666 struct btrfs_delayed_tree_ref *full_ref,
667 int action),
668
669 TP_ARGS(fs_info, ref, full_ref, action),
670
671 TP_FIELDS(
672 ctf_integer(u64, bytenr, ref->bytenr)
673 ctf_integer(u64, num_bytes, ref->num_bytes)
674 ctf_integer(int, action, action)
675 ctf_integer(u64, parent, full_ref->parent)
676 ctf_integer(u64, ref_root, full_ref->root)
677 ctf_integer(int, level, full_ref->level)
678 ctf_integer(int, type, ref->type)
679 ctf_integer(u64, seq, ref->seq)
680 )
681 )
682 #else
683 LTTNG_TRACEPOINT_EVENT(btrfs_delayed_tree_ref,
684
685 TP_PROTO(struct btrfs_delayed_ref_node *ref,
686 struct btrfs_delayed_tree_ref *full_ref,
687 int action),
688
689 TP_ARGS(ref, full_ref, action),
690
691 TP_FIELDS(
692 ctf_integer(u64, bytenr, ref->bytenr)
693 ctf_integer(u64, num_bytes, ref->num_bytes)
694 ctf_integer(int, action, action)
695 ctf_integer(u64, parent, full_ref->parent)
696 ctf_integer(u64, ref_root, full_ref->root)
697 ctf_integer(int, level, full_ref->level)
698 ctf_integer(int, type, ref->type)
699 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
700 ctf_integer(u64, seq, ref->seq)
701 #endif
702 )
703 )
704 #endif
705
706 LTTNG_TRACEPOINT_EVENT(btrfs_delayed_data_ref,
707
708 TP_PROTO(struct btrfs_delayed_ref_node *ref,
709 struct btrfs_delayed_data_ref *full_ref,
710 int action),
711
712 TP_ARGS(ref, full_ref, action),
713
714 TP_FIELDS(
715 ctf_integer(u64, bytenr, ref->bytenr)
716 ctf_integer(u64, num_bytes, ref->num_bytes)
717 ctf_integer(int, action, action)
718 ctf_integer(u64, parent, full_ref->parent)
719 ctf_integer(u64, ref_root, full_ref->root)
720 ctf_integer(u64, owner, full_ref->objectid)
721 ctf_integer(u64, offset, full_ref->offset)
722 ctf_integer(int, type, ref->type)
723 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
724 ctf_integer(u64, seq, ref->seq)
725 #endif
726 )
727 )
728
729 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,15,0))
730 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_ref_head,
731
732 TP_PROTO(const struct btrfs_fs_info *fs_info,
733 const struct btrfs_delayed_ref_head *head_ref,
734 int action),
735
736 TP_ARGS(fs_info, head_ref, action),
737
738 TP_FIELDS(
739 ctf_integer(u64, bytenr, head_ref->bytenr)
740 ctf_integer(u64, num_bytes, head_ref->num_bytes)
741 ctf_integer(int, action, action)
742 ctf_integer(int, is_data, head_ref->is_data)
743 )
744 )
745
746 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, add_delayed_ref_head,
747
748 TP_PROTO(const struct btrfs_fs_info *fs_info,
749 const struct btrfs_delayed_ref_head *head_ref,
750 int action),
751
752 TP_ARGS(fs_info, head_ref, action)
753 )
754
755 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, run_delayed_ref_head,
756
757 TP_PROTO(const struct btrfs_fs_info *fs_info,
758 const struct btrfs_delayed_ref_head *head_ref,
759 int action),
760
761 TP_ARGS(fs_info, head_ref, action)
762 )
763
764 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
765 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
766 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_ref_head,
767
768 TP_PROTO(const struct btrfs_fs_info *fs_info,
769 const struct btrfs_delayed_ref_node *ref,
770 const struct btrfs_delayed_ref_head *head_ref,
771 int action),
772
773 TP_ARGS(fs_info, ref, head_ref, action),
774
775 TP_FIELDS(
776 ctf_integer(u64, bytenr, ref->bytenr)
777 ctf_integer(u64, num_bytes, ref->num_bytes)
778 ctf_integer(int, action, action)
779 ctf_integer(int, is_data, head_ref->is_data)
780 )
781 )
782
783 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, add_delayed_ref_head,
784
785 TP_PROTO(const struct btrfs_fs_info *fs_info,
786 const struct btrfs_delayed_ref_node *ref,
787 const struct btrfs_delayed_ref_head *head_ref,
788 int action),
789
790 TP_ARGS(fs_info, ref, head_ref, action)
791 )
792
793 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, run_delayed_ref_head,
794
795 TP_PROTO(const struct btrfs_fs_info *fs_info,
796 const struct btrfs_delayed_ref_node *ref,
797 const struct btrfs_delayed_ref_head *head_ref,
798 int action),
799
800 TP_ARGS(fs_info, ref, head_ref, action)
801 )
802
803 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0))
804 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_ref_head,
805
806 TP_PROTO(struct btrfs_fs_info *fs_info,
807 struct btrfs_delayed_ref_node *ref,
808 struct btrfs_delayed_ref_head *head_ref,
809 int action),
810
811 TP_ARGS(fs_info, ref, head_ref, action),
812
813 TP_FIELDS(
814 ctf_integer(u64, bytenr, ref->bytenr)
815 ctf_integer(u64, num_bytes, ref->num_bytes)
816 ctf_integer(int, action, action)
817 ctf_integer(int, is_data, head_ref->is_data)
818 )
819 )
820
821 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, add_delayed_ref_head,
822
823 TP_PROTO(struct btrfs_fs_info *fs_info,
824 struct btrfs_delayed_ref_node *ref,
825 struct btrfs_delayed_ref_head *head_ref,
826 int action),
827
828 TP_ARGS(fs_info, ref, head_ref, action)
829 )
830
831 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, run_delayed_ref_head,
832
833 TP_PROTO(struct btrfs_fs_info *fs_info,
834 struct btrfs_delayed_ref_node *ref,
835 struct btrfs_delayed_ref_head *head_ref,
836 int action),
837
838 TP_ARGS(fs_info, ref, head_ref, action)
839 )
840
841 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,12,0))
842 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs_delayed_ref_head,
843
844 TP_PROTO(struct btrfs_delayed_ref_node *ref,
845 struct btrfs_delayed_ref_head *head_ref,
846 int action),
847
848 TP_ARGS(ref, head_ref, action),
849
850 TP_FIELDS(
851 ctf_integer(u64, bytenr, ref->bytenr)
852 ctf_integer(u64, num_bytes, ref->num_bytes)
853 ctf_integer(int, action, action)
854 ctf_integer(int, is_data, head_ref->is_data)
855 )
856 )
857
858 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, add_delayed_ref_head,
859
860 TP_PROTO(struct btrfs_delayed_ref_node *ref,
861 struct btrfs_delayed_ref_head *head_ref,
862 int action),
863
864 TP_ARGS(ref, head_ref, action)
865 )
866
867 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs_delayed_ref_head, run_delayed_ref_head,
868
869 TP_PROTO(struct btrfs_delayed_ref_node *ref,
870 struct btrfs_delayed_ref_head *head_ref,
871 int action),
872
873 TP_ARGS(ref, head_ref, action)
874 )
875
876 #else
877 LTTNG_TRACEPOINT_EVENT(btrfs_delayed_ref_head,
878
879 TP_PROTO(struct btrfs_delayed_ref_node *ref,
880 struct btrfs_delayed_ref_head *head_ref,
881 int action),
882
883 TP_ARGS(ref, head_ref, action),
884
885 TP_FIELDS(
886 ctf_integer(u64, bytenr, ref->bytenr)
887 ctf_integer(u64, num_bytes, ref->num_bytes)
888 ctf_integer(int, action, action)
889 ctf_integer(int, is_data, head_ref->is_data)
890 )
891 )
892 #endif
893
894 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
895
896 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__chunk,
897
898 TP_PROTO(const struct btrfs_fs_info *fs_info, const struct map_lookup *map,
899 u64 offset, u64 size),
900
901 TP_ARGS(fs_info, map, offset, size),
902
903 TP_FIELDS(
904 ctf_integer(int, num_stripes, map->num_stripes)
905 ctf_integer(u64, type, map->type)
906 ctf_integer(int, sub_stripes, map->sub_stripes)
907 ctf_integer(u64, offset, offset)
908 ctf_integer(u64, size, size)
909 ctf_integer(u64, root_objectid, fs_info->chunk_root->root_key.objectid)
910 )
911 )
912
913 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_alloc,
914
915 TP_PROTO(const struct btrfs_fs_info *info, const struct map_lookup *map,
916 u64 offset, u64 size),
917
918 TP_ARGS(info, map, offset, size)
919 )
920
921 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_free,
922
923 TP_PROTO(const struct btrfs_fs_info *info, const struct map_lookup *map,
924 u64 offset, u64 size),
925
926 TP_ARGS(info, map, offset, size)
927 )
928
929 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
930
931 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__chunk,
932
933 TP_PROTO(struct btrfs_fs_info *fs_info, struct map_lookup *map,
934 u64 offset, u64 size),
935
936 TP_ARGS(fs_info, map, offset, size),
937
938 TP_FIELDS(
939 ctf_integer(int, num_stripes, map->num_stripes)
940 ctf_integer(u64, type, map->type)
941 ctf_integer(int, sub_stripes, map->sub_stripes)
942 ctf_integer(u64, offset, offset)
943 ctf_integer(u64, size, size)
944 ctf_integer(u64, root_objectid, fs_info->chunk_root->root_key.objectid)
945 )
946 )
947
948 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_alloc,
949
950 TP_PROTO(struct btrfs_fs_info *info, struct map_lookup *map,
951 u64 offset, u64 size),
952
953 TP_ARGS(info, map, offset, size)
954 )
955
956 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_free,
957
958 TP_PROTO(struct btrfs_fs_info *info, struct map_lookup *map,
959 u64 offset, u64 size),
960
961 TP_ARGS(info, map, offset, size)
962 )
963
964 #elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
965
966 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__chunk,
967
968 TP_PROTO(const struct btrfs_root *root, const struct map_lookup *map,
969 u64 offset, u64 size),
970
971 TP_ARGS(root, map, offset, size),
972
973 TP_FIELDS(
974 ctf_integer(int, num_stripes, map->num_stripes)
975 ctf_integer(u64, type, map->type)
976 ctf_integer(int, sub_stripes, map->sub_stripes)
977 ctf_integer(u64, offset, offset)
978 ctf_integer(u64, size, size)
979 ctf_integer(u64, root_objectid, root->root_key.objectid)
980 )
981 )
982
983 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_alloc,
984
985 TP_PROTO(const struct btrfs_root *root, const struct map_lookup *map,
986 u64 offset, u64 size),
987
988 TP_ARGS(root, map, offset, size)
989 )
990
991 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_free,
992
993 TP_PROTO(const struct btrfs_root *root, const struct map_lookup *map,
994 u64 offset, u64 size),
995
996 TP_ARGS(root, map, offset, size)
997 )
998
999 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
1000
1001 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__chunk,
1002
1003 TP_PROTO(struct btrfs_root *root, struct map_lookup *map,
1004 u64 offset, u64 size),
1005
1006 TP_ARGS(root, map, offset, size),
1007
1008 TP_FIELDS(
1009 ctf_integer(int, num_stripes, map->num_stripes)
1010 ctf_integer(u64, type, map->type)
1011 ctf_integer(int, sub_stripes, map->sub_stripes)
1012 ctf_integer(u64, offset, offset)
1013 ctf_integer(u64, size, size)
1014 ctf_integer(u64, root_objectid, root->root_key.objectid)
1015 )
1016 )
1017
1018 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_alloc,
1019
1020 TP_PROTO(struct btrfs_root *root, struct map_lookup *map,
1021 u64 offset, u64 size),
1022
1023 TP_ARGS(root, map, offset, size)
1024 )
1025
1026 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__chunk, btrfs_chunk_free,
1027
1028 TP_PROTO(struct btrfs_root *root, struct map_lookup *map,
1029 u64 offset, u64 size),
1030
1031 TP_ARGS(root, map, offset, size)
1032 )
1033
1034 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
1035
1036 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
1037 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
1038 LTTNG_TRACEPOINT_EVENT(btrfs_cow_block,
1039
1040 TP_PROTO(const struct btrfs_root *root, const struct extent_buffer *buf,
1041 const struct extent_buffer *cow),
1042
1043 TP_ARGS(root, buf, cow),
1044
1045 TP_FIELDS(
1046 ctf_integer(u64, root_objectid, root->root_key.objectid)
1047 ctf_integer(u64, buf_start, buf->start)
1048 ctf_integer(int, refs, atomic_read(&buf->refs))
1049 ctf_integer(u64, cow_start, cow->start)
1050 ctf_integer(int, buf_level, btrfs_header_level(buf))
1051 ctf_integer(int, cow_level, btrfs_header_level(cow))
1052 )
1053 )
1054 #else
1055 LTTNG_TRACEPOINT_EVENT(btrfs_cow_block,
1056
1057 TP_PROTO(struct btrfs_root *root, struct extent_buffer *buf,
1058 struct extent_buffer *cow),
1059
1060 TP_ARGS(root, buf, cow),
1061
1062 TP_FIELDS(
1063 ctf_integer(u64, root_objectid, root->root_key.objectid)
1064 ctf_integer(u64, buf_start, buf->start)
1065 ctf_integer(int, refs, atomic_read(&buf->refs))
1066 ctf_integer(u64, cow_start, cow->start)
1067 ctf_integer(int, buf_level, btrfs_header_level(buf))
1068 ctf_integer(int, cow_level, btrfs_header_level(cow))
1069 )
1070 )
1071 #endif
1072
1073 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
1074 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
1075 LTTNG_TRACEPOINT_EVENT(btrfs_space_reservation,
1076
1077 TP_PROTO(const struct btrfs_fs_info *fs_info, char *type, u64 val,
1078 u64 bytes, int reserve),
1079
1080 TP_ARGS(fs_info, type, val, bytes, reserve),
1081
1082 TP_FIELDS(
1083 ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
1084 ctf_string(type, type)
1085 ctf_integer(u64, val, val)
1086 ctf_integer(u64, bytes, bytes)
1087 ctf_integer(int, reserve, reserve)
1088 )
1089 )
1090 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
1091 LTTNG_TRACEPOINT_EVENT(btrfs_space_reservation,
1092
1093 TP_PROTO(struct btrfs_fs_info *fs_info, char *type, u64 val,
1094 u64 bytes, int reserve),
1095
1096 TP_ARGS(fs_info, type, val, bytes, reserve),
1097
1098 TP_FIELDS(
1099 ctf_array(u8, fsid, fs_info->fsid, BTRFS_UUID_SIZE)
1100 ctf_string(type, type)
1101 ctf_integer(u64, val, val)
1102 ctf_integer(u64, bytes, bytes)
1103 ctf_integer(int, reserve, reserve)
1104 )
1105 )
1106 #endif
1107
1108 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
1109
1110 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
1111
1112 TP_PROTO(const struct btrfs_fs_info *info, u64 start, u64 len),
1113
1114 TP_ARGS(info, start, len),
1115
1116 TP_FIELDS(
1117 ctf_integer(u64, start, start)
1118 ctf_integer(u64, len, len)
1119 )
1120 )
1121
1122 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_alloc,
1123
1124 TP_PROTO(const struct btrfs_fs_info *info, u64 start, u64 len),
1125
1126 TP_ARGS(info, start, len)
1127 )
1128
1129 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_free,
1130
1131 TP_PROTO(const struct btrfs_fs_info *info, u64 start, u64 len),
1132
1133 TP_ARGS(info, start, len)
1134 )
1135
1136 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
1137
1138 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
1139
1140 TP_PROTO(struct btrfs_fs_info *info, u64 start, u64 len),
1141
1142 TP_ARGS(info, start, len),
1143
1144 TP_FIELDS(
1145 ctf_integer(u64, start, start)
1146 ctf_integer(u64, len, len)
1147 )
1148 )
1149
1150 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_alloc,
1151
1152 TP_PROTO(struct btrfs_fs_info *info, u64 start, u64 len),
1153
1154 TP_ARGS(info, start, len)
1155 )
1156
1157 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_free,
1158
1159 TP_PROTO(struct btrfs_fs_info *info, u64 start, u64 len),
1160
1161 TP_ARGS(info, start, len)
1162 )
1163
1164 #elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
1165
1166 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
1167
1168 TP_PROTO(const struct btrfs_root *root, u64 start, u64 len),
1169
1170 TP_ARGS(root, start, len),
1171
1172 TP_FIELDS(
1173 ctf_integer(u64, root_objectid, root->root_key.objectid)
1174 ctf_integer(u64, start, start)
1175 ctf_integer(u64, len, len)
1176 )
1177 )
1178
1179 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_alloc,
1180
1181 TP_PROTO(const struct btrfs_root *root, u64 start, u64 len),
1182
1183 TP_ARGS(root, start, len)
1184 )
1185
1186 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_free,
1187
1188 TP_PROTO(const struct btrfs_root *root, u64 start, u64 len),
1189
1190 TP_ARGS(root, start, len)
1191 )
1192
1193 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
1194
1195 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserved_extent,
1196
1197 TP_PROTO(struct btrfs_root *root, u64 start, u64 len),
1198
1199 TP_ARGS(root, start, len),
1200
1201 TP_FIELDS(
1202 ctf_integer(u64, root_objectid, root->root_key.objectid)
1203 ctf_integer(u64, start, start)
1204 ctf_integer(u64, len, len)
1205 )
1206 )
1207
1208 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_alloc,
1209
1210 TP_PROTO(struct btrfs_root *root, u64 start, u64 len),
1211
1212 TP_ARGS(root, start, len)
1213 )
1214
1215 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserved_extent, btrfs_reserved_extent_free,
1216
1217 TP_PROTO(struct btrfs_root *root, u64 start, u64 len),
1218
1219 TP_ARGS(root, start, len)
1220 )
1221
1222 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
1223
1224 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0))
1225
1226 LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
1227
1228 btrfs_find_free_extent,
1229
1230 TP_PROTO(const struct btrfs_fs_info *info, u64 num_bytes, u64 empty_size,
1231 u64 data),
1232
1233 TP_ARGS(info, num_bytes, empty_size, data),
1234
1235 TP_FIELDS(
1236 ctf_integer(u64, num_bytes, num_bytes)
1237 ctf_integer(u64, empty_size, empty_size)
1238 ctf_integer(u64, data, data)
1239 )
1240 )
1241
1242 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
1243
1244 TP_PROTO(const struct btrfs_fs_info *info,
1245 const struct btrfs_block_group_cache *block_group, u64 start,
1246 u64 len),
1247
1248 TP_ARGS(info, block_group, start, len),
1249
1250 TP_FIELDS(
1251 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1252 ctf_integer(u64, flags, block_group->flags)
1253 ctf_integer(u64, start, start)
1254 ctf_integer(u64, len, len)
1255 )
1256 )
1257
1258 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent,
1259
1260 TP_PROTO(const struct btrfs_fs_info *info,
1261 const struct btrfs_block_group_cache *block_group, u64 start,
1262 u64 len),
1263
1264 TP_ARGS(info, block_group, start, len)
1265 )
1266
1267 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
1268
1269 TP_PROTO(const struct btrfs_fs_info *info,
1270 const struct btrfs_block_group_cache *block_group, u64 start,
1271 u64 len),
1272
1273 TP_ARGS(info, block_group, start, len)
1274 )
1275
1276 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0))
1277
1278 LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
1279
1280 btrfs_find_free_extent,
1281
1282 TP_PROTO(struct btrfs_fs_info *info, u64 num_bytes, u64 empty_size,
1283 u64 data),
1284
1285 TP_ARGS(info, num_bytes, empty_size, data),
1286
1287 TP_FIELDS(
1288 ctf_integer(u64, num_bytes, num_bytes)
1289 ctf_integer(u64, empty_size, empty_size)
1290 ctf_integer(u64, data, data)
1291 )
1292 )
1293
1294 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
1295
1296 TP_PROTO(struct btrfs_fs_info *info,
1297 struct btrfs_block_group_cache *block_group, u64 start,
1298 u64 len),
1299
1300 TP_ARGS(info, block_group, start, len),
1301
1302 TP_FIELDS(
1303 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1304 ctf_integer(u64, flags, block_group->flags)
1305 ctf_integer(u64, start, start)
1306 ctf_integer(u64, len, len)
1307 )
1308 )
1309
1310 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent,
1311
1312 TP_PROTO(struct btrfs_fs_info *info,
1313 struct btrfs_block_group_cache *block_group, u64 start,
1314 u64 len),
1315
1316 TP_ARGS(info, block_group, start, len)
1317 )
1318
1319 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
1320
1321 TP_PROTO(struct btrfs_fs_info *info,
1322 struct btrfs_block_group_cache *block_group, u64 start,
1323 u64 len),
1324
1325 TP_ARGS(info, block_group, start, len)
1326 )
1327 #elif (LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
1328
1329 LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
1330
1331 btrfs_find_free_extent,
1332
1333 TP_PROTO(const struct btrfs_root *root, u64 num_bytes, u64 empty_size,
1334 u64 data),
1335
1336 TP_ARGS(root, num_bytes, empty_size, data),
1337
1338 TP_FIELDS(
1339 ctf_integer(u64, root_objectid, root->root_key.objectid)
1340 ctf_integer(u64, num_bytes, num_bytes)
1341 ctf_integer(u64, empty_size, empty_size)
1342 ctf_integer(u64, data, data)
1343 )
1344 )
1345
1346 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
1347
1348 TP_PROTO(const struct btrfs_root *root,
1349 const struct btrfs_block_group_cache *block_group, u64 start,
1350 u64 len),
1351
1352 TP_ARGS(root, block_group, start, len),
1353
1354 TP_FIELDS(
1355 ctf_integer(u64, root_objectid, root->root_key.objectid)
1356 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1357 ctf_integer(u64, flags, block_group->flags)
1358 ctf_integer(u64, start, start)
1359 ctf_integer(u64, len, len)
1360 )
1361 )
1362
1363 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent,
1364
1365 TP_PROTO(const struct btrfs_root *root,
1366 const struct btrfs_block_group_cache *block_group, u64 start,
1367 u64 len),
1368
1369 TP_ARGS(root, block_group, start, len)
1370 )
1371
1372 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
1373
1374 TP_PROTO(const struct btrfs_root *root,
1375 const struct btrfs_block_group_cache *block_group, u64 start,
1376 u64 len),
1377
1378 TP_ARGS(root, block_group, start, len)
1379 )
1380
1381 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
1382
1383 LTTNG_TRACEPOINT_EVENT_MAP(find_free_extent,
1384
1385 btrfs_find_free_extent,
1386
1387 TP_PROTO(struct btrfs_root *root, u64 num_bytes, u64 empty_size,
1388 u64 data),
1389
1390 TP_ARGS(root, num_bytes, empty_size, data),
1391
1392 TP_FIELDS(
1393 ctf_integer(u64, root_objectid, root->root_key.objectid)
1394 ctf_integer(u64, num_bytes, num_bytes)
1395 ctf_integer(u64, empty_size, empty_size)
1396 ctf_integer(u64, data, data)
1397 )
1398 )
1399
1400 LTTNG_TRACEPOINT_EVENT_CLASS(btrfs__reserve_extent,
1401
1402 TP_PROTO(struct btrfs_root *root,
1403 struct btrfs_block_group_cache *block_group, u64 start,
1404 u64 len),
1405
1406 TP_ARGS(root, block_group, start, len),
1407
1408 TP_FIELDS(
1409 ctf_integer(u64, root_objectid, root->root_key.objectid)
1410 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1411 ctf_integer(u64, flags, block_group->flags)
1412 ctf_integer(u64, start, start)
1413 ctf_integer(u64, len, len)
1414 )
1415 )
1416
1417 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent,
1418
1419 TP_PROTO(struct btrfs_root *root,
1420 struct btrfs_block_group_cache *block_group, u64 start,
1421 u64 len),
1422
1423 TP_ARGS(root, block_group, start, len)
1424 )
1425
1426 LTTNG_TRACEPOINT_EVENT_INSTANCE(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
1427
1428 TP_PROTO(struct btrfs_root *root,
1429 struct btrfs_block_group_cache *block_group, u64 start,
1430 u64 len),
1431
1432 TP_ARGS(root, block_group, start, len)
1433 )
1434
1435 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,10,0)) */
1436
1437 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
1438 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
1439 LTTNG_TRACEPOINT_EVENT(btrfs_find_cluster,
1440
1441 TP_PROTO(const struct btrfs_block_group_cache *block_group, u64 start,
1442 u64 bytes, u64 empty_size, u64 min_bytes),
1443
1444 TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
1445
1446 TP_FIELDS(
1447 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1448 ctf_integer(u64, flags, block_group->flags)
1449 ctf_integer(u64, start, start)
1450 ctf_integer(u64, bytes, bytes)
1451 ctf_integer(u64, empty_size, empty_size)
1452 ctf_integer(u64, min_bytes, min_bytes)
1453 )
1454 )
1455
1456 LTTNG_TRACEPOINT_EVENT(btrfs_failed_cluster_setup,
1457
1458 TP_PROTO(const struct btrfs_block_group_cache *block_group),
1459
1460 TP_ARGS(block_group),
1461
1462 TP_FIELDS(
1463 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1464 )
1465 )
1466
1467 LTTNG_TRACEPOINT_EVENT(btrfs_setup_cluster,
1468
1469 TP_PROTO(const struct btrfs_block_group_cache *block_group,
1470 const struct btrfs_free_cluster *cluster, u64 size, int bitmap),
1471
1472 TP_ARGS(block_group, cluster, size, bitmap),
1473
1474 TP_FIELDS(
1475 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1476 ctf_integer(u64, flags, block_group->flags)
1477 ctf_integer(u64, start, cluster->window_start)
1478 ctf_integer(u64, max_size, cluster->max_size)
1479 ctf_integer(u64, size, size)
1480 ctf_integer(int, bitmap, bitmap)
1481 )
1482 )
1483 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0))
1484 LTTNG_TRACEPOINT_EVENT(btrfs_find_cluster,
1485
1486 TP_PROTO(struct btrfs_block_group_cache *block_group, u64 start,
1487 u64 bytes, u64 empty_size, u64 min_bytes),
1488
1489 TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
1490
1491 TP_FIELDS(
1492 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1493 ctf_integer(u64, flags, block_group->flags)
1494 ctf_integer(u64, start, start)
1495 ctf_integer(u64, bytes, bytes)
1496 ctf_integer(u64, empty_size, empty_size)
1497 ctf_integer(u64, min_bytes, min_bytes)
1498 )
1499 )
1500
1501 LTTNG_TRACEPOINT_EVENT(btrfs_failed_cluster_setup,
1502
1503 TP_PROTO(struct btrfs_block_group_cache *block_group),
1504
1505 TP_ARGS(block_group),
1506
1507 TP_FIELDS(
1508 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1509 )
1510 )
1511
1512 LTTNG_TRACEPOINT_EVENT(btrfs_setup_cluster,
1513
1514 TP_PROTO(struct btrfs_block_group_cache *block_group,
1515 struct btrfs_free_cluster *cluster, u64 size, int bitmap),
1516
1517 TP_ARGS(block_group, cluster, size, bitmap),
1518
1519 TP_FIELDS(
1520 ctf_integer(u64, bg_objectid, block_group->key.objectid)
1521 ctf_integer(u64, flags, block_group->flags)
1522 ctf_integer(u64, start, cluster->window_start)
1523 ctf_integer(u64, max_size, cluster->max_size)
1524 ctf_integer(u64, size, size)
1525 ctf_integer(int, bitmap, bitmap)
1526 )
1527 )
1528 #endif
1529
1530 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,14,0) || \
1531 LTTNG_SLE_KERNEL_RANGE(4,4,103,6,0,0, 4,5,0,0,0,0))
1532 LTTNG_TRACEPOINT_EVENT_MAP(alloc_extent_state,
1533
1534 btrfs_alloc_extent_state,
1535
1536 TP_PROTO(const struct extent_state *state, gfp_t mask, unsigned long IP),
1537
1538 TP_ARGS(state, mask, IP),
1539
1540 TP_FIELDS(
1541 ctf_integer_hex(const struct extent_state *, state, state)
1542 ctf_integer(gfp_t, mask, mask)
1543 ctf_integer(unsigned long, ip, IP)
1544 )
1545 )
1546
1547 LTTNG_TRACEPOINT_EVENT_MAP(free_extent_state,
1548
1549 btrfs_free_extent_state,
1550
1551 TP_PROTO(const struct extent_state *state, unsigned long IP),
1552
1553 TP_ARGS(state, IP),
1554
1555 TP_FIELDS(
1556 ctf_integer_hex(const struct extent_state *, state, state)
1557 ctf_integer(unsigned long, ip, IP)
1558 )
1559 )
1560 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0))
1561 LTTNG_TRACEPOINT_EVENT_MAP(alloc_extent_state,
1562
1563 btrfs_alloc_extent_state,
1564
1565 TP_PROTO(struct extent_state *state, gfp_t mask, unsigned long IP),
1566
1567 TP_ARGS(state, mask, IP),
1568
1569 TP_FIELDS(
1570 ctf_integer_hex(struct extent_state *, state, state)
1571 ctf_integer(gfp_t, mask, mask)
1572 ctf_integer(unsigned long, ip, IP)
1573 )
1574 )
1575
1576 LTTNG_TRACEPOINT_EVENT_MAP(free_extent_state,
1577
1578 btrfs_free_extent_state,
1579
1580 TP_PROTO(struct extent_state *state, unsigned long IP),
1581
1582 TP_ARGS(state, IP),
1583
1584 TP_FIELDS(
1585 ctf_integer_hex(struct extent_state *, state, state)
1586 ctf_integer(unsigned long, ip, IP)
1587 )
1588 )
1589 #endif
1590
1591 #endif /* LTTNG_TRACE_BTRFS_H */
1592
1593 /* This part must be outside protection */
1594 #include <probes/define_trace.h>
This page took 0.116361 seconds and 4 git commands to generate.