1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM ocfs2
5 #if !defined(_TRACE_OCFS2_H) || defined(TRACE_HEADER_MULTI_READ)
8 #include <linux/tracepoint.h>
10 DECLARE_EVENT_CLASS(ocfs2__int,
19 TP_printk("%d", __entry->num)
22 #define DEFINE_OCFS2_INT_EVENT(name) \
23 DEFINE_EVENT(ocfs2__int, name, \
27 DECLARE_EVENT_CLASS(ocfs2__uint,
28 TP_PROTO(unsigned int num),
31 __field( unsigned int, num )
36 TP_printk("%u", __entry->num)
39 #define DEFINE_OCFS2_UINT_EVENT(name) \
40 DEFINE_EVENT(ocfs2__uint, name, \
41 TP_PROTO(unsigned int num), \
44 DECLARE_EVENT_CLASS(ocfs2__ull,
45 TP_PROTO(unsigned long long blkno),
48 __field(unsigned long long, blkno)
51 __entry->blkno = blkno;
53 TP_printk("%llu", __entry->blkno)
56 #define DEFINE_OCFS2_ULL_EVENT(name) \
57 DEFINE_EVENT(ocfs2__ull, name, \
58 TP_PROTO(unsigned long long num), \
61 DECLARE_EVENT_CLASS(ocfs2__pointer,
62 TP_PROTO(void *pointer),
65 __field(void *, pointer)
68 __entry->pointer = pointer;
70 TP_printk("%p", __entry->pointer)
73 #define DEFINE_OCFS2_POINTER_EVENT(name) \
74 DEFINE_EVENT(ocfs2__pointer, name, \
75 TP_PROTO(void *pointer), \
78 DECLARE_EVENT_CLASS(ocfs2__string,
79 TP_PROTO(const char *name),
85 __assign_str(name, name);
87 TP_printk("%s", __get_str(name))
90 #define DEFINE_OCFS2_STRING_EVENT(name) \
91 DEFINE_EVENT(ocfs2__string, name, \
92 TP_PROTO(const char *name), \
95 DECLARE_EVENT_CLASS(ocfs2__int_int,
96 TP_PROTO(int value1, int value2),
97 TP_ARGS(value1, value2),
103 __entry->value1 = value1;
104 __entry->value2 = value2;
106 TP_printk("%d %d", __entry->value1, __entry->value2)
109 #define DEFINE_OCFS2_INT_INT_EVENT(name) \
110 DEFINE_EVENT(ocfs2__int_int, name, \
111 TP_PROTO(int val1, int val2), \
114 DECLARE_EVENT_CLASS(ocfs2__uint_int,
115 TP_PROTO(unsigned int value1, int value2),
116 TP_ARGS(value1, value2),
118 __field(unsigned int, value1)
122 __entry->value1 = value1;
123 __entry->value2 = value2;
125 TP_printk("%u %d", __entry->value1, __entry->value2)
128 #define DEFINE_OCFS2_UINT_INT_EVENT(name) \
129 DEFINE_EVENT(ocfs2__uint_int, name, \
130 TP_PROTO(unsigned int val1, int val2), \
133 DECLARE_EVENT_CLASS(ocfs2__uint_uint,
134 TP_PROTO(unsigned int value1, unsigned int value2),
135 TP_ARGS(value1, value2),
137 __field(unsigned int, value1)
138 __field(unsigned int, value2)
141 __entry->value1 = value1;
142 __entry->value2 = value2;
144 TP_printk("%u %u", __entry->value1, __entry->value2)
147 #define DEFINE_OCFS2_UINT_UINT_EVENT(name) \
148 DEFINE_EVENT(ocfs2__uint_uint, name, \
149 TP_PROTO(unsigned int val1, unsigned int val2), \
152 DECLARE_EVENT_CLASS(ocfs2__ull_uint,
153 TP_PROTO(unsigned long long value1, unsigned int value2),
154 TP_ARGS(value1, value2),
156 __field(unsigned long long, value1)
157 __field(unsigned int, value2)
160 __entry->value1 = value1;
161 __entry->value2 = value2;
163 TP_printk("%llu %u", __entry->value1, __entry->value2)
166 #define DEFINE_OCFS2_ULL_UINT_EVENT(name) \
167 DEFINE_EVENT(ocfs2__ull_uint, name, \
168 TP_PROTO(unsigned long long val1, unsigned int val2), \
171 DECLARE_EVENT_CLASS(ocfs2__ull_int,
172 TP_PROTO(unsigned long long value1, int value2),
173 TP_ARGS(value1, value2),
175 __field(unsigned long long, value1)
179 __entry->value1 = value1;
180 __entry->value2 = value2;
182 TP_printk("%llu %d", __entry->value1, __entry->value2)
185 #define DEFINE_OCFS2_ULL_INT_EVENT(name) \
186 DEFINE_EVENT(ocfs2__ull_int, name, \
187 TP_PROTO(unsigned long long val1, int val2), \
190 DECLARE_EVENT_CLASS(ocfs2__ull_ull,
191 TP_PROTO(unsigned long long value1, unsigned long long value2),
192 TP_ARGS(value1, value2),
194 __field(unsigned long long, value1)
195 __field(unsigned long long, value2)
198 __entry->value1 = value1;
199 __entry->value2 = value2;
201 TP_printk("%llu %llu", __entry->value1, __entry->value2)
204 #define DEFINE_OCFS2_ULL_ULL_EVENT(name) \
205 DEFINE_EVENT(ocfs2__ull_ull, name, \
206 TP_PROTO(unsigned long long val1, unsigned long long val2), \
209 DECLARE_EVENT_CLASS(ocfs2__ull_ull_uint,
210 TP_PROTO(unsigned long long value1,
211 unsigned long long value2, unsigned int value3),
212 TP_ARGS(value1, value2, value3),
214 __field(unsigned long long, value1)
215 __field(unsigned long long, value2)
216 __field(unsigned int, value3)
219 __entry->value1 = value1;
220 __entry->value2 = value2;
221 __entry->value3 = value3;
223 TP_printk("%llu %llu %u",
224 __entry->value1, __entry->value2, __entry->value3)
227 #define DEFINE_OCFS2_ULL_ULL_UINT_EVENT(name) \
228 DEFINE_EVENT(ocfs2__ull_ull_uint, name, \
229 TP_PROTO(unsigned long long val1, \
230 unsigned long long val2, unsigned int val3), \
231 TP_ARGS(val1, val2, val3))
233 DECLARE_EVENT_CLASS(ocfs2__ull_uint_uint,
234 TP_PROTO(unsigned long long value1,
235 unsigned int value2, unsigned int value3),
236 TP_ARGS(value1, value2, value3),
238 __field(unsigned long long, value1)
239 __field(unsigned int, value2)
240 __field(unsigned int, value3)
243 __entry->value1 = value1;
244 __entry->value2 = value2;
245 __entry->value3 = value3;
247 TP_printk("%llu %u %u", __entry->value1,
248 __entry->value2, __entry->value3)
251 #define DEFINE_OCFS2_ULL_UINT_UINT_EVENT(name) \
252 DEFINE_EVENT(ocfs2__ull_uint_uint, name, \
253 TP_PROTO(unsigned long long val1, \
254 unsigned int val2, unsigned int val3), \
255 TP_ARGS(val1, val2, val3))
257 DECLARE_EVENT_CLASS(ocfs2__uint_uint_uint,
258 TP_PROTO(unsigned int value1, unsigned int value2,
259 unsigned int value3),
260 TP_ARGS(value1, value2, value3),
262 __field( unsigned int, value1 )
263 __field( unsigned int, value2 )
264 __field( unsigned int, value3 )
267 __entry->value1 = value1;
268 __entry->value2 = value2;
269 __entry->value3 = value3;
271 TP_printk("%u %u %u", __entry->value1, __entry->value2, __entry->value3)
274 #define DEFINE_OCFS2_UINT_UINT_UINT_EVENT(name) \
275 DEFINE_EVENT(ocfs2__uint_uint_uint, name, \
276 TP_PROTO(unsigned int value1, unsigned int value2, \
277 unsigned int value3), \
278 TP_ARGS(value1, value2, value3))
280 DECLARE_EVENT_CLASS(ocfs2__ull_ull_ull,
281 TP_PROTO(unsigned long long value1,
282 unsigned long long value2, unsigned long long value3),
283 TP_ARGS(value1, value2, value3),
285 __field(unsigned long long, value1)
286 __field(unsigned long long, value2)
287 __field(unsigned long long, value3)
290 __entry->value1 = value1;
291 __entry->value2 = value2;
292 __entry->value3 = value3;
294 TP_printk("%llu %llu %llu",
295 __entry->value1, __entry->value2, __entry->value3)
298 #define DEFINE_OCFS2_ULL_ULL_ULL_EVENT(name) \
299 DEFINE_EVENT(ocfs2__ull_ull_ull, name, \
300 TP_PROTO(unsigned long long value1, unsigned long long value2, \
301 unsigned long long value3), \
302 TP_ARGS(value1, value2, value3))
304 DECLARE_EVENT_CLASS(ocfs2__ull_int_int_int,
305 TP_PROTO(unsigned long long ull, int value1, int value2, int value3),
306 TP_ARGS(ull, value1, value2, value3),
308 __field( unsigned long long, ull )
309 __field( int, value1 )
310 __field( int, value2 )
311 __field( int, value3 )
315 __entry->value1 = value1;
316 __entry->value2 = value2;
317 __entry->value3 = value3;
319 TP_printk("%llu %d %d %d",
320 __entry->ull, __entry->value1,
321 __entry->value2, __entry->value3)
324 #define DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(name) \
325 DEFINE_EVENT(ocfs2__ull_int_int_int, name, \
326 TP_PROTO(unsigned long long ull, int value1, \
327 int value2, int value3), \
328 TP_ARGS(ull, value1, value2, value3))
330 DECLARE_EVENT_CLASS(ocfs2__ull_uint_uint_uint,
331 TP_PROTO(unsigned long long ull, unsigned int value1,
332 unsigned int value2, unsigned int value3),
333 TP_ARGS(ull, value1, value2, value3),
335 __field(unsigned long long, ull)
336 __field(unsigned int, value1)
337 __field(unsigned int, value2)
338 __field(unsigned int, value3)
342 __entry->value1 = value1;
343 __entry->value2 = value2;
344 __entry->value3 = value3;
346 TP_printk("%llu %u %u %u",
347 __entry->ull, __entry->value1,
348 __entry->value2, __entry->value3)
351 #define DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(name) \
352 DEFINE_EVENT(ocfs2__ull_uint_uint_uint, name, \
353 TP_PROTO(unsigned long long ull, unsigned int value1, \
354 unsigned int value2, unsigned int value3), \
355 TP_ARGS(ull, value1, value2, value3))
357 DECLARE_EVENT_CLASS(ocfs2__ull_ull_uint_uint,
358 TP_PROTO(unsigned long long value1, unsigned long long value2,
359 unsigned int value3, unsigned int value4),
360 TP_ARGS(value1, value2, value3, value4),
362 __field(unsigned long long, value1)
363 __field(unsigned long long, value2)
364 __field(unsigned int, value3)
365 __field(unsigned int, value4)
368 __entry->value1 = value1;
369 __entry->value2 = value2;
370 __entry->value3 = value3;
371 __entry->value4 = value4;
373 TP_printk("%llu %llu %u %u",
374 __entry->value1, __entry->value2,
375 __entry->value3, __entry->value4)
378 #define DEFINE_OCFS2_ULL_ULL_UINT_UINT_EVENT(name) \
379 DEFINE_EVENT(ocfs2__ull_ull_uint_uint, name, \
380 TP_PROTO(unsigned long long ull, unsigned long long ull1, \
381 unsigned int value2, unsigned int value3), \
382 TP_ARGS(ull, ull1, value2, value3))
384 /* Trace events for fs/ocfs2/alloc.c. */
385 DECLARE_EVENT_CLASS(ocfs2__btree_ops,
386 TP_PROTO(unsigned long long owner,\
387 unsigned int value1, unsigned int value2),
388 TP_ARGS(owner, value1, value2),
390 __field(unsigned long long, owner)
391 __field(unsigned int, value1)
392 __field(unsigned int, value2)
395 __entry->owner = owner;
396 __entry->value1 = value1;
397 __entry->value2 = value2;
399 TP_printk("%llu %u %u",
400 __entry->owner, __entry->value1, __entry->value2)
403 #define DEFINE_OCFS2_BTREE_EVENT(name) \
404 DEFINE_EVENT(ocfs2__btree_ops, name, \
405 TP_PROTO(unsigned long long owner, \
406 unsigned int value1, unsigned int value2), \
407 TP_ARGS(owner, value1, value2))
409 DEFINE_OCFS2_BTREE_EVENT(ocfs2_adjust_rightmost_branch);
411 DEFINE_OCFS2_BTREE_EVENT(ocfs2_rotate_tree_right);
413 DEFINE_OCFS2_BTREE_EVENT(ocfs2_append_rec_to_path);
415 DEFINE_OCFS2_BTREE_EVENT(ocfs2_insert_extent_start);
417 DEFINE_OCFS2_BTREE_EVENT(ocfs2_add_clusters_in_btree);
419 DEFINE_OCFS2_INT_EVENT(ocfs2_num_free_extents);
421 DEFINE_OCFS2_INT_EVENT(ocfs2_complete_edge_insert);
423 TRACE_EVENT(ocfs2_grow_tree,
424 TP_PROTO(unsigned long long owner, int depth),
425 TP_ARGS(owner, depth),
427 __field(unsigned long long, owner)
431 __entry->owner = owner;
432 __entry->depth = depth;
434 TP_printk("%llu %d", __entry->owner, __entry->depth)
437 TRACE_EVENT(ocfs2_rotate_subtree,
438 TP_PROTO(int subtree_root, unsigned long long blkno,
440 TP_ARGS(subtree_root, blkno, depth),
442 __field(int, subtree_root)
443 __field(unsigned long long, blkno)
447 __entry->subtree_root = subtree_root;
448 __entry->blkno = blkno;
449 __entry->depth = depth;
451 TP_printk("%d %llu %d", __entry->subtree_root,
452 __entry->blkno, __entry->depth)
455 TRACE_EVENT(ocfs2_insert_extent,
456 TP_PROTO(unsigned int ins_appending, unsigned int ins_contig,
457 int ins_contig_index, int free_records, int ins_tree_depth),
458 TP_ARGS(ins_appending, ins_contig, ins_contig_index, free_records,
461 __field(unsigned int, ins_appending)
462 __field(unsigned int, ins_contig)
463 __field(int, ins_contig_index)
464 __field(int, free_records)
465 __field(int, ins_tree_depth)
468 __entry->ins_appending = ins_appending;
469 __entry->ins_contig = ins_contig;
470 __entry->ins_contig_index = ins_contig_index;
471 __entry->free_records = free_records;
472 __entry->ins_tree_depth = ins_tree_depth;
474 TP_printk("%u %u %d %d %d",
475 __entry->ins_appending, __entry->ins_contig,
476 __entry->ins_contig_index, __entry->free_records,
477 __entry->ins_tree_depth)
480 TRACE_EVENT(ocfs2_split_extent,
481 TP_PROTO(int split_index, unsigned int c_contig_type,
482 unsigned int c_has_empty_extent,
483 unsigned int c_split_covers_rec),
484 TP_ARGS(split_index, c_contig_type,
485 c_has_empty_extent, c_split_covers_rec),
487 __field(int, split_index)
488 __field(unsigned int, c_contig_type)
489 __field(unsigned int, c_has_empty_extent)
490 __field(unsigned int, c_split_covers_rec)
493 __entry->split_index = split_index;
494 __entry->c_contig_type = c_contig_type;
495 __entry->c_has_empty_extent = c_has_empty_extent;
496 __entry->c_split_covers_rec = c_split_covers_rec;
498 TP_printk("%d %u %u %u", __entry->split_index, __entry->c_contig_type,
499 __entry->c_has_empty_extent, __entry->c_split_covers_rec)
502 TRACE_EVENT(ocfs2_remove_extent,
503 TP_PROTO(unsigned long long owner, unsigned int cpos,
504 unsigned int len, int index,
505 unsigned int e_cpos, unsigned int clusters),
506 TP_ARGS(owner, cpos, len, index, e_cpos, clusters),
508 __field(unsigned long long, owner)
509 __field(unsigned int, cpos)
510 __field(unsigned int, len)
512 __field(unsigned int, e_cpos)
513 __field(unsigned int, clusters)
516 __entry->owner = owner;
517 __entry->cpos = cpos;
519 __entry->index = index;
520 __entry->e_cpos = e_cpos;
521 __entry->clusters = clusters;
523 TP_printk("%llu %u %u %d %u %u",
524 __entry->owner, __entry->cpos, __entry->len, __entry->index,
525 __entry->e_cpos, __entry->clusters)
528 TRACE_EVENT(ocfs2_commit_truncate,
529 TP_PROTO(unsigned long long ino, unsigned int new_cpos,
530 unsigned int clusters, unsigned int depth),
531 TP_ARGS(ino, new_cpos, clusters, depth),
533 __field(unsigned long long, ino)
534 __field(unsigned int, new_cpos)
535 __field(unsigned int, clusters)
536 __field(unsigned int, depth)
540 __entry->new_cpos = new_cpos;
541 __entry->clusters = clusters;
542 __entry->depth = depth;
544 TP_printk("%llu %u %u %u",
545 __entry->ino, __entry->new_cpos,
546 __entry->clusters, __entry->depth)
549 TRACE_EVENT(ocfs2_validate_extent_block,
550 TP_PROTO(unsigned long long blkno),
553 __field(unsigned long long, blkno)
556 __entry->blkno = blkno;
558 TP_printk("%llu ", __entry->blkno)
561 TRACE_EVENT(ocfs2_rotate_leaf,
562 TP_PROTO(unsigned int insert_cpos, int insert_index,
563 int has_empty, int next_free,
564 unsigned int l_count),
565 TP_ARGS(insert_cpos, insert_index, has_empty,
568 __field(unsigned int, insert_cpos)
569 __field(int, insert_index)
570 __field(int, has_empty)
571 __field(int, next_free)
572 __field(unsigned int, l_count)
575 __entry->insert_cpos = insert_cpos;
576 __entry->insert_index = insert_index;
577 __entry->has_empty = has_empty;
578 __entry->next_free = next_free;
579 __entry->l_count = l_count;
581 TP_printk("%u %d %d %d %u", __entry->insert_cpos,
582 __entry->insert_index, __entry->has_empty,
583 __entry->next_free, __entry->l_count)
586 TRACE_EVENT(ocfs2_add_clusters_in_btree_ret,
587 TP_PROTO(int status, int reason, int err),
588 TP_ARGS(status, reason, err),
595 __entry->status = status;
596 __entry->reason = reason;
599 TP_printk("%d %d %d", __entry->status,
600 __entry->reason, __entry->err)
603 TRACE_EVENT(ocfs2_mark_extent_written,
604 TP_PROTO(unsigned long long owner, unsigned int cpos,
605 unsigned int len, unsigned int phys),
606 TP_ARGS(owner, cpos, len, phys),
608 __field(unsigned long long, owner)
609 __field(unsigned int, cpos)
610 __field(unsigned int, len)
611 __field(unsigned int, phys)
614 __entry->owner = owner;
615 __entry->cpos = cpos;
617 __entry->phys = phys;
619 TP_printk("%llu %u %u %u",
620 __entry->owner, __entry->cpos,
621 __entry->len, __entry->phys)
624 DECLARE_EVENT_CLASS(ocfs2__truncate_log_ops,
625 TP_PROTO(unsigned long long blkno, int index,
626 unsigned int start, unsigned int num),
627 TP_ARGS(blkno, index, start, num),
629 __field(unsigned long long, blkno)
631 __field(unsigned int, start)
632 __field(unsigned int, num)
635 __entry->blkno = blkno;
636 __entry->index = index;
637 __entry->start = start;
640 TP_printk("%llu %d %u %u",
641 __entry->blkno, __entry->index,
642 __entry->start, __entry->num)
645 #define DEFINE_OCFS2_TRUNCATE_LOG_OPS_EVENT(name) \
646 DEFINE_EVENT(ocfs2__truncate_log_ops, name, \
647 TP_PROTO(unsigned long long blkno, int index, \
648 unsigned int start, unsigned int num), \
649 TP_ARGS(blkno, index, start, num))
651 DEFINE_OCFS2_TRUNCATE_LOG_OPS_EVENT(ocfs2_truncate_log_append);
653 DEFINE_OCFS2_TRUNCATE_LOG_OPS_EVENT(ocfs2_replay_truncate_records);
655 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_flush_truncate_log);
657 DEFINE_OCFS2_INT_EVENT(ocfs2_begin_truncate_log_recovery);
659 DEFINE_OCFS2_INT_EVENT(ocfs2_truncate_log_recovery_num);
661 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_complete_truncate_log_recovery);
663 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_free_cached_blocks);
665 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_cache_cluster_dealloc);
667 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_run_deallocs);
669 TRACE_EVENT(ocfs2_cache_block_dealloc,
670 TP_PROTO(int type, int slot, unsigned long long suballoc,
671 unsigned long long blkno, unsigned int bit),
672 TP_ARGS(type, slot, suballoc, blkno, bit),
676 __field(unsigned long long, suballoc)
677 __field(unsigned long long, blkno)
678 __field(unsigned int, bit)
681 __entry->type = type;
682 __entry->slot = slot;
683 __entry->suballoc = suballoc;
684 __entry->blkno = blkno;
687 TP_printk("%d %d %llu %llu %u",
688 __entry->type, __entry->slot, __entry->suballoc,
689 __entry->blkno, __entry->bit)
692 TRACE_EVENT(ocfs2_trim_extent,
693 TP_PROTO(struct super_block *sb, unsigned long long blk,
694 unsigned long long count),
695 TP_ARGS(sb, blk, count),
697 __field(int, dev_major)
698 __field(int, dev_minor)
699 __field(unsigned long long, blk)
700 __field(__u64, count)
703 __entry->dev_major = MAJOR(sb->s_dev);
704 __entry->dev_minor = MINOR(sb->s_dev);
706 __entry->count = count;
708 TP_printk("%d %d %llu %llu",
709 __entry->dev_major, __entry->dev_minor,
710 __entry->blk, __entry->count)
713 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_trim_group);
715 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_trim_mainbm);
717 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_trim_fs);
719 /* End of trace events for fs/ocfs2/alloc.c. */
721 /* Trace events for fs/ocfs2/localalloc.c. */
723 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_la_set_sizes);
725 DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(ocfs2_alloc_should_use_local);
727 DEFINE_OCFS2_INT_EVENT(ocfs2_load_local_alloc);
729 DEFINE_OCFS2_INT_EVENT(ocfs2_begin_local_alloc_recovery);
731 DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(ocfs2_reserve_local_alloc_bits);
733 DEFINE_OCFS2_UINT_EVENT(ocfs2_local_alloc_count_bits);
735 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_local_alloc_find_clear_bits_search_bitmap);
737 DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(ocfs2_local_alloc_find_clear_bits);
739 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_sync_local_to_main);
741 TRACE_EVENT(ocfs2_sync_local_to_main_free,
742 TP_PROTO(int count, int bit, unsigned long long start_blk,
743 unsigned long long blkno),
744 TP_ARGS(count, bit, start_blk, blkno),
748 __field(unsigned long long, start_blk)
749 __field(unsigned long long, blkno)
752 __entry->count = count;
754 __entry->start_blk = start_blk;
755 __entry->blkno = blkno;
757 TP_printk("%d %d %llu %llu",
758 __entry->count, __entry->bit, __entry->start_blk,
762 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_local_alloc_new_window);
764 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_local_alloc_new_window_result);
766 /* End of trace events for fs/ocfs2/localalloc.c. */
768 /* Trace events for fs/ocfs2/resize.c. */
770 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_update_last_group_and_inode);
772 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_group_extend);
774 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_group_add);
776 /* End of trace events for fs/ocfs2/resize.c. */
778 /* Trace events for fs/ocfs2/suballoc.c. */
780 DEFINE_OCFS2_ULL_EVENT(ocfs2_validate_group_descriptor);
782 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_block_group_alloc_contig);
784 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_block_group_alloc_discontig);
786 DEFINE_OCFS2_ULL_EVENT(ocfs2_block_group_alloc);
788 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_reserve_suballoc_bits_nospc);
790 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_reserve_suballoc_bits_no_new_group);
792 DEFINE_OCFS2_ULL_EVENT(ocfs2_reserve_new_inode_new_group);
794 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_block_group_set_bits);
796 TRACE_EVENT(ocfs2_relink_block_group,
797 TP_PROTO(unsigned long long i_blkno, unsigned int chain,
798 unsigned long long bg_blkno,
799 unsigned long long prev_blkno),
800 TP_ARGS(i_blkno, chain, bg_blkno, prev_blkno),
802 __field(unsigned long long, i_blkno)
803 __field(unsigned int, chain)
804 __field(unsigned long long, bg_blkno)
805 __field(unsigned long long, prev_blkno)
808 __entry->i_blkno = i_blkno;
809 __entry->chain = chain;
810 __entry->bg_blkno = bg_blkno;
811 __entry->prev_blkno = prev_blkno;
813 TP_printk("%llu %u %llu %llu",
814 __entry->i_blkno, __entry->chain, __entry->bg_blkno,
818 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_cluster_group_search_wrong_max_bits);
820 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_cluster_group_search_max_block);
822 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_block_group_search_max_block);
824 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_search_chain_begin);
826 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_search_chain_succ);
828 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_search_chain_end);
830 DEFINE_OCFS2_UINT_EVENT(ocfs2_claim_suballoc_bits);
832 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_claim_new_inode_at_loc);
834 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_block_group_clear_bits);
836 TRACE_EVENT(ocfs2_free_suballoc_bits,
837 TP_PROTO(unsigned long long inode, unsigned long long group,
838 unsigned int start_bit, unsigned int count),
839 TP_ARGS(inode, group, start_bit, count),
841 __field(unsigned long long, inode)
842 __field(unsigned long long, group)
843 __field(unsigned int, start_bit)
844 __field(unsigned int, count)
847 __entry->inode = inode;
848 __entry->group = group;
849 __entry->start_bit = start_bit;
850 __entry->count = count;
852 TP_printk("%llu %llu %u %u", __entry->inode, __entry->group,
853 __entry->start_bit, __entry->count)
856 TRACE_EVENT(ocfs2_free_clusters,
857 TP_PROTO(unsigned long long bg_blkno, unsigned long long start_blk,
858 unsigned int start_bit, unsigned int count),
859 TP_ARGS(bg_blkno, start_blk, start_bit, count),
861 __field(unsigned long long, bg_blkno)
862 __field(unsigned long long, start_blk)
863 __field(unsigned int, start_bit)
864 __field(unsigned int, count)
867 __entry->bg_blkno = bg_blkno;
868 __entry->start_blk = start_blk;
869 __entry->start_bit = start_bit;
870 __entry->count = count;
872 TP_printk("%llu %llu %u %u", __entry->bg_blkno, __entry->start_blk,
873 __entry->start_bit, __entry->count)
876 DEFINE_OCFS2_ULL_EVENT(ocfs2_get_suballoc_slot_bit);
878 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_test_suballoc_bit);
880 DEFINE_OCFS2_ULL_EVENT(ocfs2_test_inode_bit);
882 /* End of trace events for fs/ocfs2/suballoc.c. */
884 /* Trace events for fs/ocfs2/refcounttree.c. */
886 DEFINE_OCFS2_ULL_EVENT(ocfs2_validate_refcount_block);
888 DEFINE_OCFS2_ULL_EVENT(ocfs2_purge_refcount_trees);
890 DEFINE_OCFS2_ULL_EVENT(ocfs2_create_refcount_tree);
892 DEFINE_OCFS2_ULL_EVENT(ocfs2_create_refcount_tree_blkno);
894 DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(ocfs2_change_refcount_rec);
896 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_expand_inline_ref_root);
898 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_divide_leaf_refcount_block);
900 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_new_leaf_refcount_block);
902 DECLARE_EVENT_CLASS(ocfs2__refcount_tree_ops,
903 TP_PROTO(unsigned long long blkno, int index,
904 unsigned long long cpos,
905 unsigned int clusters, unsigned int refcount),
906 TP_ARGS(blkno, index, cpos, clusters, refcount),
908 __field(unsigned long long, blkno)
910 __field(unsigned long long, cpos)
911 __field(unsigned int, clusters)
912 __field(unsigned int, refcount)
915 __entry->blkno = blkno;
916 __entry->index = index;
917 __entry->cpos = cpos;
918 __entry->clusters = clusters;
919 __entry->refcount = refcount;
921 TP_printk("%llu %d %llu %u %u", __entry->blkno, __entry->index,
922 __entry->cpos, __entry->clusters, __entry->refcount)
925 #define DEFINE_OCFS2_REFCOUNT_TREE_OPS_EVENT(name) \
926 DEFINE_EVENT(ocfs2__refcount_tree_ops, name, \
927 TP_PROTO(unsigned long long blkno, int index, \
928 unsigned long long cpos, \
929 unsigned int count, unsigned int refcount), \
930 TP_ARGS(blkno, index, cpos, count, refcount))
932 DEFINE_OCFS2_REFCOUNT_TREE_OPS_EVENT(ocfs2_insert_refcount_rec);
934 TRACE_EVENT(ocfs2_split_refcount_rec,
935 TP_PROTO(unsigned long long cpos,
936 unsigned int clusters, unsigned int refcount,
937 unsigned long long split_cpos,
938 unsigned int split_clusters, unsigned int split_refcount),
939 TP_ARGS(cpos, clusters, refcount,
940 split_cpos, split_clusters, split_refcount),
942 __field(unsigned long long, cpos)
943 __field(unsigned int, clusters)
944 __field(unsigned int, refcount)
945 __field(unsigned long long, split_cpos)
946 __field(unsigned int, split_clusters)
947 __field(unsigned int, split_refcount)
950 __entry->cpos = cpos;
951 __entry->clusters = clusters;
952 __entry->refcount = refcount;
953 __entry->split_cpos = split_cpos;
954 __entry->split_clusters = split_clusters;
955 __entry->split_refcount = split_refcount;
957 TP_printk("%llu %u %u %llu %u %u",
958 __entry->cpos, __entry->clusters, __entry->refcount,
959 __entry->split_cpos, __entry->split_clusters,
960 __entry->split_refcount)
963 DEFINE_OCFS2_REFCOUNT_TREE_OPS_EVENT(ocfs2_split_refcount_rec_insert);
965 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_increase_refcount_begin);
967 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_increase_refcount_change);
969 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_increase_refcount_insert);
971 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_increase_refcount_split);
973 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_remove_refcount_extent);
975 DEFINE_OCFS2_ULL_EVENT(ocfs2_restore_refcount_block);
977 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_decrease_refcount_rec);
979 TRACE_EVENT(ocfs2_decrease_refcount,
980 TP_PROTO(unsigned long long owner,
981 unsigned long long cpos,
982 unsigned int len, int delete),
983 TP_ARGS(owner, cpos, len, delete),
985 __field(unsigned long long, owner)
986 __field(unsigned long long, cpos)
987 __field(unsigned int, len)
991 __entry->owner = owner;
992 __entry->cpos = cpos;
994 __entry->delete = delete;
996 TP_printk("%llu %llu %u %d",
997 __entry->owner, __entry->cpos, __entry->len, __entry->delete)
1000 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_mark_extent_refcounted);
1002 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_calc_refcount_meta_credits);
1004 TRACE_EVENT(ocfs2_calc_refcount_meta_credits_iterate,
1005 TP_PROTO(int recs_add, unsigned long long cpos,
1006 unsigned int clusters, unsigned long long r_cpos,
1007 unsigned int r_clusters, unsigned int refcount, int index),
1008 TP_ARGS(recs_add, cpos, clusters, r_cpos, r_clusters, refcount, index),
1010 __field(int, recs_add)
1011 __field(unsigned long long, cpos)
1012 __field(unsigned int, clusters)
1013 __field(unsigned long long, r_cpos)
1014 __field(unsigned int, r_clusters)
1015 __field(unsigned int, refcount)
1019 __entry->recs_add = recs_add;
1020 __entry->cpos = cpos;
1021 __entry->clusters = clusters;
1022 __entry->r_cpos = r_cpos;
1023 __entry->r_clusters = r_clusters;
1024 __entry->refcount = refcount;
1025 __entry->index = index;
1027 TP_printk("%d %llu %u %llu %u %u %d",
1028 __entry->recs_add, __entry->cpos, __entry->clusters,
1029 __entry->r_cpos, __entry->r_clusters,
1030 __entry->refcount, __entry->index)
1033 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_add_refcount_flag);
1035 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_prepare_refcount_change_for_del);
1037 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_lock_refcount_allocators);
1039 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_duplicate_clusters_by_page);
1041 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_duplicate_clusters_by_jbd);
1043 TRACE_EVENT(ocfs2_clear_ext_refcount,
1044 TP_PROTO(unsigned long long ino, unsigned int cpos,
1045 unsigned int len, unsigned int p_cluster,
1046 unsigned int ext_flags),
1047 TP_ARGS(ino, cpos, len, p_cluster, ext_flags),
1049 __field(unsigned long long, ino)
1050 __field(unsigned int, cpos)
1051 __field(unsigned int, len)
1052 __field(unsigned int, p_cluster)
1053 __field(unsigned int, ext_flags)
1057 __entry->cpos = cpos;
1059 __entry->p_cluster = p_cluster;
1060 __entry->ext_flags = ext_flags;
1062 TP_printk("%llu %u %u %u %u",
1063 __entry->ino, __entry->cpos, __entry->len,
1064 __entry->p_cluster, __entry->ext_flags)
1067 TRACE_EVENT(ocfs2_replace_clusters,
1068 TP_PROTO(unsigned long long ino, unsigned int cpos,
1069 unsigned int old, unsigned int new, unsigned int len,
1070 unsigned int ext_flags),
1071 TP_ARGS(ino, cpos, old, new, len, ext_flags),
1073 __field(unsigned long long, ino)
1074 __field(unsigned int, cpos)
1075 __field(unsigned int, old)
1076 __field(unsigned int, new)
1077 __field(unsigned int, len)
1078 __field(unsigned int, ext_flags)
1082 __entry->cpos = cpos;
1086 __entry->ext_flags = ext_flags;
1088 TP_printk("%llu %u %u %u %u %u",
1089 __entry->ino, __entry->cpos, __entry->old, __entry->new,
1090 __entry->len, __entry->ext_flags)
1093 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_make_clusters_writable);
1095 TRACE_EVENT(ocfs2_refcount_cow_hunk,
1096 TP_PROTO(unsigned long long ino, unsigned int cpos,
1097 unsigned int write_len, unsigned int max_cpos,
1098 unsigned int cow_start, unsigned int cow_len),
1099 TP_ARGS(ino, cpos, write_len, max_cpos, cow_start, cow_len),
1101 __field(unsigned long long, ino)
1102 __field(unsigned int, cpos)
1103 __field(unsigned int, write_len)
1104 __field(unsigned int, max_cpos)
1105 __field(unsigned int, cow_start)
1106 __field(unsigned int, cow_len)
1110 __entry->cpos = cpos;
1111 __entry->write_len = write_len;
1112 __entry->max_cpos = max_cpos;
1113 __entry->cow_start = cow_start;
1114 __entry->cow_len = cow_len;
1116 TP_printk("%llu %u %u %u %u %u",
1117 __entry->ino, __entry->cpos, __entry->write_len,
1118 __entry->max_cpos, __entry->cow_start, __entry->cow_len)
1121 /* End of trace events for fs/ocfs2/refcounttree.c. */
1123 /* Trace events for fs/ocfs2/aops.c. */
1125 DECLARE_EVENT_CLASS(ocfs2__get_block,
1126 TP_PROTO(unsigned long long ino, unsigned long long iblock,
1127 void *bh_result, int create),
1128 TP_ARGS(ino, iblock, bh_result, create),
1130 __field(unsigned long long, ino)
1131 __field(unsigned long long, iblock)
1132 __field(void *, bh_result)
1133 __field(int, create)
1137 __entry->iblock = iblock;
1138 __entry->bh_result = bh_result;
1139 __entry->create = create;
1141 TP_printk("%llu %llu %p %d",
1142 __entry->ino, __entry->iblock,
1143 __entry->bh_result, __entry->create)
1146 #define DEFINE_OCFS2_GET_BLOCK_EVENT(name) \
1147 DEFINE_EVENT(ocfs2__get_block, name, \
1148 TP_PROTO(unsigned long long ino, unsigned long long iblock, \
1149 void *bh_result, int create), \
1150 TP_ARGS(ino, iblock, bh_result, create))
1152 DEFINE_OCFS2_GET_BLOCK_EVENT(ocfs2_symlink_get_block);
1154 DEFINE_OCFS2_GET_BLOCK_EVENT(ocfs2_get_block);
1156 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_get_block_end);
1158 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_readpage);
1160 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_writepage);
1162 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_bmap);
1164 TRACE_EVENT(ocfs2_try_to_write_inline_data,
1165 TP_PROTO(unsigned long long ino, unsigned int len,
1166 unsigned long long pos, unsigned int flags),
1167 TP_ARGS(ino, len, pos, flags),
1169 __field(unsigned long long, ino)
1170 __field(unsigned int, len)
1171 __field(unsigned long long, pos)
1172 __field(unsigned int, flags)
1178 __entry->flags = flags;
1180 TP_printk("%llu %u %llu 0x%x",
1181 __entry->ino, __entry->len, __entry->pos, __entry->flags)
1184 TRACE_EVENT(ocfs2_write_begin_nolock,
1185 TP_PROTO(unsigned long long ino,
1186 long long i_size, unsigned int i_clusters,
1187 unsigned long long pos, unsigned int len,
1188 unsigned int flags, void *page,
1189 unsigned int clusters, unsigned int extents_to_split),
1190 TP_ARGS(ino, i_size, i_clusters, pos, len, flags,
1191 page, clusters, extents_to_split),
1193 __field(unsigned long long, ino)
1194 __field(long long, i_size)
1195 __field(unsigned int, i_clusters)
1196 __field(unsigned long long, pos)
1197 __field(unsigned int, len)
1198 __field(unsigned int, flags)
1199 __field(void *, page)
1200 __field(unsigned int, clusters)
1201 __field(unsigned int, extents_to_split)
1205 __entry->i_size = i_size;
1206 __entry->i_clusters = i_clusters;
1209 __entry->flags = flags;
1210 __entry->page = page;
1211 __entry->clusters = clusters;
1212 __entry->extents_to_split = extents_to_split;
1214 TP_printk("%llu %lld %u %llu %u %u %p %u %u",
1215 __entry->ino, __entry->i_size, __entry->i_clusters,
1216 __entry->pos, __entry->len,
1217 __entry->flags, __entry->page, __entry->clusters,
1218 __entry->extents_to_split)
1221 TRACE_EVENT(ocfs2_write_end_inline,
1222 TP_PROTO(unsigned long long ino,
1223 unsigned long long pos, unsigned int copied,
1224 unsigned int id_count, unsigned int features),
1225 TP_ARGS(ino, pos, copied, id_count, features),
1227 __field(unsigned long long, ino)
1228 __field(unsigned long long, pos)
1229 __field(unsigned int, copied)
1230 __field(unsigned int, id_count)
1231 __field(unsigned int, features)
1236 __entry->copied = copied;
1237 __entry->id_count = id_count;
1238 __entry->features = features;
1240 TP_printk("%llu %llu %u %u %u",
1241 __entry->ino, __entry->pos, __entry->copied,
1242 __entry->id_count, __entry->features)
1245 /* End of trace events for fs/ocfs2/aops.c. */
1247 /* Trace events for fs/ocfs2/mmap.c. */
1249 TRACE_EVENT(ocfs2_fault,
1250 TP_PROTO(unsigned long long ino,
1251 void *area, void *page, unsigned long pgoff),
1252 TP_ARGS(ino, area, page, pgoff),
1254 __field(unsigned long long, ino)
1255 __field(void *, area)
1256 __field(void *, page)
1257 __field(unsigned long, pgoff)
1261 __entry->area = area;
1262 __entry->page = page;
1263 __entry->pgoff = pgoff;
1265 TP_printk("%llu %p %p %lu",
1266 __entry->ino, __entry->area, __entry->page, __entry->pgoff)
1269 /* End of trace events for fs/ocfs2/mmap.c. */
1271 /* Trace events for fs/ocfs2/file.c. */
1273 DECLARE_EVENT_CLASS(ocfs2__file_ops,
1274 TP_PROTO(void *inode, void *file, void *dentry,
1275 unsigned long long ino,
1276 unsigned int d_len, const unsigned char *d_name,
1277 unsigned long long para),
1278 TP_ARGS(inode, file, dentry, ino, d_len, d_name, para),
1280 __field(void *, inode)
1281 __field(void *, file)
1282 __field(void *, dentry)
1283 __field(unsigned long long, ino)
1284 __field(unsigned int, d_len)
1285 __string(d_name, d_name)
1286 __field(unsigned long long, para)
1289 __entry->inode = inode;
1290 __entry->file = file;
1291 __entry->dentry = dentry;
1293 __entry->d_len = d_len;
1294 __assign_str(d_name, d_name);
1295 __entry->para = para;
1297 TP_printk("%p %p %p %llu %llu %.*s", __entry->inode, __entry->file,
1298 __entry->dentry, __entry->ino, __entry->para,
1299 __entry->d_len, __get_str(d_name))
1302 #define DEFINE_OCFS2_FILE_OPS(name) \
1303 DEFINE_EVENT(ocfs2__file_ops, name, \
1304 TP_PROTO(void *inode, void *file, void *dentry, \
1305 unsigned long long ino, \
1306 unsigned int d_len, const unsigned char *d_name, \
1307 unsigned long long mode), \
1308 TP_ARGS(inode, file, dentry, ino, d_len, d_name, mode))
1310 DEFINE_OCFS2_FILE_OPS(ocfs2_file_open);
1312 DEFINE_OCFS2_FILE_OPS(ocfs2_file_release);
1314 DEFINE_OCFS2_FILE_OPS(ocfs2_sync_file);
1316 DEFINE_OCFS2_FILE_OPS(ocfs2_file_write_iter);
1318 DEFINE_OCFS2_FILE_OPS(ocfs2_file_read_iter);
1320 DEFINE_OCFS2_FILE_OPS(ocfs2_file_splice_read);
1322 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_truncate_file);
1324 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_truncate_file_error);
1326 TRACE_EVENT(ocfs2_extend_allocation,
1327 TP_PROTO(unsigned long long ip_blkno, unsigned long long size,
1328 unsigned int clusters, unsigned int clusters_to_add,
1329 int why, int restart_func),
1330 TP_ARGS(ip_blkno, size, clusters, clusters_to_add, why, restart_func),
1332 __field(unsigned long long, ip_blkno)
1333 __field(unsigned long long, size)
1334 __field(unsigned int, clusters)
1335 __field(unsigned int, clusters_to_add)
1337 __field(int, restart_func)
1340 __entry->ip_blkno = ip_blkno;
1341 __entry->size = size;
1342 __entry->clusters = clusters;
1343 __entry->clusters_to_add = clusters_to_add;
1345 __entry->restart_func = restart_func;
1347 TP_printk("%llu %llu %u %u %d %d",
1348 __entry->ip_blkno, __entry->size, __entry->clusters,
1349 __entry->clusters_to_add, __entry->why, __entry->restart_func)
1352 TRACE_EVENT(ocfs2_extend_allocation_end,
1353 TP_PROTO(unsigned long long ino,
1354 unsigned int di_clusters, unsigned long long di_size,
1355 unsigned int ip_clusters, unsigned long long i_size),
1356 TP_ARGS(ino, di_clusters, di_size, ip_clusters, i_size),
1358 __field(unsigned long long, ino)
1359 __field(unsigned int, di_clusters)
1360 __field(unsigned long long, di_size)
1361 __field(unsigned int, ip_clusters)
1362 __field(unsigned long long, i_size)
1366 __entry->di_clusters = di_clusters;
1367 __entry->di_size = di_size;
1368 __entry->ip_clusters = ip_clusters;
1369 __entry->i_size = i_size;
1371 TP_printk("%llu %u %llu %u %llu", __entry->ino, __entry->di_clusters,
1372 __entry->di_size, __entry->ip_clusters, __entry->i_size)
1375 TRACE_EVENT(ocfs2_write_zero_page,
1376 TP_PROTO(unsigned long long ino,
1377 unsigned long long abs_from, unsigned long long abs_to,
1378 unsigned long index, unsigned int zero_from,
1379 unsigned int zero_to),
1380 TP_ARGS(ino, abs_from, abs_to, index, zero_from, zero_to),
1382 __field(unsigned long long, ino)
1383 __field(unsigned long long, abs_from)
1384 __field(unsigned long long, abs_to)
1385 __field(unsigned long, index)
1386 __field(unsigned int, zero_from)
1387 __field(unsigned int, zero_to)
1391 __entry->abs_from = abs_from;
1392 __entry->abs_to = abs_to;
1393 __entry->index = index;
1394 __entry->zero_from = zero_from;
1395 __entry->zero_to = zero_to;
1397 TP_printk("%llu %llu %llu %lu %u %u", __entry->ino,
1398 __entry->abs_from, __entry->abs_to,
1399 __entry->index, __entry->zero_from, __entry->zero_to)
1402 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_zero_extend_range);
1404 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_zero_extend);
1406 TRACE_EVENT(ocfs2_setattr,
1407 TP_PROTO(void *inode, void *dentry,
1408 unsigned long long ino,
1409 unsigned int d_len, const unsigned char *d_name,
1410 unsigned int ia_valid, unsigned int ia_mode,
1411 unsigned int ia_uid, unsigned int ia_gid),
1412 TP_ARGS(inode, dentry, ino, d_len, d_name,
1413 ia_valid, ia_mode, ia_uid, ia_gid),
1415 __field(void *, inode)
1416 __field(void *, dentry)
1417 __field(unsigned long long, ino)
1418 __field(unsigned int, d_len)
1419 __string(d_name, d_name)
1420 __field(unsigned int, ia_valid)
1421 __field(unsigned int, ia_mode)
1422 __field(unsigned int, ia_uid)
1423 __field(unsigned int, ia_gid)
1426 __entry->inode = inode;
1427 __entry->dentry = dentry;
1429 __entry->d_len = d_len;
1430 __assign_str(d_name, d_name);
1431 __entry->ia_valid = ia_valid;
1432 __entry->ia_mode = ia_mode;
1433 __entry->ia_uid = ia_uid;
1434 __entry->ia_gid = ia_gid;
1436 TP_printk("%p %p %llu %.*s %u %u %u %u", __entry->inode,
1437 __entry->dentry, __entry->ino, __entry->d_len,
1438 __get_str(d_name), __entry->ia_valid, __entry->ia_mode,
1439 __entry->ia_uid, __entry->ia_gid)
1442 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_write_remove_suid);
1444 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_zero_partial_clusters);
1446 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_zero_partial_clusters_range1);
1448 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_zero_partial_clusters_range2);
1450 DEFINE_OCFS2_ULL_ULL_ULL_EVENT(ocfs2_remove_inode_range);
1452 TRACE_EVENT(ocfs2_prepare_inode_for_write,
1453 TP_PROTO(unsigned long long ino, unsigned long long saved_pos,
1454 unsigned long count, int wait),
1455 TP_ARGS(ino, saved_pos, count, wait),
1457 __field(unsigned long long, ino)
1458 __field(unsigned long long, saved_pos)
1459 __field(unsigned long, count)
1464 __entry->saved_pos = saved_pos;
1465 __entry->count = count;
1466 __entry->wait = wait;
1468 TP_printk("%llu %llu %lu %d", __entry->ino,
1469 __entry->saved_pos, __entry->count, __entry->wait)
1472 DEFINE_OCFS2_INT_EVENT(generic_file_read_iter_ret);
1473 DEFINE_OCFS2_INT_EVENT(filemap_splice_read_ret);
1475 /* End of trace events for fs/ocfs2/file.c. */
1477 /* Trace events for fs/ocfs2/inode.c. */
1479 TRACE_EVENT(ocfs2_iget_begin,
1480 TP_PROTO(unsigned long long ino, unsigned int flags, int sysfile_type),
1481 TP_ARGS(ino, flags, sysfile_type),
1483 __field(unsigned long long, ino)
1484 __field(unsigned int, flags)
1485 __field(int, sysfile_type)
1489 __entry->flags = flags;
1490 __entry->sysfile_type = sysfile_type;
1492 TP_printk("%llu %u %d", __entry->ino,
1493 __entry->flags, __entry->sysfile_type)
1496 DEFINE_OCFS2_ULL_EVENT(ocfs2_iget5_locked);
1498 TRACE_EVENT(ocfs2_iget_end,
1499 TP_PROTO(void *inode, unsigned long long ino),
1500 TP_ARGS(inode, ino),
1502 __field(void *, inode)
1503 __field(unsigned long long, ino)
1506 __entry->inode = inode;
1509 TP_printk("%p %llu", __entry->inode, __entry->ino)
1512 TRACE_EVENT(ocfs2_find_actor,
1513 TP_PROTO(void *inode, unsigned long long ino,
1514 void *args, unsigned long long fi_blkno),
1515 TP_ARGS(inode, ino, args, fi_blkno),
1517 __field(void *, inode)
1518 __field(unsigned long long, ino)
1519 __field(void *, args)
1520 __field(unsigned long long, fi_blkno)
1523 __entry->inode = inode;
1525 __entry->args = args;
1526 __entry->fi_blkno = fi_blkno;
1528 TP_printk("%p %llu %p %llu", __entry->inode, __entry->ino,
1529 __entry->args, __entry->fi_blkno)
1532 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_populate_inode);
1534 DEFINE_OCFS2_ULL_INT_EVENT(ocfs2_read_locked_inode);
1536 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_check_orphan_recovery_state);
1538 DEFINE_OCFS2_ULL_EVENT(ocfs2_validate_inode_block);
1539 DEFINE_OCFS2_ULL_EVENT(ocfs2_filecheck_validate_inode_block);
1540 DEFINE_OCFS2_ULL_EVENT(ocfs2_filecheck_repair_inode_block);
1542 TRACE_EVENT(ocfs2_inode_is_valid_to_delete,
1543 TP_PROTO(void *task, void *dc_task, unsigned long long ino,
1544 unsigned int flags),
1545 TP_ARGS(task, dc_task, ino, flags),
1547 __field(void *, task)
1548 __field(void *, dc_task)
1549 __field(unsigned long long, ino)
1550 __field(unsigned int, flags)
1553 __entry->task = task;
1554 __entry->dc_task = dc_task;
1556 __entry->flags = flags;
1558 TP_printk("%p %p %llu %u", __entry->task, __entry->dc_task,
1559 __entry->ino, __entry->flags)
1562 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_query_inode_wipe_begin);
1564 DEFINE_OCFS2_UINT_EVENT(ocfs2_query_inode_wipe_succ);
1566 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_query_inode_wipe_end);
1568 DEFINE_OCFS2_ULL_INT_EVENT(ocfs2_cleanup_delete_inode);
1570 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_delete_inode);
1572 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_clear_inode);
1574 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_drop_inode);
1576 TRACE_EVENT(ocfs2_inode_revalidate,
1577 TP_PROTO(void *inode, unsigned long long ino,
1578 unsigned int flags),
1579 TP_ARGS(inode, ino, flags),
1581 __field(void *, inode)
1582 __field(unsigned long long, ino)
1583 __field(unsigned int, flags)
1586 __entry->inode = inode;
1588 __entry->flags = flags;
1590 TP_printk("%p %llu %u", __entry->inode, __entry->ino, __entry->flags)
1593 DEFINE_OCFS2_ULL_EVENT(ocfs2_mark_inode_dirty);
1595 /* End of trace events for fs/ocfs2/inode.c. */
1597 /* Trace events for fs/ocfs2/extent_map.c. */
1599 TRACE_EVENT(ocfs2_read_virt_blocks,
1600 TP_PROTO(void *inode, unsigned long long vblock, int nr,
1601 void *bhs, unsigned int flags, void *validate),
1602 TP_ARGS(inode, vblock, nr, bhs, flags, validate),
1604 __field(void *, inode)
1605 __field(unsigned long long, vblock)
1607 __field(void *, bhs)
1608 __field(unsigned int, flags)
1609 __field(void *, validate)
1612 __entry->inode = inode;
1613 __entry->vblock = vblock;
1616 __entry->flags = flags;
1617 __entry->validate = validate;
1619 TP_printk("%p %llu %d %p %x %p", __entry->inode, __entry->vblock,
1620 __entry->nr, __entry->bhs, __entry->flags, __entry->validate)
1623 /* End of trace events for fs/ocfs2/extent_map.c. */
1625 /* Trace events for fs/ocfs2/slot_map.c. */
1627 DEFINE_OCFS2_UINT_EVENT(ocfs2_refresh_slot_info);
1629 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_map_slot_buffers);
1631 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_map_slot_buffers_block);
1633 DEFINE_OCFS2_INT_EVENT(ocfs2_find_slot);
1635 /* End of trace events for fs/ocfs2/slot_map.c. */
1637 /* Trace events for fs/ocfs2/heartbeat.c. */
1639 DEFINE_OCFS2_INT_EVENT(ocfs2_do_node_down);
1641 /* End of trace events for fs/ocfs2/heartbeat.c. */
1643 /* Trace events for fs/ocfs2/super.c. */
1645 TRACE_EVENT(ocfs2_remount,
1646 TP_PROTO(unsigned long s_flags, unsigned long osb_flags, int flags),
1647 TP_ARGS(s_flags, osb_flags, flags),
1649 __field(unsigned long, s_flags)
1650 __field(unsigned long, osb_flags)
1654 __entry->s_flags = s_flags;
1655 __entry->osb_flags = osb_flags;
1656 __entry->flags = flags;
1658 TP_printk("%lu %lu %d", __entry->s_flags,
1659 __entry->osb_flags, __entry->flags)
1662 TRACE_EVENT(ocfs2_fill_super,
1663 TP_PROTO(void *sb, void *data, int silent),
1664 TP_ARGS(sb, data, silent),
1667 __field(void *, data)
1668 __field(int, silent)
1672 __entry->data = data;
1673 __entry->silent = silent;
1675 TP_printk("%p %p %d", __entry->sb,
1676 __entry->data, __entry->silent)
1679 TRACE_EVENT(ocfs2_parse_options,
1680 TP_PROTO(int is_remount, char *options),
1681 TP_ARGS(is_remount, options),
1683 __field(int, is_remount)
1684 __string(options, options)
1687 __entry->is_remount = is_remount;
1688 __assign_str(options, options);
1690 TP_printk("%d %s", __entry->is_remount, __get_str(options))
1693 DEFINE_OCFS2_POINTER_EVENT(ocfs2_put_super);
1695 TRACE_EVENT(ocfs2_statfs,
1696 TP_PROTO(void *sb, void *buf),
1700 __field(void *, buf)
1706 TP_printk("%p %p", __entry->sb, __entry->buf)
1709 DEFINE_OCFS2_POINTER_EVENT(ocfs2_dismount_volume);
1711 TRACE_EVENT(ocfs2_initialize_super,
1712 TP_PROTO(char *label, char *uuid_str, unsigned long long root_dir,
1713 unsigned long long system_dir, int cluster_bits),
1714 TP_ARGS(label, uuid_str, root_dir, system_dir, cluster_bits),
1716 __string(label, label)
1717 __string(uuid_str, uuid_str)
1718 __field(unsigned long long, root_dir)
1719 __field(unsigned long long, system_dir)
1720 __field(int, cluster_bits)
1723 __assign_str(label, label);
1724 __assign_str(uuid_str, uuid_str);
1725 __entry->root_dir = root_dir;
1726 __entry->system_dir = system_dir;
1727 __entry->cluster_bits = cluster_bits;
1729 TP_printk("%s %s %llu %llu %d", __get_str(label), __get_str(uuid_str),
1730 __entry->root_dir, __entry->system_dir, __entry->cluster_bits)
1733 /* End of trace events for fs/ocfs2/super.c. */
1735 /* Trace events for fs/ocfs2/xattr.c. */
1737 DEFINE_OCFS2_ULL_EVENT(ocfs2_validate_xattr_block);
1739 DEFINE_OCFS2_UINT_EVENT(ocfs2_xattr_extend_allocation);
1741 TRACE_EVENT(ocfs2_init_xattr_set_ctxt,
1742 TP_PROTO(const char *name, int meta, int clusters, int credits),
1743 TP_ARGS(name, meta, clusters, credits),
1745 __string(name, name)
1747 __field(int, clusters)
1748 __field(int, credits)
1751 __assign_str(name, name);
1752 __entry->meta = meta;
1753 __entry->clusters = clusters;
1754 __entry->credits = credits;
1756 TP_printk("%s %d %d %d", __get_str(name), __entry->meta,
1757 __entry->clusters, __entry->credits)
1760 DECLARE_EVENT_CLASS(ocfs2__xattr_find,
1761 TP_PROTO(unsigned long long ino, const char *name, int name_index,
1762 unsigned int hash, unsigned long long location,
1764 TP_ARGS(ino, name, name_index, hash, location, xe_index),
1766 __field(unsigned long long, ino)
1767 __string(name, name)
1768 __field(int, name_index)
1769 __field(unsigned int, hash)
1770 __field(unsigned long long, location)
1771 __field(int, xe_index)
1775 __assign_str(name, name);
1776 __entry->name_index = name_index;
1777 __entry->hash = hash;
1778 __entry->location = location;
1779 __entry->xe_index = xe_index;
1781 TP_printk("%llu %s %d %u %llu %d", __entry->ino, __get_str(name),
1782 __entry->name_index, __entry->hash, __entry->location,
1786 #define DEFINE_OCFS2_XATTR_FIND_EVENT(name) \
1787 DEFINE_EVENT(ocfs2__xattr_find, name, \
1788 TP_PROTO(unsigned long long ino, const char *name, int name_index, \
1789 unsigned int hash, unsigned long long bucket, \
1791 TP_ARGS(ino, name, name_index, hash, bucket, xe_index))
1793 DEFINE_OCFS2_XATTR_FIND_EVENT(ocfs2_xattr_bucket_find);
1795 DEFINE_OCFS2_XATTR_FIND_EVENT(ocfs2_xattr_index_block_find);
1797 DEFINE_OCFS2_XATTR_FIND_EVENT(ocfs2_xattr_index_block_find_rec);
1799 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_iterate_xattr_buckets);
1801 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_iterate_xattr_bucket);
1803 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_cp_xattr_block_to_bucket_begin);
1805 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_cp_xattr_block_to_bucket_end);
1807 DEFINE_OCFS2_ULL_EVENT(ocfs2_xattr_create_index_block_begin);
1809 DEFINE_OCFS2_ULL_EVENT(ocfs2_xattr_create_index_block);
1811 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_defrag_xattr_bucket);
1813 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_mv_xattr_bucket_cross_cluster);
1815 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_divide_xattr_bucket_begin);
1817 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_divide_xattr_bucket_move);
1819 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_cp_xattr_bucket);
1821 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_mv_xattr_buckets);
1823 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_adjust_xattr_cross_cluster);
1825 DEFINE_OCFS2_ULL_ULL_UINT_UINT_EVENT(ocfs2_add_new_xattr_cluster_begin);
1827 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_add_new_xattr_cluster);
1829 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_add_new_xattr_cluster_insert);
1831 DEFINE_OCFS2_ULL_ULL_UINT_UINT_EVENT(ocfs2_extend_xattr_bucket);
1833 DEFINE_OCFS2_ULL_EVENT(ocfs2_add_new_xattr_bucket);
1835 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_xattr_bucket_value_truncate);
1837 DEFINE_OCFS2_ULL_ULL_UINT_UINT_EVENT(ocfs2_rm_xattr_cluster);
1839 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_reflink_xattr_header);
1841 DEFINE_OCFS2_ULL_INT_EVENT(ocfs2_create_empty_xattr_block);
1843 DEFINE_OCFS2_STRING_EVENT(ocfs2_xattr_set_entry_bucket);
1845 DEFINE_OCFS2_STRING_EVENT(ocfs2_xattr_set_entry_index_block);
1847 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_xattr_bucket_value_refcount);
1849 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_reflink_xattr_buckets);
1851 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_reflink_xattr_rec);
1853 /* End of trace events for fs/ocfs2/xattr.c. */
1855 /* Trace events for fs/ocfs2/reservations.c. */
1857 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_resv_insert);
1859 DEFINE_OCFS2_ULL_UINT_UINT_UINT_EVENT(ocfs2_resmap_find_free_bits_begin);
1861 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_resmap_find_free_bits_end);
1863 TRACE_EVENT(ocfs2_resv_find_window_begin,
1864 TP_PROTO(unsigned int r_start, unsigned int r_end, unsigned int goal,
1865 unsigned int wanted, int empty_root),
1866 TP_ARGS(r_start, r_end, goal, wanted, empty_root),
1868 __field(unsigned int, r_start)
1869 __field(unsigned int, r_end)
1870 __field(unsigned int, goal)
1871 __field(unsigned int, wanted)
1872 __field(int, empty_root)
1875 __entry->r_start = r_start;
1876 __entry->r_end = r_end;
1877 __entry->goal = goal;
1878 __entry->wanted = wanted;
1879 __entry->empty_root = empty_root;
1881 TP_printk("%u %u %u %u %d", __entry->r_start, __entry->r_end,
1882 __entry->goal, __entry->wanted, __entry->empty_root)
1885 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_resv_find_window_prev);
1887 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_resv_find_window_next);
1889 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_cannibalize_resv_begin);
1891 TRACE_EVENT(ocfs2_cannibalize_resv_end,
1892 TP_PROTO(unsigned int start, unsigned int end, unsigned int len,
1893 unsigned int last_start, unsigned int last_len),
1894 TP_ARGS(start, end, len, last_start, last_len),
1896 __field(unsigned int, start)
1897 __field(unsigned int, end)
1898 __field(unsigned int, len)
1899 __field(unsigned int, last_start)
1900 __field(unsigned int, last_len)
1903 __entry->start = start;
1906 __entry->last_start = last_start;
1907 __entry->last_len = last_len;
1909 TP_printk("%u %u %u %u %u", __entry->start, __entry->end,
1910 __entry->len, __entry->last_start, __entry->last_len)
1913 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_resmap_resv_bits);
1915 TRACE_EVENT(ocfs2_resmap_claimed_bits_begin,
1916 TP_PROTO(unsigned int cstart, unsigned int cend, unsigned int clen,
1917 unsigned int r_start, unsigned int r_end, unsigned int r_len,
1918 unsigned int last_start, unsigned int last_len),
1919 TP_ARGS(cstart, cend, clen, r_start, r_end,
1920 r_len, last_start, last_len),
1922 __field(unsigned int, cstart)
1923 __field(unsigned int, cend)
1924 __field(unsigned int, clen)
1925 __field(unsigned int, r_start)
1926 __field(unsigned int, r_end)
1927 __field(unsigned int, r_len)
1928 __field(unsigned int, last_start)
1929 __field(unsigned int, last_len)
1932 __entry->cstart = cstart;
1933 __entry->cend = cend;
1934 __entry->clen = clen;
1935 __entry->r_start = r_start;
1936 __entry->r_end = r_end;
1937 __entry->r_len = r_len;
1938 __entry->last_start = last_start;
1939 __entry->last_len = last_len;
1941 TP_printk("%u %u %u %u %u %u %u %u",
1942 __entry->cstart, __entry->cend, __entry->clen,
1943 __entry->r_start, __entry->r_end, __entry->r_len,
1944 __entry->last_start, __entry->last_len)
1947 TRACE_EVENT(ocfs2_resmap_claimed_bits_end,
1948 TP_PROTO(unsigned int start, unsigned int end, unsigned int len,
1949 unsigned int last_start, unsigned int last_len),
1950 TP_ARGS(start, end, len, last_start, last_len),
1952 __field(unsigned int, start)
1953 __field(unsigned int, end)
1954 __field(unsigned int, len)
1955 __field(unsigned int, last_start)
1956 __field(unsigned int, last_len)
1959 __entry->start = start;
1962 __entry->last_start = last_start;
1963 __entry->last_len = last_len;
1965 TP_printk("%u %u %u %u %u", __entry->start, __entry->end,
1966 __entry->len, __entry->last_start, __entry->last_len)
1969 /* End of trace events for fs/ocfs2/reservations.c. */
1971 /* Trace events for fs/ocfs2/quota_local.c. */
1973 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_recover_local_quota_file);
1975 DEFINE_OCFS2_INT_EVENT(ocfs2_finish_quota_recovery);
1977 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(olq_set_dquot);
1979 /* End of trace events for fs/ocfs2/quota_local.c. */
1981 /* Trace events for fs/ocfs2/quota_global.c. */
1983 DEFINE_OCFS2_ULL_EVENT(ocfs2_validate_quota_block);
1985 TRACE_EVENT(ocfs2_sync_dquot,
1986 TP_PROTO(unsigned int dq_id, long long dqb_curspace,
1987 long long spacechange, long long curinodes,
1988 long long inodechange),
1989 TP_ARGS(dq_id, dqb_curspace, spacechange, curinodes, inodechange),
1991 __field(unsigned int, dq_id)
1992 __field(long long, dqb_curspace)
1993 __field(long long, spacechange)
1994 __field(long long, curinodes)
1995 __field(long long, inodechange)
1998 __entry->dq_id = dq_id;
1999 __entry->dqb_curspace = dqb_curspace;
2000 __entry->spacechange = spacechange;
2001 __entry->curinodes = curinodes;
2002 __entry->inodechange = inodechange;
2004 TP_printk("%u %lld %lld %lld %lld", __entry->dq_id,
2005 __entry->dqb_curspace, __entry->spacechange,
2006 __entry->curinodes, __entry->inodechange)
2009 TRACE_EVENT(ocfs2_sync_dquot_helper,
2010 TP_PROTO(unsigned int dq_id, unsigned int dq_type, unsigned long type,
2012 TP_ARGS(dq_id, dq_type, type, s_id),
2015 __field(unsigned int, dq_id)
2016 __field(unsigned int, dq_type)
2017 __field(unsigned long, type)
2018 __string(s_id, s_id)
2021 __entry->dq_id = dq_id;
2022 __entry->dq_type = dq_type;
2023 __entry->type = type;
2024 __assign_str(s_id, s_id);
2026 TP_printk("%u %u %lu %s", __entry->dq_id, __entry->dq_type,
2027 __entry->type, __get_str(s_id))
2030 DEFINE_OCFS2_UINT_INT_EVENT(ocfs2_write_dquot);
2032 DEFINE_OCFS2_UINT_INT_EVENT(ocfs2_release_dquot);
2034 DEFINE_OCFS2_UINT_INT_EVENT(ocfs2_acquire_dquot);
2036 DEFINE_OCFS2_UINT_INT_EVENT(ocfs2_get_next_id);
2038 DEFINE_OCFS2_UINT_INT_EVENT(ocfs2_mark_dquot_dirty);
2040 /* End of trace events for fs/ocfs2/quota_global.c. */
2042 /* Trace events for fs/ocfs2/dir.c. */
2043 DEFINE_OCFS2_INT_EVENT(ocfs2_search_dirblock);
2045 DEFINE_OCFS2_ULL_EVENT(ocfs2_validate_dir_block);
2047 DEFINE_OCFS2_POINTER_EVENT(ocfs2_find_entry_el);
2049 TRACE_EVENT(ocfs2_dx_dir_search,
2050 TP_PROTO(unsigned long long ino, int namelen, const char *name,
2051 unsigned int major_hash, unsigned int minor_hash,
2052 unsigned long long blkno),
2053 TP_ARGS(ino, namelen, name, major_hash, minor_hash, blkno),
2055 __field(unsigned long long, ino)
2056 __field(int, namelen)
2057 __string(name, name)
2058 __field(unsigned int, major_hash)
2059 __field(unsigned int,minor_hash)
2060 __field(unsigned long long, blkno)
2064 __entry->namelen = namelen;
2065 __assign_str(name, name);
2066 __entry->major_hash = major_hash;
2067 __entry->minor_hash = minor_hash;
2068 __entry->blkno = blkno;
2070 TP_printk("%llu %.*s %u %u %llu", __entry->ino,
2071 __entry->namelen, __get_str(name),
2072 __entry->major_hash, __entry->minor_hash, __entry->blkno)
2075 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_dx_dir_search_leaf_info);
2077 DEFINE_OCFS2_ULL_INT_EVENT(ocfs2_delete_entry_dx);
2079 DEFINE_OCFS2_ULL_EVENT(ocfs2_readdir);
2081 TRACE_EVENT(ocfs2_find_files_on_disk,
2082 TP_PROTO(int namelen, const char *name, void *blkno,
2083 unsigned long long dir),
2084 TP_ARGS(namelen, name, blkno, dir),
2086 __field(int, namelen)
2087 __string(name, name)
2088 __field(void *, blkno)
2089 __field(unsigned long long, dir)
2092 __entry->namelen = namelen;
2093 __assign_str(name, name);
2094 __entry->blkno = blkno;
2097 TP_printk("%.*s %p %llu", __entry->namelen, __get_str(name),
2098 __entry->blkno, __entry->dir)
2101 TRACE_EVENT(ocfs2_check_dir_for_entry,
2102 TP_PROTO(unsigned long long dir, int namelen, const char *name),
2103 TP_ARGS(dir, namelen, name),
2105 __field(unsigned long long, dir)
2106 __field(int, namelen)
2107 __string(name, name)
2111 __entry->namelen = namelen;
2112 __assign_str(name, name);
2114 TP_printk("%llu %.*s", __entry->dir,
2115 __entry->namelen, __get_str(name))
2118 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_dx_dir_attach_index);
2120 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_dx_dir_format_cluster);
2122 TRACE_EVENT(ocfs2_dx_dir_index_root_block,
2123 TP_PROTO(unsigned long long dir,
2124 unsigned int major_hash, unsigned int minor_hash,
2125 int namelen, const char *name, unsigned int num_used),
2126 TP_ARGS(dir, major_hash, minor_hash, namelen, name, num_used),
2128 __field(unsigned long long, dir)
2129 __field(unsigned int, major_hash)
2130 __field(unsigned int, minor_hash)
2131 __field(int, namelen)
2132 __string(name, name)
2133 __field(unsigned int, num_used)
2137 __entry->major_hash = major_hash;
2138 __entry->minor_hash = minor_hash;
2139 __entry->namelen = namelen;
2140 __assign_str(name, name);
2141 __entry->num_used = num_used;
2143 TP_printk("%llu %x %x %.*s %u", __entry->dir,
2144 __entry->major_hash, __entry->minor_hash,
2145 __entry->namelen, __get_str(name), __entry->num_used)
2148 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_extend_dir);
2150 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_dx_dir_rebalance);
2152 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_dx_dir_rebalance_split);
2154 DEFINE_OCFS2_ULL_INT_EVENT(ocfs2_prepare_dir_for_insert);
2156 /* End of trace events for fs/ocfs2/dir.c. */
2158 /* Trace events for fs/ocfs2/namei.c. */
2160 DECLARE_EVENT_CLASS(ocfs2__dentry_ops,
2161 TP_PROTO(void *dir, void *dentry, int name_len, const char *name,
2162 unsigned long long dir_blkno, unsigned long long extra),
2163 TP_ARGS(dir, dentry, name_len, name, dir_blkno, extra),
2165 __field(void *, dir)
2166 __field(void *, dentry)
2167 __field(int, name_len)
2168 __string(name, name)
2169 __field(unsigned long long, dir_blkno)
2170 __field(unsigned long long, extra)
2174 __entry->dentry = dentry;
2175 __entry->name_len = name_len;
2176 __assign_str(name, name);
2177 __entry->dir_blkno = dir_blkno;
2178 __entry->extra = extra;
2180 TP_printk("%p %p %.*s %llu %llu", __entry->dir, __entry->dentry,
2181 __entry->name_len, __get_str(name),
2182 __entry->dir_blkno, __entry->extra)
2185 #define DEFINE_OCFS2_DENTRY_OPS(name) \
2186 DEFINE_EVENT(ocfs2__dentry_ops, name, \
2187 TP_PROTO(void *dir, void *dentry, int name_len, const char *name, \
2188 unsigned long long dir_blkno, unsigned long long extra), \
2189 TP_ARGS(dir, dentry, name_len, name, dir_blkno, extra))
2191 DEFINE_OCFS2_DENTRY_OPS(ocfs2_lookup);
2193 DEFINE_OCFS2_DENTRY_OPS(ocfs2_mkdir);
2195 DEFINE_OCFS2_DENTRY_OPS(ocfs2_create);
2197 DEFINE_OCFS2_DENTRY_OPS(ocfs2_unlink);
2199 DEFINE_OCFS2_DENTRY_OPS(ocfs2_symlink_create);
2201 DEFINE_OCFS2_DENTRY_OPS(ocfs2_mv_orphaned_inode_to_new);
2203 DEFINE_OCFS2_POINTER_EVENT(ocfs2_lookup_ret);
2205 TRACE_EVENT(ocfs2_mknod,
2206 TP_PROTO(void *dir, void *dentry, int name_len, const char *name,
2207 unsigned long long dir_blkno, unsigned long dev, int mode),
2208 TP_ARGS(dir, dentry, name_len, name, dir_blkno, dev, mode),
2210 __field(void *, dir)
2211 __field(void *, dentry)
2212 __field(int, name_len)
2213 __string(name, name)
2214 __field(unsigned long long, dir_blkno)
2215 __field(unsigned long, dev)
2220 __entry->dentry = dentry;
2221 __entry->name_len = name_len;
2222 __assign_str(name, name);
2223 __entry->dir_blkno = dir_blkno;
2225 __entry->mode = mode;
2227 TP_printk("%p %p %.*s %llu %lu %d", __entry->dir, __entry->dentry,
2228 __entry->name_len, __get_str(name),
2229 __entry->dir_blkno, __entry->dev, __entry->mode)
2232 TRACE_EVENT(ocfs2_link,
2233 TP_PROTO(unsigned long long ino, int old_len, const char *old_name,
2234 int name_len, const char *name),
2235 TP_ARGS(ino, old_len, old_name, name_len, name),
2237 __field(unsigned long long, ino)
2238 __field(int, old_len)
2239 __string(old_name, old_name)
2240 __field(int, name_len)
2241 __string(name, name)
2245 __entry->old_len = old_len;
2246 __assign_str(old_name, old_name);
2247 __entry->name_len = name_len;
2248 __assign_str(name, name);
2250 TP_printk("%llu %.*s %.*s", __entry->ino,
2251 __entry->old_len, __get_str(old_name),
2252 __entry->name_len, __get_str(name))
2255 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_unlink_noent);
2257 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_double_lock);
2259 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_double_lock_end);
2261 TRACE_EVENT(ocfs2_rename,
2262 TP_PROTO(void *old_dir, void *old_dentry,
2263 void *new_dir, void *new_dentry,
2264 int old_len, const char *old_name,
2265 int new_len, const char *new_name),
2266 TP_ARGS(old_dir, old_dentry, new_dir, new_dentry,
2267 old_len, old_name, new_len, new_name),
2269 __field(void *, old_dir)
2270 __field(void *, old_dentry)
2271 __field(void *, new_dir)
2272 __field(void *, new_dentry)
2273 __field(int, old_len)
2274 __string(old_name, old_name)
2275 __field(int, new_len)
2276 __string(new_name, new_name)
2279 __entry->old_dir = old_dir;
2280 __entry->old_dentry = old_dentry;
2281 __entry->new_dir = new_dir;
2282 __entry->new_dentry = new_dentry;
2283 __entry->old_len = old_len;
2284 __assign_str(old_name, old_name);
2285 __entry->new_len = new_len;
2286 __assign_str(new_name, new_name);
2288 TP_printk("%p %p %p %p %.*s %.*s",
2289 __entry->old_dir, __entry->old_dentry,
2290 __entry->new_dir, __entry->new_dentry,
2291 __entry->old_len, __get_str(old_name),
2292 __entry->new_len, __get_str(new_name))
2295 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_rename_not_permitted);
2297 TRACE_EVENT(ocfs2_rename_target_exists,
2298 TP_PROTO(int new_len, const char *new_name),
2299 TP_ARGS(new_len, new_name),
2301 __field(int, new_len)
2302 __string(new_name, new_name)
2305 __entry->new_len = new_len;
2306 __assign_str(new_name, new_name);
2308 TP_printk("%.*s", __entry->new_len, __get_str(new_name))
2311 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_rename_disagree);
2313 TRACE_EVENT(ocfs2_rename_over_existing,
2314 TP_PROTO(unsigned long long new_blkno, void *new_bh,
2315 unsigned long long newdi_blkno),
2316 TP_ARGS(new_blkno, new_bh, newdi_blkno),
2318 __field(unsigned long long, new_blkno)
2319 __field(void *, new_bh)
2320 __field(unsigned long long, newdi_blkno)
2323 __entry->new_blkno = new_blkno;
2324 __entry->new_bh = new_bh;
2325 __entry->newdi_blkno = newdi_blkno;
2327 TP_printk("%llu %p %llu", __entry->new_blkno, __entry->new_bh,
2328 __entry->newdi_blkno)
2331 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_create_symlink_data);
2333 TRACE_EVENT(ocfs2_symlink_begin,
2334 TP_PROTO(void *dir, void *dentry, const char *symname,
2335 int len, const char *name),
2336 TP_ARGS(dir, dentry, symname, len, name),
2338 __field(void *, dir)
2339 __field(void *, dentry)
2340 __field(const char *, symname)
2342 __string(name, name)
2346 __entry->dentry = dentry;
2347 __entry->symname = symname;
2349 __assign_str(name, name);
2351 TP_printk("%p %p %s %.*s", __entry->dir, __entry->dentry,
2352 __entry->symname, __entry->len, __get_str(name))
2355 TRACE_EVENT(ocfs2_blkno_stringify,
2356 TP_PROTO(unsigned long long blkno, const char *name, int namelen),
2357 TP_ARGS(blkno, name, namelen),
2359 __field(unsigned long long, blkno)
2360 __string(name, name)
2361 __field(int, namelen)
2364 __entry->blkno = blkno;
2365 __assign_str(name, name);
2366 __entry->namelen = namelen;
2368 TP_printk("%llu %s %d", __entry->blkno, __get_str(name),
2372 DEFINE_OCFS2_ULL_EVENT(ocfs2_orphan_add_begin);
2374 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_orphan_add_end);
2376 TRACE_EVENT(ocfs2_orphan_del,
2377 TP_PROTO(unsigned long long dir, const char *name, int namelen),
2378 TP_ARGS(dir, name, namelen),
2380 __field(unsigned long long, dir)
2381 __string(name, name)
2382 __field(int, namelen)
2386 __assign_str(name, name);
2387 __entry->namelen = namelen;
2389 TP_printk("%llu %s %d", __entry->dir, __get_str(name),
2393 /* End of trace events for fs/ocfs2/namei.c. */
2395 /* Trace events for fs/ocfs2/dcache.c. */
2397 TRACE_EVENT(ocfs2_dentry_revalidate,
2398 TP_PROTO(void *dentry, int len, const char *name),
2399 TP_ARGS(dentry, len, name),
2401 __field(void *, dentry)
2403 __string(name, name)
2406 __entry->dentry = dentry;
2408 __assign_str(name, name);
2410 TP_printk("%p %.*s", __entry->dentry, __entry->len, __get_str(name))
2413 TRACE_EVENT(ocfs2_dentry_revalidate_negative,
2414 TP_PROTO(int len, const char *name, unsigned long pgen,
2416 TP_ARGS(len, name, pgen, gen),
2419 __string(name, name)
2420 __field(unsigned long, pgen)
2421 __field(unsigned long, gen)
2425 __assign_str(name, name);
2426 __entry->pgen = pgen;
2429 TP_printk("%.*s %lu %lu", __entry->len, __get_str(name),
2430 __entry->pgen, __entry->gen)
2433 DEFINE_OCFS2_ULL_EVENT(ocfs2_dentry_revalidate_delete);
2435 DEFINE_OCFS2_ULL_INT_EVENT(ocfs2_dentry_revalidate_orphaned);
2437 DEFINE_OCFS2_ULL_EVENT(ocfs2_dentry_revalidate_nofsdata);
2439 DEFINE_OCFS2_INT_EVENT(ocfs2_dentry_revalidate_ret);
2441 TRACE_EVENT(ocfs2_find_local_alias,
2442 TP_PROTO(int len, const char *name),
2446 __string(name, name)
2450 __assign_str(name, name);
2452 TP_printk("%.*s", __entry->len, __get_str(name))
2455 TRACE_EVENT(ocfs2_dentry_attach_lock,
2456 TP_PROTO(int len, const char *name,
2457 unsigned long long parent, void *fsdata),
2458 TP_ARGS(len, name, parent, fsdata),
2461 __string(name, name)
2462 __field(unsigned long long, parent)
2463 __field(void *, fsdata)
2467 __assign_str(name, name);
2468 __entry->parent = parent;
2469 __entry->fsdata = fsdata;
2471 TP_printk("%.*s %llu %p", __entry->len, __get_str(name),
2472 __entry->parent, __entry->fsdata)
2475 TRACE_EVENT(ocfs2_dentry_attach_lock_found,
2476 TP_PROTO(const char *name, unsigned long long parent,
2477 unsigned long long ino),
2478 TP_ARGS(name, parent, ino),
2480 __string(name, name)
2481 __field(unsigned long long, parent)
2482 __field(unsigned long long, ino)
2485 __assign_str(name, name);
2486 __entry->parent = parent;
2489 TP_printk("%s %llu %llu", __get_str(name), __entry->parent, __entry->ino)
2491 /* End of trace events for fs/ocfs2/dcache.c. */
2493 /* Trace events for fs/ocfs2/export.c. */
2495 TRACE_EVENT(ocfs2_get_dentry_begin,
2496 TP_PROTO(void *sb, void *handle, unsigned long long blkno),
2497 TP_ARGS(sb, handle, blkno),
2500 __field(void *, handle)
2501 __field(unsigned long long, blkno)
2505 __entry->handle = handle;
2506 __entry->blkno = blkno;
2508 TP_printk("%p %p %llu", __entry->sb, __entry->handle, __entry->blkno)
2511 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_get_dentry_test_bit);
2513 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_get_dentry_stale);
2515 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_get_dentry_generation);
2517 DEFINE_OCFS2_POINTER_EVENT(ocfs2_get_dentry_end);
2519 TRACE_EVENT(ocfs2_get_parent,
2520 TP_PROTO(void *child, int len, const char *name,
2521 unsigned long long ino),
2522 TP_ARGS(child, len, name, ino),
2524 __field(void *, child)
2526 __string(name, name)
2527 __field(unsigned long long, ino)
2530 __entry->child = child;
2532 __assign_str(name, name);
2535 TP_printk("%p %.*s %llu", __entry->child, __entry->len,
2536 __get_str(name), __entry->ino)
2539 DEFINE_OCFS2_POINTER_EVENT(ocfs2_get_parent_end);
2541 TRACE_EVENT(ocfs2_encode_fh_begin,
2542 TP_PROTO(void *dentry, int name_len, const char *name,
2543 void *fh, int len, int connectable),
2544 TP_ARGS(dentry, name_len, name, fh, len, connectable),
2546 __field(void *, dentry)
2547 __field(int, name_len)
2548 __string(name, name)
2551 __field(int, connectable)
2554 __entry->dentry = dentry;
2555 __entry->name_len = name_len;
2556 __assign_str(name, name);
2559 __entry->connectable = connectable;
2561 TP_printk("%p %.*s %p %d %d", __entry->dentry, __entry->name_len,
2562 __get_str(name), __entry->fh, __entry->len,
2563 __entry->connectable)
2566 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_encode_fh_self);
2568 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_encode_fh_parent);
2570 DEFINE_OCFS2_INT_EVENT(ocfs2_encode_fh_type);
2572 /* End of trace events for fs/ocfs2/export.c. */
2574 /* Trace events for fs/ocfs2/journal.c. */
2576 DEFINE_OCFS2_UINT_EVENT(ocfs2_commit_cache_begin);
2578 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_commit_cache_end);
2580 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_extend_trans);
2582 DEFINE_OCFS2_INT_EVENT(ocfs2_extend_trans_restart);
2584 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_allocate_extend_trans);
2586 DEFINE_OCFS2_ULL_ULL_UINT_UINT_EVENT(ocfs2_journal_access);
2588 DEFINE_OCFS2_ULL_EVENT(ocfs2_journal_dirty);
2590 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_journal_init);
2592 DEFINE_OCFS2_UINT_EVENT(ocfs2_journal_init_maxlen);
2594 DEFINE_OCFS2_INT_EVENT(ocfs2_journal_shutdown);
2596 DEFINE_OCFS2_POINTER_EVENT(ocfs2_journal_shutdown_wait);
2598 DEFINE_OCFS2_ULL_EVENT(ocfs2_complete_recovery);
2600 DEFINE_OCFS2_INT_EVENT(ocfs2_complete_recovery_end);
2602 TRACE_EVENT(ocfs2_complete_recovery_slot,
2603 TP_PROTO(int slot, unsigned long long la_ino,
2604 unsigned long long tl_ino, void *qrec),
2605 TP_ARGS(slot, la_ino, tl_ino, qrec),
2608 __field(unsigned long long, la_ino)
2609 __field(unsigned long long, tl_ino)
2610 __field(void *, qrec)
2613 __entry->slot = slot;
2614 __entry->la_ino = la_ino;
2615 __entry->tl_ino = tl_ino;
2616 __entry->qrec = qrec;
2618 TP_printk("%d %llu %llu %p", __entry->slot, __entry->la_ino,
2619 __entry->tl_ino, __entry->qrec)
2622 DEFINE_OCFS2_INT_INT_EVENT(ocfs2_recovery_thread_node);
2624 DEFINE_OCFS2_INT_EVENT(ocfs2_recovery_thread_end);
2626 TRACE_EVENT(ocfs2_recovery_thread,
2627 TP_PROTO(int node_num, int osb_node_num, int disable,
2628 void *recovery_thread, int map_set),
2629 TP_ARGS(node_num, osb_node_num, disable, recovery_thread, map_set),
2631 __field(int, node_num)
2632 __field(int, osb_node_num)
2633 __field(int,disable)
2634 __field(void *, recovery_thread)
2635 __field(int,map_set)
2638 __entry->node_num = node_num;
2639 __entry->osb_node_num = osb_node_num;
2640 __entry->disable = disable;
2641 __entry->recovery_thread = recovery_thread;
2642 __entry->map_set = map_set;
2644 TP_printk("%d %d %d %p %d", __entry->node_num,
2645 __entry->osb_node_num, __entry->disable,
2646 __entry->recovery_thread, __entry->map_set)
2649 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_replay_journal_recovered);
2651 DEFINE_OCFS2_INT_EVENT(ocfs2_replay_journal_lock_err);
2653 DEFINE_OCFS2_INT_EVENT(ocfs2_replay_journal_skip);
2655 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_recover_node);
2657 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_recover_node_skip);
2659 DEFINE_OCFS2_UINT_UINT_EVENT(ocfs2_mark_dead_nodes);
2661 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_queue_orphan_scan_begin);
2663 DEFINE_OCFS2_UINT_UINT_UINT_EVENT(ocfs2_queue_orphan_scan_end);
2665 DEFINE_OCFS2_ULL_EVENT(ocfs2_orphan_filldir);
2667 DEFINE_OCFS2_INT_EVENT(ocfs2_recover_orphans);
2669 DEFINE_OCFS2_ULL_EVENT(ocfs2_recover_orphans_iput);
2671 DEFINE_OCFS2_INT_EVENT(ocfs2_wait_on_mount);
2673 /* End of trace events for fs/ocfs2/journal.c. */
2675 /* Trace events for fs/ocfs2/buffer_head_io.c. */
2677 DEFINE_OCFS2_ULL_UINT_EVENT(ocfs2_read_blocks_sync);
2679 DEFINE_OCFS2_ULL_EVENT(ocfs2_read_blocks_sync_jbd);
2681 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_read_blocks_from_disk);
2683 DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(ocfs2_read_blocks_bh);
2685 DEFINE_OCFS2_ULL_INT_INT_INT_EVENT(ocfs2_read_blocks_end);
2687 TRACE_EVENT(ocfs2_write_block,
2688 TP_PROTO(unsigned long long block, void *ci),
2691 __field(unsigned long long, block)
2695 __entry->block = block;
2698 TP_printk("%llu %p", __entry->block, __entry->ci)
2701 TRACE_EVENT(ocfs2_read_blocks_begin,
2702 TP_PROTO(void *ci, unsigned long long block,
2703 unsigned int nr, int flags),
2704 TP_ARGS(ci, block, nr, flags),
2707 __field(unsigned long long, block)
2708 __field(unsigned int, nr)
2713 __entry->block = block;
2715 __entry->flags = flags;
2717 TP_printk("%p %llu %u %d", __entry->ci, __entry->block,
2718 __entry->nr, __entry->flags)
2721 /* End of trace events for fs/ocfs2/buffer_head_io.c. */
2723 /* Trace events for fs/ocfs2/uptodate.c. */
2725 DEFINE_OCFS2_ULL_EVENT(ocfs2_purge_copied_metadata_tree);
2727 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_metadata_cache_purge);
2729 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_buffer_cached_begin);
2731 TRACE_EVENT(ocfs2_buffer_cached_end,
2732 TP_PROTO(int index, void *item),
2733 TP_ARGS(index, item),
2736 __field(void *, item)
2739 __entry->index = index;
2740 __entry->item = item;
2742 TP_printk("%d %p", __entry->index, __entry->item)
2745 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_append_cache_array);
2747 DEFINE_OCFS2_ULL_ULL_UINT_EVENT(ocfs2_insert_cache_tree);
2749 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_expand_cache);
2751 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_set_buffer_uptodate);
2753 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_set_buffer_uptodate_begin);
2755 DEFINE_OCFS2_ULL_UINT_UINT_EVENT(ocfs2_remove_metadata_array);
2757 DEFINE_OCFS2_ULL_ULL_EVENT(ocfs2_remove_metadata_tree);
2759 DEFINE_OCFS2_ULL_ULL_UINT_UINT_EVENT(ocfs2_remove_block_from_cache);
2761 /* End of trace events for fs/ocfs2/uptodate.c. */
2762 #endif /* _TRACE_OCFS2_H */
2764 /* This part must be outside protection */
2765 #undef TRACE_INCLUDE_PATH
2766 #define TRACE_INCLUDE_PATH .
2767 #define TRACE_INCLUDE_FILE ocfs2_trace
2768 #include <trace/define_trace.h>