xref: /openbmc/linux/include/trace/events/btrfs.h (revision b38a6258)
11abe9b8aSliubo #undef TRACE_SYSTEM
21abe9b8aSliubo #define TRACE_SYSTEM btrfs
31abe9b8aSliubo 
41abe9b8aSliubo #if !defined(_TRACE_BTRFS_H) || defined(TRACE_HEADER_MULTI_READ)
51abe9b8aSliubo #define _TRACE_BTRFS_H
61abe9b8aSliubo 
71abe9b8aSliubo #include <linux/writeback.h>
81abe9b8aSliubo #include <linux/tracepoint.h>
9143bede5SJeff Mahoney #include <trace/events/gfpflags.h>
101abe9b8aSliubo 
111abe9b8aSliubo struct btrfs_root;
121abe9b8aSliubo struct btrfs_fs_info;
131abe9b8aSliubo struct btrfs_inode;
141abe9b8aSliubo struct extent_map;
151abe9b8aSliubo struct btrfs_ordered_extent;
161abe9b8aSliubo struct btrfs_delayed_ref_node;
171abe9b8aSliubo struct btrfs_delayed_tree_ref;
181abe9b8aSliubo struct btrfs_delayed_data_ref;
191abe9b8aSliubo struct btrfs_delayed_ref_head;
203f7de037SJosef Bacik struct btrfs_block_group_cache;
213f7de037SJosef Bacik struct btrfs_free_cluster;
221abe9b8aSliubo struct map_lookup;
231abe9b8aSliubo struct extent_buffer;
2452483bc2SQu Wenruo struct btrfs_work;
25c3a46891SQu Wenruo struct __btrfs_workqueue;
26d3982100SMark Fasheh struct btrfs_qgroup_operation;
271abe9b8aSliubo 
281abe9b8aSliubo #define show_ref_type(type)						\
291abe9b8aSliubo 	__print_symbolic(type,						\
301abe9b8aSliubo 		{ BTRFS_TREE_BLOCK_REF_KEY, 	"TREE_BLOCK_REF" },	\
311abe9b8aSliubo 		{ BTRFS_EXTENT_DATA_REF_KEY, 	"EXTENT_DATA_REF" },	\
321abe9b8aSliubo 		{ BTRFS_EXTENT_REF_V0_KEY, 	"EXTENT_REF_V0" },	\
331abe9b8aSliubo 		{ BTRFS_SHARED_BLOCK_REF_KEY, 	"SHARED_BLOCK_REF" },	\
341abe9b8aSliubo 		{ BTRFS_SHARED_DATA_REF_KEY, 	"SHARED_DATA_REF" })
351abe9b8aSliubo 
361abe9b8aSliubo #define __show_root_type(obj)						\
377f34b746Sliubo 	__print_symbolic_u64(obj,					\
381abe9b8aSliubo 		{ BTRFS_ROOT_TREE_OBJECTID, 	"ROOT_TREE"	},	\
391abe9b8aSliubo 		{ BTRFS_EXTENT_TREE_OBJECTID, 	"EXTENT_TREE"	},	\
401abe9b8aSliubo 		{ BTRFS_CHUNK_TREE_OBJECTID, 	"CHUNK_TREE"	},	\
411abe9b8aSliubo 		{ BTRFS_DEV_TREE_OBJECTID, 	"DEV_TREE"	},	\
421abe9b8aSliubo 		{ BTRFS_FS_TREE_OBJECTID, 	"FS_TREE"	},	\
431abe9b8aSliubo 		{ BTRFS_ROOT_TREE_DIR_OBJECTID, "ROOT_TREE_DIR"	},	\
441abe9b8aSliubo 		{ BTRFS_CSUM_TREE_OBJECTID, 	"CSUM_TREE"	},	\
451abe9b8aSliubo 		{ BTRFS_TREE_LOG_OBJECTID,	"TREE_LOG"	},	\
46e112e2b4SLiu Bo 		{ BTRFS_QUOTA_TREE_OBJECTID,	"QUOTA_TREE"	},	\
471abe9b8aSliubo 		{ BTRFS_TREE_RELOC_OBJECTID,	"TREE_RELOC"	},	\
4813fd8da9SDavid Sterba 		{ BTRFS_UUID_TREE_OBJECTID,	"UUID_RELOC"	},	\
491abe9b8aSliubo 		{ BTRFS_DATA_RELOC_TREE_OBJECTID, "DATA_RELOC_TREE" })
501abe9b8aSliubo 
511abe9b8aSliubo #define show_root_type(obj)						\
521abe9b8aSliubo 	obj, ((obj >= BTRFS_DATA_RELOC_TREE_OBJECTID) ||		\
53fb57dc81SLiu Bo 	      (obj >= BTRFS_ROOT_TREE_OBJECTID &&			\
54e112e2b4SLiu Bo 	       obj <= BTRFS_QUOTA_TREE_OBJECTID)) ? __show_root_type(obj) : "-"
551abe9b8aSliubo 
563f7de037SJosef Bacik #define BTRFS_GROUP_FLAGS	\
573f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_DATA,	"DATA"},	\
583f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_SYSTEM,	"SYSTEM"},	\
593f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_METADATA,	"METADATA"},	\
603f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_RAID0,	"RAID0"}, 	\
613f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_RAID1,	"RAID1"}, 	\
623f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_DUP,	"DUP"}, 	\
63e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID10,	"RAID10"}, 	\
64e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID5,	"RAID5"},	\
65e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID6,	"RAID6"}
663f7de037SJosef Bacik 
678c2a3ca2SJosef Bacik #define BTRFS_UUID_SIZE 16
688c2a3ca2SJosef Bacik 
691abe9b8aSliubo TRACE_EVENT(btrfs_transaction_commit,
701abe9b8aSliubo 
711abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root),
721abe9b8aSliubo 
731abe9b8aSliubo 	TP_ARGS(root),
741abe9b8aSliubo 
751abe9b8aSliubo 	TP_STRUCT__entry(
761abe9b8aSliubo 		__field(	u64,  generation		)
771abe9b8aSliubo 		__field(	u64,  root_objectid		)
781abe9b8aSliubo 	),
791abe9b8aSliubo 
801abe9b8aSliubo 	TP_fast_assign(
811abe9b8aSliubo 		__entry->generation	= root->fs_info->generation;
821abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
831abe9b8aSliubo 	),
841abe9b8aSliubo 
851abe9b8aSliubo 	TP_printk("root = %llu(%s), gen = %llu",
861abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
871abe9b8aSliubo 		  (unsigned long long)__entry->generation)
881abe9b8aSliubo );
891abe9b8aSliubo 
901abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__inode,
911abe9b8aSliubo 
921abe9b8aSliubo 	TP_PROTO(struct inode *inode),
931abe9b8aSliubo 
941abe9b8aSliubo 	TP_ARGS(inode),
951abe9b8aSliubo 
961abe9b8aSliubo 	TP_STRUCT__entry(
971abe9b8aSliubo 		__field(	ino_t,  ino			)
981abe9b8aSliubo 		__field(	blkcnt_t,  blocks		)
991abe9b8aSliubo 		__field(	u64,  disk_i_size		)
1001abe9b8aSliubo 		__field(	u64,  generation		)
1011abe9b8aSliubo 		__field(	u64,  last_trans		)
1021abe9b8aSliubo 		__field(	u64,  logged_trans		)
1031abe9b8aSliubo 		__field(	u64,  root_objectid		)
1041abe9b8aSliubo 	),
1051abe9b8aSliubo 
1061abe9b8aSliubo 	TP_fast_assign(
1071abe9b8aSliubo 		__entry->ino	= inode->i_ino;
1081abe9b8aSliubo 		__entry->blocks	= inode->i_blocks;
1091abe9b8aSliubo 		__entry->disk_i_size  = BTRFS_I(inode)->disk_i_size;
1101abe9b8aSliubo 		__entry->generation = BTRFS_I(inode)->generation;
1111abe9b8aSliubo 		__entry->last_trans = BTRFS_I(inode)->last_trans;
1121abe9b8aSliubo 		__entry->logged_trans = BTRFS_I(inode)->logged_trans;
1131abe9b8aSliubo 		__entry->root_objectid =
1141abe9b8aSliubo 				BTRFS_I(inode)->root->root_key.objectid;
1151abe9b8aSliubo 	),
1161abe9b8aSliubo 
1171abe9b8aSliubo 	TP_printk("root = %llu(%s), gen = %llu, ino = %lu, blocks = %llu, "
1181abe9b8aSliubo 		  "disk_i_size = %llu, last_trans = %llu, logged_trans = %llu",
1191abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
1201abe9b8aSliubo 		  (unsigned long long)__entry->generation,
1211abe9b8aSliubo 		  (unsigned long)__entry->ino,
1221abe9b8aSliubo 		  (unsigned long long)__entry->blocks,
1231abe9b8aSliubo 		  (unsigned long long)__entry->disk_i_size,
1241abe9b8aSliubo 		  (unsigned long long)__entry->last_trans,
1251abe9b8aSliubo 		  (unsigned long long)__entry->logged_trans)
1261abe9b8aSliubo );
1271abe9b8aSliubo 
1281abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_new,
1291abe9b8aSliubo 
1301abe9b8aSliubo 	TP_PROTO(struct inode *inode),
1311abe9b8aSliubo 
1321abe9b8aSliubo 	TP_ARGS(inode)
1331abe9b8aSliubo );
1341abe9b8aSliubo 
1351abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_request,
1361abe9b8aSliubo 
1371abe9b8aSliubo 	TP_PROTO(struct inode *inode),
1381abe9b8aSliubo 
1391abe9b8aSliubo 	TP_ARGS(inode)
1401abe9b8aSliubo );
1411abe9b8aSliubo 
1421abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_evict,
1431abe9b8aSliubo 
1441abe9b8aSliubo 	TP_PROTO(struct inode *inode),
1451abe9b8aSliubo 
1461abe9b8aSliubo 	TP_ARGS(inode)
1471abe9b8aSliubo );
1481abe9b8aSliubo 
1491abe9b8aSliubo #define __show_map_type(type)						\
1507f34b746Sliubo 	__print_symbolic_u64(type,					\
1511abe9b8aSliubo 		{ EXTENT_MAP_LAST_BYTE, "LAST_BYTE" 	},		\
1521abe9b8aSliubo 		{ EXTENT_MAP_HOLE, 	"HOLE" 		},		\
1531abe9b8aSliubo 		{ EXTENT_MAP_INLINE, 	"INLINE" 	},		\
1541abe9b8aSliubo 		{ EXTENT_MAP_DELALLOC,	"DELALLOC" 	})
1551abe9b8aSliubo 
1561abe9b8aSliubo #define show_map_type(type)			\
1571abe9b8aSliubo 	type, (type >= EXTENT_MAP_LAST_BYTE) ? "-" :  __show_map_type(type)
1581abe9b8aSliubo 
1591abe9b8aSliubo #define show_map_flags(flag)						\
1601abe9b8aSliubo 	__print_flags(flag, "|",					\
1611abe9b8aSliubo 		{ EXTENT_FLAG_PINNED, 		"PINNED" 	},	\
1621abe9b8aSliubo 		{ EXTENT_FLAG_COMPRESSED, 	"COMPRESSED" 	},	\
1631abe9b8aSliubo 		{ EXTENT_FLAG_VACANCY, 		"VACANCY" 	},	\
164e112e2b4SLiu Bo 		{ EXTENT_FLAG_PREALLOC, 	"PREALLOC" 	},	\
165e112e2b4SLiu Bo 		{ EXTENT_FLAG_LOGGING,	 	"LOGGING" 	},	\
166e112e2b4SLiu Bo 		{ EXTENT_FLAG_FILLING,	 	"FILLING" 	})
1671abe9b8aSliubo 
1684cd8587cSSteven Rostedt TRACE_EVENT_CONDITION(btrfs_get_extent,
1691abe9b8aSliubo 
1701abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, struct extent_map *map),
1711abe9b8aSliubo 
1721abe9b8aSliubo 	TP_ARGS(root, map),
1731abe9b8aSliubo 
1744cd8587cSSteven Rostedt 	TP_CONDITION(map),
1754cd8587cSSteven Rostedt 
1761abe9b8aSliubo 	TP_STRUCT__entry(
1771abe9b8aSliubo 		__field(	u64,  root_objectid	)
1781abe9b8aSliubo 		__field(	u64,  start		)
1791abe9b8aSliubo 		__field(	u64,  len		)
1801abe9b8aSliubo 		__field(	u64,  orig_start	)
1811abe9b8aSliubo 		__field(	u64,  block_start	)
1821abe9b8aSliubo 		__field(	u64,  block_len		)
1831abe9b8aSliubo 		__field(	unsigned long,  flags	)
1841abe9b8aSliubo 		__field(	int,  refs		)
1851abe9b8aSliubo 		__field(	unsigned int,  compress_type	)
1861abe9b8aSliubo 	),
1871abe9b8aSliubo 
1881abe9b8aSliubo 	TP_fast_assign(
1891abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
1901abe9b8aSliubo 		__entry->start 		= map->start;
1911abe9b8aSliubo 		__entry->len		= map->len;
1921abe9b8aSliubo 		__entry->orig_start	= map->orig_start;
1931abe9b8aSliubo 		__entry->block_start	= map->block_start;
1941abe9b8aSliubo 		__entry->block_len	= map->block_len;
1951abe9b8aSliubo 		__entry->flags		= map->flags;
1961abe9b8aSliubo 		__entry->refs		= atomic_read(&map->refs);
1971abe9b8aSliubo 		__entry->compress_type	= map->compress_type;
1981abe9b8aSliubo 	),
1991abe9b8aSliubo 
2001abe9b8aSliubo 	TP_printk("root = %llu(%s), start = %llu, len = %llu, "
2011abe9b8aSliubo 		  "orig_start = %llu, block_start = %llu(%s), "
2021abe9b8aSliubo 		  "block_len = %llu, flags = %s, refs = %u, "
2031abe9b8aSliubo 		  "compress_type = %u",
2041abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
2051abe9b8aSliubo 		  (unsigned long long)__entry->start,
2061abe9b8aSliubo 		  (unsigned long long)__entry->len,
2071abe9b8aSliubo 		  (unsigned long long)__entry->orig_start,
2081abe9b8aSliubo 		  show_map_type(__entry->block_start),
2091abe9b8aSliubo 		  (unsigned long long)__entry->block_len,
2101abe9b8aSliubo 		  show_map_flags(__entry->flags),
2111abe9b8aSliubo 		  __entry->refs, __entry->compress_type)
2121abe9b8aSliubo );
2131abe9b8aSliubo 
2141abe9b8aSliubo #define show_ordered_flags(flags)					   \
2159d04a8ceSLiu Bo 	__print_flags(flags, "|",					   \
2169d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_IO_DONE), 	"IO_DONE" 	}, \
2179d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_COMPLETE), 	"COMPLETE" 	}, \
2189d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_NOCOW), 		"NOCOW" 	}, \
2199d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_COMPRESSED), 	"COMPRESSED" 	}, \
2209d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_PREALLOC), 	"PREALLOC" 	}, \
2219d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_DIRECT),	 	"DIRECT" 	}, \
2229d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_IOERR), 		"IOERR" 	}, \
2239d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_UPDATED_ISIZE), 	"UPDATED_ISIZE"	}, \
224792ddef0SLiu Bo 		{ (1 << BTRFS_ORDERED_LOGGED_CSUM), 	"LOGGED_CSUM"	}, \
225792ddef0SLiu Bo 		{ (1 << BTRFS_ORDERED_TRUNCATED), 	"TRUNCATED"	})
226e112e2b4SLiu Bo 
2271abe9b8aSliubo 
2281abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__ordered_extent,
2291abe9b8aSliubo 
2301abe9b8aSliubo 	TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
2311abe9b8aSliubo 
2321abe9b8aSliubo 	TP_ARGS(inode, ordered),
2331abe9b8aSliubo 
2341abe9b8aSliubo 	TP_STRUCT__entry(
2351abe9b8aSliubo 		__field(	ino_t,  ino		)
2361abe9b8aSliubo 		__field(	u64,  file_offset	)
2371abe9b8aSliubo 		__field(	u64,  start		)
2381abe9b8aSliubo 		__field(	u64,  len		)
2391abe9b8aSliubo 		__field(	u64,  disk_len		)
2401abe9b8aSliubo 		__field(	u64,  bytes_left	)
2411abe9b8aSliubo 		__field(	unsigned long,  flags	)
2421abe9b8aSliubo 		__field(	int,  compress_type	)
2431abe9b8aSliubo 		__field(	int,  refs		)
2441abe9b8aSliubo 		__field(	u64,  root_objectid	)
2451abe9b8aSliubo 	),
2461abe9b8aSliubo 
2471abe9b8aSliubo 	TP_fast_assign(
2481abe9b8aSliubo 		__entry->ino 		= inode->i_ino;
2491abe9b8aSliubo 		__entry->file_offset	= ordered->file_offset;
2501abe9b8aSliubo 		__entry->start		= ordered->start;
2511abe9b8aSliubo 		__entry->len		= ordered->len;
2521abe9b8aSliubo 		__entry->disk_len	= ordered->disk_len;
2531abe9b8aSliubo 		__entry->bytes_left	= ordered->bytes_left;
2541abe9b8aSliubo 		__entry->flags		= ordered->flags;
2551abe9b8aSliubo 		__entry->compress_type	= ordered->compress_type;
2561abe9b8aSliubo 		__entry->refs		= atomic_read(&ordered->refs);
2571abe9b8aSliubo 		__entry->root_objectid	=
2581abe9b8aSliubo 				BTRFS_I(inode)->root->root_key.objectid;
2591abe9b8aSliubo 	),
2601abe9b8aSliubo 
2611abe9b8aSliubo 	TP_printk("root = %llu(%s), ino = %llu, file_offset = %llu, "
2621abe9b8aSliubo 		  "start = %llu, len = %llu, disk_len = %llu, "
2631abe9b8aSliubo 		  "bytes_left = %llu, flags = %s, compress_type = %d, "
2641abe9b8aSliubo 		  "refs = %d",
2651abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
2661abe9b8aSliubo 		  (unsigned long long)__entry->ino,
2671abe9b8aSliubo 		  (unsigned long long)__entry->file_offset,
2681abe9b8aSliubo 		  (unsigned long long)__entry->start,
2691abe9b8aSliubo 		  (unsigned long long)__entry->len,
2701abe9b8aSliubo 		  (unsigned long long)__entry->disk_len,
2711abe9b8aSliubo 		  (unsigned long long)__entry->bytes_left,
2721abe9b8aSliubo 		  show_ordered_flags(__entry->flags),
2731abe9b8aSliubo 		  __entry->compress_type, __entry->refs)
2741abe9b8aSliubo );
2751abe9b8aSliubo 
2761abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_add,
2771abe9b8aSliubo 
2781abe9b8aSliubo 	TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
2791abe9b8aSliubo 
2801abe9b8aSliubo 	TP_ARGS(inode, ordered)
2811abe9b8aSliubo );
2821abe9b8aSliubo 
2831abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_remove,
2841abe9b8aSliubo 
2851abe9b8aSliubo 	TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
2861abe9b8aSliubo 
2871abe9b8aSliubo 	TP_ARGS(inode, ordered)
2881abe9b8aSliubo );
2891abe9b8aSliubo 
2901abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_start,
2911abe9b8aSliubo 
2921abe9b8aSliubo 	TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
2931abe9b8aSliubo 
2941abe9b8aSliubo 	TP_ARGS(inode, ordered)
2951abe9b8aSliubo );
2961abe9b8aSliubo 
2971abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_put,
2981abe9b8aSliubo 
2991abe9b8aSliubo 	TP_PROTO(struct inode *inode, struct btrfs_ordered_extent *ordered),
3001abe9b8aSliubo 
3011abe9b8aSliubo 	TP_ARGS(inode, ordered)
3021abe9b8aSliubo );
3031abe9b8aSliubo 
3041abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__writepage,
3051abe9b8aSliubo 
3061abe9b8aSliubo 	TP_PROTO(struct page *page, struct inode *inode,
3071abe9b8aSliubo 		 struct writeback_control *wbc),
3081abe9b8aSliubo 
3091abe9b8aSliubo 	TP_ARGS(page, inode, wbc),
3101abe9b8aSliubo 
3111abe9b8aSliubo 	TP_STRUCT__entry(
3121abe9b8aSliubo 		__field(	ino_t,  ino			)
3131abe9b8aSliubo 		__field(	pgoff_t,  index			)
3141abe9b8aSliubo 		__field(	long,   nr_to_write		)
3151abe9b8aSliubo 		__field(	long,   pages_skipped		)
3161abe9b8aSliubo 		__field(	loff_t, range_start		)
3171abe9b8aSliubo 		__field(	loff_t, range_end		)
3181abe9b8aSliubo 		__field(	char,   for_kupdate		)
3191abe9b8aSliubo 		__field(	char,   for_reclaim		)
3201abe9b8aSliubo 		__field(	char,   range_cyclic		)
3211abe9b8aSliubo 		__field(	pgoff_t,  writeback_index	)
3221abe9b8aSliubo 		__field(	u64,    root_objectid		)
3231abe9b8aSliubo 	),
3241abe9b8aSliubo 
3251abe9b8aSliubo 	TP_fast_assign(
3261abe9b8aSliubo 		__entry->ino		= inode->i_ino;
3271abe9b8aSliubo 		__entry->index		= page->index;
3281abe9b8aSliubo 		__entry->nr_to_write	= wbc->nr_to_write;
3291abe9b8aSliubo 		__entry->pages_skipped	= wbc->pages_skipped;
3301abe9b8aSliubo 		__entry->range_start	= wbc->range_start;
3311abe9b8aSliubo 		__entry->range_end	= wbc->range_end;
3321abe9b8aSliubo 		__entry->for_kupdate	= wbc->for_kupdate;
3331abe9b8aSliubo 		__entry->for_reclaim	= wbc->for_reclaim;
3341abe9b8aSliubo 		__entry->range_cyclic	= wbc->range_cyclic;
3351abe9b8aSliubo 		__entry->writeback_index = inode->i_mapping->writeback_index;
3361abe9b8aSliubo 		__entry->root_objectid	=
3371abe9b8aSliubo 				 BTRFS_I(inode)->root->root_key.objectid;
3381abe9b8aSliubo 	),
3391abe9b8aSliubo 
3401abe9b8aSliubo 	TP_printk("root = %llu(%s), ino = %lu, page_index = %lu, "
3411abe9b8aSliubo 		  "nr_to_write = %ld, pages_skipped = %ld, range_start = %llu, "
342846d5a09SWu Fengguang 		  "range_end = %llu, for_kupdate = %d, "
3431abe9b8aSliubo 		  "for_reclaim = %d, range_cyclic = %d, writeback_index = %lu",
3441abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
3451abe9b8aSliubo 		  (unsigned long)__entry->ino, __entry->index,
3461abe9b8aSliubo 		  __entry->nr_to_write, __entry->pages_skipped,
3471abe9b8aSliubo 		  __entry->range_start, __entry->range_end,
348846d5a09SWu Fengguang 		  __entry->for_kupdate,
3491abe9b8aSliubo 		  __entry->for_reclaim, __entry->range_cyclic,
3501abe9b8aSliubo 		  (unsigned long)__entry->writeback_index)
3511abe9b8aSliubo );
3521abe9b8aSliubo 
3531abe9b8aSliubo DEFINE_EVENT(btrfs__writepage, __extent_writepage,
3541abe9b8aSliubo 
3551abe9b8aSliubo 	TP_PROTO(struct page *page, struct inode *inode,
3561abe9b8aSliubo 		 struct writeback_control *wbc),
3571abe9b8aSliubo 
3581abe9b8aSliubo 	TP_ARGS(page, inode, wbc)
3591abe9b8aSliubo );
3601abe9b8aSliubo 
3611abe9b8aSliubo TRACE_EVENT(btrfs_writepage_end_io_hook,
3621abe9b8aSliubo 
3631abe9b8aSliubo 	TP_PROTO(struct page *page, u64 start, u64 end, int uptodate),
3641abe9b8aSliubo 
3651abe9b8aSliubo 	TP_ARGS(page, start, end, uptodate),
3661abe9b8aSliubo 
3671abe9b8aSliubo 	TP_STRUCT__entry(
3681abe9b8aSliubo 		__field(	ino_t,	 ino		)
3691abe9b8aSliubo 		__field(	pgoff_t, index		)
3701abe9b8aSliubo 		__field(	u64,	 start		)
3711abe9b8aSliubo 		__field(	u64,	 end		)
3721abe9b8aSliubo 		__field(	int,	 uptodate	)
3731abe9b8aSliubo 		__field(	u64,    root_objectid	)
3741abe9b8aSliubo 	),
3751abe9b8aSliubo 
3761abe9b8aSliubo 	TP_fast_assign(
3771abe9b8aSliubo 		__entry->ino	= page->mapping->host->i_ino;
3781abe9b8aSliubo 		__entry->index	= page->index;
3791abe9b8aSliubo 		__entry->start	= start;
3801abe9b8aSliubo 		__entry->end	= end;
3811abe9b8aSliubo 		__entry->uptodate = uptodate;
3821abe9b8aSliubo 		__entry->root_objectid	=
3831abe9b8aSliubo 			 BTRFS_I(page->mapping->host)->root->root_key.objectid;
3841abe9b8aSliubo 	),
3851abe9b8aSliubo 
3861abe9b8aSliubo 	TP_printk("root = %llu(%s), ino = %lu, page_index = %lu, start = %llu, "
3871abe9b8aSliubo 		  "end = %llu, uptodate = %d",
3881abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
3891abe9b8aSliubo 		  (unsigned long)__entry->ino, (unsigned long)__entry->index,
3901abe9b8aSliubo 		  (unsigned long long)__entry->start,
3911abe9b8aSliubo 		  (unsigned long long)__entry->end, __entry->uptodate)
3921abe9b8aSliubo );
3931abe9b8aSliubo 
3941abe9b8aSliubo TRACE_EVENT(btrfs_sync_file,
3951abe9b8aSliubo 
3961abe9b8aSliubo 	TP_PROTO(struct file *file, int datasync),
3971abe9b8aSliubo 
3981abe9b8aSliubo 	TP_ARGS(file, datasync),
3991abe9b8aSliubo 
4001abe9b8aSliubo 	TP_STRUCT__entry(
4011abe9b8aSliubo 		__field(	ino_t,  ino		)
4021abe9b8aSliubo 		__field(	ino_t,  parent		)
4031abe9b8aSliubo 		__field(	int,    datasync	)
4041abe9b8aSliubo 		__field(	u64,    root_objectid	)
4051abe9b8aSliubo 	),
4061abe9b8aSliubo 
4071abe9b8aSliubo 	TP_fast_assign(
4081abe9b8aSliubo 		struct dentry *dentry = file->f_path.dentry;
4091abe9b8aSliubo 		struct inode *inode = dentry->d_inode;
4101abe9b8aSliubo 
4111abe9b8aSliubo 		__entry->ino		= inode->i_ino;
4121abe9b8aSliubo 		__entry->parent		= dentry->d_parent->d_inode->i_ino;
4131abe9b8aSliubo 		__entry->datasync	= datasync;
4141abe9b8aSliubo 		__entry->root_objectid	=
4151abe9b8aSliubo 				 BTRFS_I(inode)->root->root_key.objectid;
4161abe9b8aSliubo 	),
4171abe9b8aSliubo 
4181abe9b8aSliubo 	TP_printk("root = %llu(%s), ino = %ld, parent = %ld, datasync = %d",
4191abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
4201abe9b8aSliubo 		  (unsigned long)__entry->ino, (unsigned long)__entry->parent,
4211abe9b8aSliubo 		  __entry->datasync)
4221abe9b8aSliubo );
4231abe9b8aSliubo 
4241abe9b8aSliubo TRACE_EVENT(btrfs_sync_fs,
4251abe9b8aSliubo 
4261abe9b8aSliubo 	TP_PROTO(int wait),
4271abe9b8aSliubo 
4281abe9b8aSliubo 	TP_ARGS(wait),
4291abe9b8aSliubo 
4301abe9b8aSliubo 	TP_STRUCT__entry(
4311abe9b8aSliubo 		__field(	int,  wait		)
4321abe9b8aSliubo 	),
4331abe9b8aSliubo 
4341abe9b8aSliubo 	TP_fast_assign(
4351abe9b8aSliubo 		__entry->wait	= wait;
4361abe9b8aSliubo 	),
4371abe9b8aSliubo 
4381abe9b8aSliubo 	TP_printk("wait = %d", __entry->wait)
4391abe9b8aSliubo );
4401abe9b8aSliubo 
4411abe9b8aSliubo #define show_ref_action(action)						\
4421abe9b8aSliubo 	__print_symbolic(action,					\
4431abe9b8aSliubo 		{ BTRFS_ADD_DELAYED_REF,    "ADD_DELAYED_REF" },	\
4441abe9b8aSliubo 		{ BTRFS_DROP_DELAYED_REF,   "DROP_DELAYED_REF" },	\
4451abe9b8aSliubo 		{ BTRFS_ADD_DELAYED_EXTENT, "ADD_DELAYED_EXTENT" }, 	\
4461abe9b8aSliubo 		{ BTRFS_UPDATE_DELAYED_HEAD, "UPDATE_DELAYED_HEAD" })
4471abe9b8aSliubo 
4481abe9b8aSliubo 
449599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_tree_ref,
4501abe9b8aSliubo 
4511abe9b8aSliubo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
4521abe9b8aSliubo 		 struct btrfs_delayed_tree_ref *full_ref,
4531abe9b8aSliubo 		 int action),
4541abe9b8aSliubo 
4551abe9b8aSliubo 	TP_ARGS(ref, full_ref, action),
4561abe9b8aSliubo 
4571abe9b8aSliubo 	TP_STRUCT__entry(
4581abe9b8aSliubo 		__field(	u64,  bytenr		)
4591abe9b8aSliubo 		__field(	u64,  num_bytes		)
4601abe9b8aSliubo 		__field(	int,  action		)
4611abe9b8aSliubo 		__field(	u64,  parent		)
4621abe9b8aSliubo 		__field(	u64,  ref_root		)
4631abe9b8aSliubo 		__field(	int,  level		)
4641abe9b8aSliubo 		__field(	int,  type		)
465dea7d76eSLiu Bo 		__field(	u64,  seq		)
4661abe9b8aSliubo 	),
4671abe9b8aSliubo 
4681abe9b8aSliubo 	TP_fast_assign(
4691abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
4701abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
4711abe9b8aSliubo 		__entry->action		= action;
4721abe9b8aSliubo 		__entry->parent		= full_ref->parent;
4731abe9b8aSliubo 		__entry->ref_root	= full_ref->root;
4741abe9b8aSliubo 		__entry->level		= full_ref->level;
4751abe9b8aSliubo 		__entry->type		= ref->type;
476dea7d76eSLiu Bo 		__entry->seq		= ref->seq;
4771abe9b8aSliubo 	),
4781abe9b8aSliubo 
4791abe9b8aSliubo 	TP_printk("bytenr = %llu, num_bytes = %llu, action = %s, "
4801abe9b8aSliubo 		  "parent = %llu(%s), ref_root = %llu(%s), level = %d, "
481dea7d76eSLiu Bo 		  "type = %s, seq = %llu",
4821abe9b8aSliubo 		  (unsigned long long)__entry->bytenr,
4831abe9b8aSliubo 		  (unsigned long long)__entry->num_bytes,
4841abe9b8aSliubo 		  show_ref_action(__entry->action),
4851abe9b8aSliubo 		  show_root_type(__entry->parent),
4861abe9b8aSliubo 		  show_root_type(__entry->ref_root),
487dea7d76eSLiu Bo 		  __entry->level, show_ref_type(__entry->type),
488dea7d76eSLiu Bo 		  (unsigned long long)__entry->seq)
4891abe9b8aSliubo );
4901abe9b8aSliubo 
491599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_tree_ref,  add_delayed_tree_ref,
492599c75ecSLiu Bo 
493599c75ecSLiu Bo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
494599c75ecSLiu Bo 		 struct btrfs_delayed_tree_ref *full_ref,
495599c75ecSLiu Bo 		 int action),
496599c75ecSLiu Bo 
497599c75ecSLiu Bo 	TP_ARGS(ref, full_ref, action)
498599c75ecSLiu Bo );
499599c75ecSLiu Bo 
500599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_tree_ref,  run_delayed_tree_ref,
501599c75ecSLiu Bo 
502599c75ecSLiu Bo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
503599c75ecSLiu Bo 		 struct btrfs_delayed_tree_ref *full_ref,
504599c75ecSLiu Bo 		 int action),
505599c75ecSLiu Bo 
506599c75ecSLiu Bo 	TP_ARGS(ref, full_ref, action)
507599c75ecSLiu Bo );
508599c75ecSLiu Bo 
509599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_data_ref,
5101abe9b8aSliubo 
5111abe9b8aSliubo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
5121abe9b8aSliubo 		 struct btrfs_delayed_data_ref *full_ref,
5131abe9b8aSliubo 		 int action),
5141abe9b8aSliubo 
5151abe9b8aSliubo 	TP_ARGS(ref, full_ref, action),
5161abe9b8aSliubo 
5171abe9b8aSliubo 	TP_STRUCT__entry(
5181abe9b8aSliubo 		__field(	u64,  bytenr		)
5191abe9b8aSliubo 		__field(	u64,  num_bytes		)
5201abe9b8aSliubo 		__field(	int,  action		)
5211abe9b8aSliubo 		__field(	u64,  parent		)
5221abe9b8aSliubo 		__field(	u64,  ref_root		)
5231abe9b8aSliubo 		__field(	u64,  owner		)
5241abe9b8aSliubo 		__field(	u64,  offset		)
5251abe9b8aSliubo 		__field(	int,  type		)
526dea7d76eSLiu Bo 		__field(	u64,  seq		)
5271abe9b8aSliubo 	),
5281abe9b8aSliubo 
5291abe9b8aSliubo 	TP_fast_assign(
5301abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
5311abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
5321abe9b8aSliubo 		__entry->action		= action;
5331abe9b8aSliubo 		__entry->parent		= full_ref->parent;
5341abe9b8aSliubo 		__entry->ref_root	= full_ref->root;
5351abe9b8aSliubo 		__entry->owner		= full_ref->objectid;
5361abe9b8aSliubo 		__entry->offset		= full_ref->offset;
5371abe9b8aSliubo 		__entry->type		= ref->type;
538dea7d76eSLiu Bo 		__entry->seq		= ref->seq;
5391abe9b8aSliubo 	),
5401abe9b8aSliubo 
5411abe9b8aSliubo 	TP_printk("bytenr = %llu, num_bytes = %llu, action = %s, "
5421abe9b8aSliubo 		  "parent = %llu(%s), ref_root = %llu(%s), owner = %llu, "
543dea7d76eSLiu Bo 		  "offset = %llu, type = %s, seq = %llu",
5441abe9b8aSliubo 		  (unsigned long long)__entry->bytenr,
5451abe9b8aSliubo 		  (unsigned long long)__entry->num_bytes,
5461abe9b8aSliubo 		  show_ref_action(__entry->action),
5471abe9b8aSliubo 		  show_root_type(__entry->parent),
5481abe9b8aSliubo 		  show_root_type(__entry->ref_root),
5491abe9b8aSliubo 		  (unsigned long long)__entry->owner,
5501abe9b8aSliubo 		  (unsigned long long)__entry->offset,
551dea7d76eSLiu Bo 		  show_ref_type(__entry->type),
552dea7d76eSLiu Bo 		  (unsigned long long)__entry->seq)
5531abe9b8aSliubo );
5541abe9b8aSliubo 
555599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_data_ref,  add_delayed_data_ref,
556599c75ecSLiu Bo 
557599c75ecSLiu Bo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
558599c75ecSLiu Bo 		 struct btrfs_delayed_data_ref *full_ref,
559599c75ecSLiu Bo 		 int action),
560599c75ecSLiu Bo 
561599c75ecSLiu Bo 	TP_ARGS(ref, full_ref, action)
562599c75ecSLiu Bo );
563599c75ecSLiu Bo 
564599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_data_ref,  run_delayed_data_ref,
565599c75ecSLiu Bo 
566599c75ecSLiu Bo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
567599c75ecSLiu Bo 		 struct btrfs_delayed_data_ref *full_ref,
568599c75ecSLiu Bo 		 int action),
569599c75ecSLiu Bo 
570599c75ecSLiu Bo 	TP_ARGS(ref, full_ref, action)
571599c75ecSLiu Bo );
572599c75ecSLiu Bo 
573599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_ref_head,
5741abe9b8aSliubo 
5751abe9b8aSliubo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
5761abe9b8aSliubo 		 struct btrfs_delayed_ref_head *head_ref,
5771abe9b8aSliubo 		 int action),
5781abe9b8aSliubo 
5791abe9b8aSliubo 	TP_ARGS(ref, head_ref, action),
5801abe9b8aSliubo 
5811abe9b8aSliubo 	TP_STRUCT__entry(
5821abe9b8aSliubo 		__field(	u64,  bytenr		)
5831abe9b8aSliubo 		__field(	u64,  num_bytes		)
5841abe9b8aSliubo 		__field(	int,  action		)
5851abe9b8aSliubo 		__field(	int,  is_data		)
5861abe9b8aSliubo 	),
5871abe9b8aSliubo 
5881abe9b8aSliubo 	TP_fast_assign(
5891abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
5901abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
5911abe9b8aSliubo 		__entry->action		= action;
5921abe9b8aSliubo 		__entry->is_data	= head_ref->is_data;
5931abe9b8aSliubo 	),
5941abe9b8aSliubo 
5951abe9b8aSliubo 	TP_printk("bytenr = %llu, num_bytes = %llu, action = %s, is_data = %d",
5961abe9b8aSliubo 		  (unsigned long long)__entry->bytenr,
5971abe9b8aSliubo 		  (unsigned long long)__entry->num_bytes,
5981abe9b8aSliubo 		  show_ref_action(__entry->action),
5991abe9b8aSliubo 		  __entry->is_data)
6001abe9b8aSliubo );
6011abe9b8aSliubo 
602599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_ref_head,  add_delayed_ref_head,
603599c75ecSLiu Bo 
604599c75ecSLiu Bo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
605599c75ecSLiu Bo 		 struct btrfs_delayed_ref_head *head_ref,
606599c75ecSLiu Bo 		 int action),
607599c75ecSLiu Bo 
608599c75ecSLiu Bo 	TP_ARGS(ref, head_ref, action)
609599c75ecSLiu Bo );
610599c75ecSLiu Bo 
611599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_ref_head,  run_delayed_ref_head,
612599c75ecSLiu Bo 
613599c75ecSLiu Bo 	TP_PROTO(struct btrfs_delayed_ref_node *ref,
614599c75ecSLiu Bo 		 struct btrfs_delayed_ref_head *head_ref,
615599c75ecSLiu Bo 		 int action),
616599c75ecSLiu Bo 
617599c75ecSLiu Bo 	TP_ARGS(ref, head_ref, action)
618599c75ecSLiu Bo );
619599c75ecSLiu Bo 
6201abe9b8aSliubo #define show_chunk_type(type)					\
6211abe9b8aSliubo 	__print_flags(type, "|",				\
6221abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_DATA, 	"DATA"	},	\
6231abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_SYSTEM, 	"SYSTEM"},	\
6241abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_METADATA, 	"METADATA"},	\
6251abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_RAID0, 	"RAID0" },	\
6261abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_RAID1, 	"RAID1" },	\
6271abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_DUP, 	"DUP"	},	\
628e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID10, 	"RAID10"},	\
629e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID5, 	"RAID5"	},	\
630e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID6, 	"RAID6"	})
6311abe9b8aSliubo 
6321abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__chunk,
6331abe9b8aSliubo 
6341abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, struct map_lookup *map,
6351abe9b8aSliubo 		 u64 offset, u64 size),
6361abe9b8aSliubo 
6371abe9b8aSliubo 	TP_ARGS(root, map, offset, size),
6381abe9b8aSliubo 
6391abe9b8aSliubo 	TP_STRUCT__entry(
6401abe9b8aSliubo 		__field(	int,  num_stripes		)
6411abe9b8aSliubo 		__field(	u64,  type			)
6421abe9b8aSliubo 		__field(	int,  sub_stripes		)
6431abe9b8aSliubo 		__field(	u64,  offset			)
6441abe9b8aSliubo 		__field(	u64,  size			)
6451abe9b8aSliubo 		__field(	u64,  root_objectid		)
6461abe9b8aSliubo 	),
6471abe9b8aSliubo 
6481abe9b8aSliubo 	TP_fast_assign(
6491abe9b8aSliubo 		__entry->num_stripes	= map->num_stripes;
6501abe9b8aSliubo 		__entry->type		= map->type;
6511abe9b8aSliubo 		__entry->sub_stripes	= map->sub_stripes;
6521abe9b8aSliubo 		__entry->offset		= offset;
6531abe9b8aSliubo 		__entry->size		= size;
6541abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
6551abe9b8aSliubo 	),
6561abe9b8aSliubo 
6571abe9b8aSliubo 	TP_printk("root = %llu(%s), offset = %llu, size = %llu, "
6581abe9b8aSliubo 		  "num_stripes = %d, sub_stripes = %d, type = %s",
6591abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
6601abe9b8aSliubo 		  (unsigned long long)__entry->offset,
6611abe9b8aSliubo 		  (unsigned long long)__entry->size,
6621abe9b8aSliubo 		  __entry->num_stripes, __entry->sub_stripes,
6631abe9b8aSliubo 		  show_chunk_type(__entry->type))
6641abe9b8aSliubo );
6651abe9b8aSliubo 
6661abe9b8aSliubo DEFINE_EVENT(btrfs__chunk,  btrfs_chunk_alloc,
6671abe9b8aSliubo 
6681abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, struct map_lookup *map,
6691abe9b8aSliubo 		 u64 offset, u64 size),
6701abe9b8aSliubo 
6711abe9b8aSliubo 	TP_ARGS(root, map, offset, size)
6721abe9b8aSliubo );
6731abe9b8aSliubo 
6741abe9b8aSliubo DEFINE_EVENT(btrfs__chunk,  btrfs_chunk_free,
6751abe9b8aSliubo 
6761abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, struct map_lookup *map,
6771abe9b8aSliubo 		 u64 offset, u64 size),
6781abe9b8aSliubo 
6791abe9b8aSliubo 	TP_ARGS(root, map, offset, size)
6801abe9b8aSliubo );
6811abe9b8aSliubo 
6821abe9b8aSliubo TRACE_EVENT(btrfs_cow_block,
6831abe9b8aSliubo 
6841abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, struct extent_buffer *buf,
6851abe9b8aSliubo 		 struct extent_buffer *cow),
6861abe9b8aSliubo 
6871abe9b8aSliubo 	TP_ARGS(root, buf, cow),
6881abe9b8aSliubo 
6891abe9b8aSliubo 	TP_STRUCT__entry(
6901abe9b8aSliubo 		__field(	u64,  root_objectid		)
6911abe9b8aSliubo 		__field(	u64,  buf_start			)
6921abe9b8aSliubo 		__field(	int,  refs			)
6931abe9b8aSliubo 		__field(	u64,  cow_start			)
6941abe9b8aSliubo 		__field(	int,  buf_level			)
6951abe9b8aSliubo 		__field(	int,  cow_level			)
6961abe9b8aSliubo 	),
6971abe9b8aSliubo 
6981abe9b8aSliubo 	TP_fast_assign(
6991abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
7001abe9b8aSliubo 		__entry->buf_start	= buf->start;
7011abe9b8aSliubo 		__entry->refs		= atomic_read(&buf->refs);
7021abe9b8aSliubo 		__entry->cow_start	= cow->start;
7031abe9b8aSliubo 		__entry->buf_level	= btrfs_header_level(buf);
7041abe9b8aSliubo 		__entry->cow_level	= btrfs_header_level(cow);
7051abe9b8aSliubo 	),
7061abe9b8aSliubo 
7071abe9b8aSliubo 	TP_printk("root = %llu(%s), refs = %d, orig_buf = %llu "
7081abe9b8aSliubo 		  "(orig_level = %d), cow_buf = %llu (cow_level = %d)",
7091abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
7101abe9b8aSliubo 		  __entry->refs,
7111abe9b8aSliubo 		  (unsigned long long)__entry->buf_start,
7121abe9b8aSliubo 		  __entry->buf_level,
7131abe9b8aSliubo 		  (unsigned long long)__entry->cow_start,
7141abe9b8aSliubo 		  __entry->cow_level)
7151abe9b8aSliubo );
7161abe9b8aSliubo 
7178c2a3ca2SJosef Bacik TRACE_EVENT(btrfs_space_reservation,
7188c2a3ca2SJosef Bacik 
7198c2a3ca2SJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info, char *type, u64 val,
7208c2a3ca2SJosef Bacik 		 u64 bytes, int reserve),
7218c2a3ca2SJosef Bacik 
7228c2a3ca2SJosef Bacik 	TP_ARGS(fs_info, type, val, bytes, reserve),
7238c2a3ca2SJosef Bacik 
7248c2a3ca2SJosef Bacik 	TP_STRUCT__entry(
7258c2a3ca2SJosef Bacik 		__array(	u8,	fsid,	BTRFS_UUID_SIZE	)
7268c2a3ca2SJosef Bacik 		__string(	type,	type			)
7278c2a3ca2SJosef Bacik 		__field(	u64,	val			)
7288c2a3ca2SJosef Bacik 		__field(	u64,	bytes			)
7298c2a3ca2SJosef Bacik 		__field(	int,	reserve			)
7308c2a3ca2SJosef Bacik 	),
7318c2a3ca2SJosef Bacik 
7328c2a3ca2SJosef Bacik 	TP_fast_assign(
7338c2a3ca2SJosef Bacik 		memcpy(__entry->fsid, fs_info->fsid, BTRFS_UUID_SIZE);
7348c2a3ca2SJosef Bacik 		__assign_str(type, type);
7358c2a3ca2SJosef Bacik 		__entry->val		= val;
7368c2a3ca2SJosef Bacik 		__entry->bytes		= bytes;
7378c2a3ca2SJosef Bacik 		__entry->reserve	= reserve;
7388c2a3ca2SJosef Bacik 	),
7398c2a3ca2SJosef Bacik 
7408c2a3ca2SJosef Bacik 	TP_printk("%pU: %s: %Lu %s %Lu", __entry->fsid, __get_str(type),
7418c2a3ca2SJosef Bacik 		  __entry->val, __entry->reserve ? "reserve" : "release",
7428c2a3ca2SJosef Bacik 		  __entry->bytes)
7438c2a3ca2SJosef Bacik );
7448c2a3ca2SJosef Bacik 
7451abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__reserved_extent,
7461abe9b8aSliubo 
7471abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, u64 start, u64 len),
7481abe9b8aSliubo 
7491abe9b8aSliubo 	TP_ARGS(root, start, len),
7501abe9b8aSliubo 
7511abe9b8aSliubo 	TP_STRUCT__entry(
7521abe9b8aSliubo 		__field(	u64,  root_objectid		)
7531abe9b8aSliubo 		__field(	u64,  start			)
7541abe9b8aSliubo 		__field(	u64,  len			)
7551abe9b8aSliubo 	),
7561abe9b8aSliubo 
7571abe9b8aSliubo 	TP_fast_assign(
7581abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
7591abe9b8aSliubo 		__entry->start		= start;
7601abe9b8aSliubo 		__entry->len		= len;
7611abe9b8aSliubo 	),
7621abe9b8aSliubo 
7631abe9b8aSliubo 	TP_printk("root = %llu(%s), start = %llu, len = %llu",
7641abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
7651abe9b8aSliubo 		  (unsigned long long)__entry->start,
7661abe9b8aSliubo 		  (unsigned long long)__entry->len)
7671abe9b8aSliubo );
7681abe9b8aSliubo 
7691abe9b8aSliubo DEFINE_EVENT(btrfs__reserved_extent,  btrfs_reserved_extent_alloc,
7701abe9b8aSliubo 
7711abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, u64 start, u64 len),
7721abe9b8aSliubo 
7731abe9b8aSliubo 	TP_ARGS(root, start, len)
7741abe9b8aSliubo );
7751abe9b8aSliubo 
7761abe9b8aSliubo DEFINE_EVENT(btrfs__reserved_extent,  btrfs_reserved_extent_free,
7771abe9b8aSliubo 
7781abe9b8aSliubo 	TP_PROTO(struct btrfs_root *root, u64 start, u64 len),
7791abe9b8aSliubo 
7801abe9b8aSliubo 	TP_ARGS(root, start, len)
7811abe9b8aSliubo );
7821abe9b8aSliubo 
7833f7de037SJosef Bacik TRACE_EVENT(find_free_extent,
7843f7de037SJosef Bacik 
7853f7de037SJosef Bacik 	TP_PROTO(struct btrfs_root *root, u64 num_bytes, u64 empty_size,
7863f7de037SJosef Bacik 		 u64 data),
7873f7de037SJosef Bacik 
7883f7de037SJosef Bacik 	TP_ARGS(root, num_bytes, empty_size, data),
7893f7de037SJosef Bacik 
7903f7de037SJosef Bacik 	TP_STRUCT__entry(
7913f7de037SJosef Bacik 		__field(	u64,	root_objectid		)
7923f7de037SJosef Bacik 		__field(	u64,	num_bytes		)
7933f7de037SJosef Bacik 		__field(	u64,	empty_size		)
7943f7de037SJosef Bacik 		__field(	u64,	data			)
7953f7de037SJosef Bacik 	),
7963f7de037SJosef Bacik 
7973f7de037SJosef Bacik 	TP_fast_assign(
7983f7de037SJosef Bacik 		__entry->root_objectid	= root->root_key.objectid;
7993f7de037SJosef Bacik 		__entry->num_bytes	= num_bytes;
8003f7de037SJosef Bacik 		__entry->empty_size	= empty_size;
8013f7de037SJosef Bacik 		__entry->data		= data;
8023f7de037SJosef Bacik 	),
8033f7de037SJosef Bacik 
8043f7de037SJosef Bacik 	TP_printk("root = %Lu(%s), len = %Lu, empty_size = %Lu, "
8053f7de037SJosef Bacik 		  "flags = %Lu(%s)", show_root_type(__entry->root_objectid),
8063f7de037SJosef Bacik 		  __entry->num_bytes, __entry->empty_size, __entry->data,
8073f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->data, "|",
8083f7de037SJosef Bacik 				 BTRFS_GROUP_FLAGS))
8093f7de037SJosef Bacik );
8103f7de037SJosef Bacik 
8113f7de037SJosef Bacik DECLARE_EVENT_CLASS(btrfs__reserve_extent,
8123f7de037SJosef Bacik 
8133f7de037SJosef Bacik 	TP_PROTO(struct btrfs_root *root,
8143f7de037SJosef Bacik 		 struct btrfs_block_group_cache *block_group, u64 start,
8153f7de037SJosef Bacik 		 u64 len),
8163f7de037SJosef Bacik 
8173f7de037SJosef Bacik 	TP_ARGS(root, block_group, start, len),
8183f7de037SJosef Bacik 
8193f7de037SJosef Bacik 	TP_STRUCT__entry(
8203f7de037SJosef Bacik 		__field(	u64,	root_objectid		)
8213f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
8223f7de037SJosef Bacik 		__field(	u64,	flags			)
8233f7de037SJosef Bacik 		__field(	u64,	start			)
8243f7de037SJosef Bacik 		__field(	u64,	len			)
8253f7de037SJosef Bacik 	),
8263f7de037SJosef Bacik 
8273f7de037SJosef Bacik 	TP_fast_assign(
8283f7de037SJosef Bacik 		__entry->root_objectid	= root->root_key.objectid;
8293f7de037SJosef Bacik 		__entry->bg_objectid	= block_group->key.objectid;
8303f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
8313f7de037SJosef Bacik 		__entry->start		= start;
8323f7de037SJosef Bacik 		__entry->len		= len;
8333f7de037SJosef Bacik 	),
8343f7de037SJosef Bacik 
8353f7de037SJosef Bacik 	TP_printk("root = %Lu(%s), block_group = %Lu, flags = %Lu(%s), "
8363f7de037SJosef Bacik 		  "start = %Lu, len = %Lu",
8373f7de037SJosef Bacik 		  show_root_type(__entry->root_objectid), __entry->bg_objectid,
8383f7de037SJosef Bacik 		  __entry->flags, __print_flags((unsigned long)__entry->flags,
8393f7de037SJosef Bacik 						"|", BTRFS_GROUP_FLAGS),
8403f7de037SJosef Bacik 		  __entry->start, __entry->len)
8413f7de037SJosef Bacik );
8423f7de037SJosef Bacik 
8433f7de037SJosef Bacik DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent,
8443f7de037SJosef Bacik 
8453f7de037SJosef Bacik 	TP_PROTO(struct btrfs_root *root,
8463f7de037SJosef Bacik 		 struct btrfs_block_group_cache *block_group, u64 start,
8473f7de037SJosef Bacik 		 u64 len),
8483f7de037SJosef Bacik 
8493f7de037SJosef Bacik 	TP_ARGS(root, block_group, start, len)
8503f7de037SJosef Bacik );
8513f7de037SJosef Bacik 
8523f7de037SJosef Bacik DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
8533f7de037SJosef Bacik 
8543f7de037SJosef Bacik 	TP_PROTO(struct btrfs_root *root,
8553f7de037SJosef Bacik 		 struct btrfs_block_group_cache *block_group, u64 start,
8563f7de037SJosef Bacik 		 u64 len),
8573f7de037SJosef Bacik 
8583f7de037SJosef Bacik 	TP_ARGS(root, block_group, start, len)
8593f7de037SJosef Bacik );
8603f7de037SJosef Bacik 
8613f7de037SJosef Bacik TRACE_EVENT(btrfs_find_cluster,
8623f7de037SJosef Bacik 
8633f7de037SJosef Bacik 	TP_PROTO(struct btrfs_block_group_cache *block_group, u64 start,
8643f7de037SJosef Bacik 		 u64 bytes, u64 empty_size, u64 min_bytes),
8653f7de037SJosef Bacik 
8663f7de037SJosef Bacik 	TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
8673f7de037SJosef Bacik 
8683f7de037SJosef Bacik 	TP_STRUCT__entry(
8693f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
8703f7de037SJosef Bacik 		__field(	u64,	flags			)
8713f7de037SJosef Bacik 		__field(	u64,	start			)
8723f7de037SJosef Bacik 		__field(	u64,	bytes			)
8733f7de037SJosef Bacik 		__field(	u64,	empty_size		)
8743f7de037SJosef Bacik 		__field(	u64,	min_bytes		)
8753f7de037SJosef Bacik 	),
8763f7de037SJosef Bacik 
8773f7de037SJosef Bacik 	TP_fast_assign(
8783f7de037SJosef Bacik 		__entry->bg_objectid	= block_group->key.objectid;
8793f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
8803f7de037SJosef Bacik 		__entry->start		= start;
8813f7de037SJosef Bacik 		__entry->bytes		= bytes;
8823f7de037SJosef Bacik 		__entry->empty_size	= empty_size;
8833f7de037SJosef Bacik 		__entry->min_bytes	= min_bytes;
8843f7de037SJosef Bacik 	),
8853f7de037SJosef Bacik 
8863f7de037SJosef Bacik 	TP_printk("block_group = %Lu, flags = %Lu(%s), start = %Lu, len = %Lu,"
8873f7de037SJosef Bacik 		  " empty_size = %Lu, min_bytes = %Lu", __entry->bg_objectid,
8883f7de037SJosef Bacik 		  __entry->flags,
8893f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
8903f7de037SJosef Bacik 				BTRFS_GROUP_FLAGS), __entry->start,
8913f7de037SJosef Bacik 		  __entry->bytes, __entry->empty_size,  __entry->min_bytes)
8923f7de037SJosef Bacik );
8933f7de037SJosef Bacik 
8943f7de037SJosef Bacik TRACE_EVENT(btrfs_failed_cluster_setup,
8953f7de037SJosef Bacik 
8963f7de037SJosef Bacik 	TP_PROTO(struct btrfs_block_group_cache *block_group),
8973f7de037SJosef Bacik 
8983f7de037SJosef Bacik 	TP_ARGS(block_group),
8993f7de037SJosef Bacik 
9003f7de037SJosef Bacik 	TP_STRUCT__entry(
9013f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
9023f7de037SJosef Bacik 	),
9033f7de037SJosef Bacik 
9043f7de037SJosef Bacik 	TP_fast_assign(
9053f7de037SJosef Bacik 		__entry->bg_objectid	= block_group->key.objectid;
9063f7de037SJosef Bacik 	),
9073f7de037SJosef Bacik 
9083f7de037SJosef Bacik 	TP_printk("block_group = %Lu", __entry->bg_objectid)
9093f7de037SJosef Bacik );
9103f7de037SJosef Bacik 
9113f7de037SJosef Bacik TRACE_EVENT(btrfs_setup_cluster,
9123f7de037SJosef Bacik 
9133f7de037SJosef Bacik 	TP_PROTO(struct btrfs_block_group_cache *block_group,
9143f7de037SJosef Bacik 		 struct btrfs_free_cluster *cluster, u64 size, int bitmap),
9153f7de037SJosef Bacik 
9163f7de037SJosef Bacik 	TP_ARGS(block_group, cluster, size, bitmap),
9173f7de037SJosef Bacik 
9183f7de037SJosef Bacik 	TP_STRUCT__entry(
9193f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
9203f7de037SJosef Bacik 		__field(	u64,	flags			)
9213f7de037SJosef Bacik 		__field(	u64,	start			)
9223f7de037SJosef Bacik 		__field(	u64,	max_size		)
9233f7de037SJosef Bacik 		__field(	u64,	size			)
9243f7de037SJosef Bacik 		__field(	int,	bitmap			)
9253f7de037SJosef Bacik 	),
9263f7de037SJosef Bacik 
9273f7de037SJosef Bacik 	TP_fast_assign(
9283f7de037SJosef Bacik 		__entry->bg_objectid	= block_group->key.objectid;
9293f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
9303f7de037SJosef Bacik 		__entry->start		= cluster->window_start;
9313f7de037SJosef Bacik 		__entry->max_size	= cluster->max_size;
9323f7de037SJosef Bacik 		__entry->size		= size;
9333f7de037SJosef Bacik 		__entry->bitmap		= bitmap;
9343f7de037SJosef Bacik 	),
9353f7de037SJosef Bacik 
9363f7de037SJosef Bacik 	TP_printk("block_group = %Lu, flags = %Lu(%s), window_start = %Lu, "
9373f7de037SJosef Bacik 		  "size = %Lu, max_size = %Lu, bitmap = %d",
9383f7de037SJosef Bacik 		  __entry->bg_objectid,
9393f7de037SJosef Bacik 		  __entry->flags,
9403f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
9413f7de037SJosef Bacik 				BTRFS_GROUP_FLAGS), __entry->start,
9423f7de037SJosef Bacik 		  __entry->size, __entry->max_size, __entry->bitmap)
9433f7de037SJosef Bacik );
9443f7de037SJosef Bacik 
945143bede5SJeff Mahoney struct extent_state;
946143bede5SJeff Mahoney TRACE_EVENT(alloc_extent_state,
947143bede5SJeff Mahoney 
948143bede5SJeff Mahoney 	TP_PROTO(struct extent_state *state, gfp_t mask, unsigned long IP),
949143bede5SJeff Mahoney 
950143bede5SJeff Mahoney 	TP_ARGS(state, mask, IP),
951143bede5SJeff Mahoney 
952143bede5SJeff Mahoney 	TP_STRUCT__entry(
953143bede5SJeff Mahoney 		__field(struct extent_state *, state)
954143bede5SJeff Mahoney 		__field(gfp_t, mask)
955143bede5SJeff Mahoney 		__field(unsigned long, ip)
956143bede5SJeff Mahoney 	),
957143bede5SJeff Mahoney 
958143bede5SJeff Mahoney 	TP_fast_assign(
959143bede5SJeff Mahoney 		__entry->state	= state,
960143bede5SJeff Mahoney 		__entry->mask	= mask,
961143bede5SJeff Mahoney 		__entry->ip	= IP
962143bede5SJeff Mahoney 	),
963143bede5SJeff Mahoney 
964143bede5SJeff Mahoney 	TP_printk("state=%p; mask = %s; caller = %pF", __entry->state,
965143bede5SJeff Mahoney 		  show_gfp_flags(__entry->mask), (void *)__entry->ip)
966143bede5SJeff Mahoney );
967143bede5SJeff Mahoney 
968143bede5SJeff Mahoney TRACE_EVENT(free_extent_state,
969143bede5SJeff Mahoney 
970143bede5SJeff Mahoney 	TP_PROTO(struct extent_state *state, unsigned long IP),
971143bede5SJeff Mahoney 
972143bede5SJeff Mahoney 	TP_ARGS(state, IP),
973143bede5SJeff Mahoney 
974143bede5SJeff Mahoney 	TP_STRUCT__entry(
975143bede5SJeff Mahoney 		__field(struct extent_state *, state)
976143bede5SJeff Mahoney 		__field(unsigned long, ip)
977143bede5SJeff Mahoney 	),
978143bede5SJeff Mahoney 
979143bede5SJeff Mahoney 	TP_fast_assign(
980143bede5SJeff Mahoney 		__entry->state	= state,
981143bede5SJeff Mahoney 		__entry->ip = IP
982143bede5SJeff Mahoney 	),
983143bede5SJeff Mahoney 
984143bede5SJeff Mahoney 	TP_printk(" state=%p; caller = %pF", __entry->state,
985143bede5SJeff Mahoney 		  (void *)__entry->ip)
986143bede5SJeff Mahoney );
987143bede5SJeff Mahoney 
98852483bc2SQu Wenruo DECLARE_EVENT_CLASS(btrfs__work,
98952483bc2SQu Wenruo 
99052483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
99152483bc2SQu Wenruo 
99252483bc2SQu Wenruo 	TP_ARGS(work),
99352483bc2SQu Wenruo 
99452483bc2SQu Wenruo 	TP_STRUCT__entry(
99552483bc2SQu Wenruo 		__field(	void *,	work			)
99652483bc2SQu Wenruo 		__field(	void *, wq			)
99752483bc2SQu Wenruo 		__field(	void *,	func			)
99852483bc2SQu Wenruo 		__field(	void *,	ordered_func		)
99952483bc2SQu Wenruo 		__field(	void *,	ordered_free		)
1000b38a6258SLiu Bo 		__field(	void *,	normal_work		)
100152483bc2SQu Wenruo 	),
100252483bc2SQu Wenruo 
100352483bc2SQu Wenruo 	TP_fast_assign(
100452483bc2SQu Wenruo 		__entry->work		= work;
100552483bc2SQu Wenruo 		__entry->wq		= work->wq;
100652483bc2SQu Wenruo 		__entry->func		= work->func;
100752483bc2SQu Wenruo 		__entry->ordered_func	= work->ordered_func;
100852483bc2SQu Wenruo 		__entry->ordered_free	= work->ordered_free;
1009b38a6258SLiu Bo 		__entry->normal_work	= &work->normal_work;
101052483bc2SQu Wenruo 	),
101152483bc2SQu Wenruo 
1012b38a6258SLiu Bo 	TP_printk("work=%p (normal_work=%p), wq=%p, func=%p, ordered_func=%p,"
1013b38a6258SLiu Bo 		  " ordered_free=%p",
1014b38a6258SLiu Bo 		  __entry->work, __entry->normal_work, __entry->wq,
1015b38a6258SLiu Bo 		   __entry->func, __entry->ordered_func, __entry->ordered_free)
101652483bc2SQu Wenruo );
101752483bc2SQu Wenruo 
101852483bc2SQu Wenruo /* For situiations that the work is freed */
101952483bc2SQu Wenruo DECLARE_EVENT_CLASS(btrfs__work__done,
102052483bc2SQu Wenruo 
102152483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
102252483bc2SQu Wenruo 
102352483bc2SQu Wenruo 	TP_ARGS(work),
102452483bc2SQu Wenruo 
102552483bc2SQu Wenruo 	TP_STRUCT__entry(
102652483bc2SQu Wenruo 		__field(	void *,	work			)
102752483bc2SQu Wenruo 	),
102852483bc2SQu Wenruo 
102952483bc2SQu Wenruo 	TP_fast_assign(
103052483bc2SQu Wenruo 		__entry->work		= work;
103152483bc2SQu Wenruo 	),
103252483bc2SQu Wenruo 
103352483bc2SQu Wenruo 	TP_printk("work->%p", __entry->work)
103452483bc2SQu Wenruo );
103552483bc2SQu Wenruo 
103652483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_work_queued,
103752483bc2SQu Wenruo 
103852483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
103952483bc2SQu Wenruo 
104052483bc2SQu Wenruo 	TP_ARGS(work)
104152483bc2SQu Wenruo );
104252483bc2SQu Wenruo 
104352483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_work_sched,
104452483bc2SQu Wenruo 
104552483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
104652483bc2SQu Wenruo 
104752483bc2SQu Wenruo 	TP_ARGS(work)
104852483bc2SQu Wenruo );
104952483bc2SQu Wenruo 
105052483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_normal_work_done,
105152483bc2SQu Wenruo 
105252483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
105352483bc2SQu Wenruo 
105452483bc2SQu Wenruo 	TP_ARGS(work)
105552483bc2SQu Wenruo );
105652483bc2SQu Wenruo 
105752483bc2SQu Wenruo DEFINE_EVENT(btrfs__work__done, btrfs_all_work_done,
105852483bc2SQu Wenruo 
105952483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
106052483bc2SQu Wenruo 
106152483bc2SQu Wenruo 	TP_ARGS(work)
106252483bc2SQu Wenruo );
106352483bc2SQu Wenruo 
106452483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_ordered_sched,
106552483bc2SQu Wenruo 
106652483bc2SQu Wenruo 	TP_PROTO(struct btrfs_work *work),
106752483bc2SQu Wenruo 
106852483bc2SQu Wenruo 	TP_ARGS(work)
106952483bc2SQu Wenruo );
107052483bc2SQu Wenruo 
1071c3a46891SQu Wenruo DECLARE_EVENT_CLASS(btrfs__workqueue,
1072c3a46891SQu Wenruo 
1073c3a46891SQu Wenruo 	TP_PROTO(struct __btrfs_workqueue *wq, const char *name, int high),
1074c3a46891SQu Wenruo 
1075c3a46891SQu Wenruo 	TP_ARGS(wq, name, high),
1076c3a46891SQu Wenruo 
1077c3a46891SQu Wenruo 	TP_STRUCT__entry(
1078c3a46891SQu Wenruo 		__field(	void *,	wq			)
1079c3a46891SQu Wenruo 		__string(	name,	name			)
1080c3a46891SQu Wenruo 		__field(	int ,	high			)
1081c3a46891SQu Wenruo 	),
1082c3a46891SQu Wenruo 
1083c3a46891SQu Wenruo 	TP_fast_assign(
1084c3a46891SQu Wenruo 		__entry->wq		= wq;
1085c3a46891SQu Wenruo 		__assign_str(name, name);
1086c3a46891SQu Wenruo 		__entry->high		= high;
1087c3a46891SQu Wenruo 	),
1088c3a46891SQu Wenruo 
1089c3a46891SQu Wenruo 	TP_printk("name=%s%s, wq=%p", __get_str(name),
1090c3a46891SQu Wenruo 		  __print_flags(__entry->high, "",
1091c3a46891SQu Wenruo 				{(WQ_HIGHPRI),	"-high"}),
1092c3a46891SQu Wenruo 		  __entry->wq)
1093c3a46891SQu Wenruo );
1094c3a46891SQu Wenruo 
1095c3a46891SQu Wenruo DEFINE_EVENT(btrfs__workqueue, btrfs_workqueue_alloc,
1096c3a46891SQu Wenruo 
1097c3a46891SQu Wenruo 	TP_PROTO(struct __btrfs_workqueue *wq, const char *name, int high),
1098c3a46891SQu Wenruo 
1099c3a46891SQu Wenruo 	TP_ARGS(wq, name, high)
1100c3a46891SQu Wenruo );
1101c3a46891SQu Wenruo 
1102c3a46891SQu Wenruo DECLARE_EVENT_CLASS(btrfs__workqueue_done,
1103c3a46891SQu Wenruo 
1104c3a46891SQu Wenruo 	TP_PROTO(struct __btrfs_workqueue *wq),
1105c3a46891SQu Wenruo 
1106c3a46891SQu Wenruo 	TP_ARGS(wq),
1107c3a46891SQu Wenruo 
1108c3a46891SQu Wenruo 	TP_STRUCT__entry(
1109c3a46891SQu Wenruo 		__field(	void *,	wq			)
1110c3a46891SQu Wenruo 	),
1111c3a46891SQu Wenruo 
1112c3a46891SQu Wenruo 	TP_fast_assign(
1113c3a46891SQu Wenruo 		__entry->wq		= wq;
1114c3a46891SQu Wenruo 	),
1115c3a46891SQu Wenruo 
1116c3a46891SQu Wenruo 	TP_printk("wq=%p", __entry->wq)
1117c3a46891SQu Wenruo );
1118c3a46891SQu Wenruo 
1119c3a46891SQu Wenruo DEFINE_EVENT(btrfs__workqueue_done, btrfs_workqueue_destroy,
1120c3a46891SQu Wenruo 
1121c3a46891SQu Wenruo 	TP_PROTO(struct __btrfs_workqueue *wq),
1122c3a46891SQu Wenruo 
1123c3a46891SQu Wenruo 	TP_ARGS(wq)
1124c3a46891SQu Wenruo );
112552483bc2SQu Wenruo 
1126d3982100SMark Fasheh #define show_oper_type(type)						\
1127d3982100SMark Fasheh 	__print_symbolic(type,						\
1128d3982100SMark Fasheh 		{ BTRFS_QGROUP_OPER_ADD_EXCL, 	"OPER_ADD_EXCL" },	\
1129d3982100SMark Fasheh 		{ BTRFS_QGROUP_OPER_ADD_SHARED, "OPER_ADD_SHARED" },	\
1130d3982100SMark Fasheh 		{ BTRFS_QGROUP_OPER_SUB_EXCL, 	"OPER_SUB_EXCL" },	\
1131d3982100SMark Fasheh 		{ BTRFS_QGROUP_OPER_SUB_SHARED,	"OPER_SUB_SHARED" })
1132d3982100SMark Fasheh 
1133d3982100SMark Fasheh DECLARE_EVENT_CLASS(btrfs_qgroup_oper,
1134d3982100SMark Fasheh 
1135d3982100SMark Fasheh 	TP_PROTO(struct btrfs_qgroup_operation *oper),
1136d3982100SMark Fasheh 
1137d3982100SMark Fasheh 	TP_ARGS(oper),
1138d3982100SMark Fasheh 
1139d3982100SMark Fasheh 	TP_STRUCT__entry(
1140d3982100SMark Fasheh 		__field(	u64,  ref_root		)
1141d3982100SMark Fasheh 		__field(	u64,  bytenr		)
1142d3982100SMark Fasheh 		__field(	u64,  num_bytes		)
1143d3982100SMark Fasheh 		__field(	u64,  seq		)
1144d3982100SMark Fasheh 		__field(	int,  type		)
1145d3982100SMark Fasheh 		__field(	u64,  elem_seq		)
1146d3982100SMark Fasheh 	),
1147d3982100SMark Fasheh 
1148d3982100SMark Fasheh 	TP_fast_assign(
1149d3982100SMark Fasheh 		__entry->ref_root	= oper->ref_root;
1150d3982100SMark Fasheh 		__entry->bytenr		= oper->bytenr,
1151d3982100SMark Fasheh 		__entry->num_bytes	= oper->num_bytes;
1152d3982100SMark Fasheh 		__entry->seq 		= oper->seq;
1153d3982100SMark Fasheh 		__entry->type		= oper->type;
1154d3982100SMark Fasheh 		__entry->elem_seq	= oper->elem.seq;
1155d3982100SMark Fasheh 	),
1156d3982100SMark Fasheh 
1157d3982100SMark Fasheh 	TP_printk("ref_root = %llu, bytenr = %llu, num_bytes = %llu, "
1158d3982100SMark Fasheh 		  "seq = %llu, elem.seq = %llu, type = %s",
1159d3982100SMark Fasheh 		  (unsigned long long)__entry->ref_root,
1160d3982100SMark Fasheh 		  (unsigned long long)__entry->bytenr,
1161d3982100SMark Fasheh 		  (unsigned long long)__entry->num_bytes,
1162d3982100SMark Fasheh 		  (unsigned long long)__entry->seq,
1163d3982100SMark Fasheh 		  (unsigned long long)__entry->elem_seq,
1164d3982100SMark Fasheh 		  show_oper_type(__entry->type))
1165d3982100SMark Fasheh );
1166d3982100SMark Fasheh 
1167d3982100SMark Fasheh DEFINE_EVENT(btrfs_qgroup_oper, btrfs_qgroup_account,
1168d3982100SMark Fasheh 
1169d3982100SMark Fasheh 	TP_PROTO(struct btrfs_qgroup_operation *oper),
1170d3982100SMark Fasheh 
1171d3982100SMark Fasheh 	TP_ARGS(oper)
1172d3982100SMark Fasheh );
1173d3982100SMark Fasheh 
1174d3982100SMark Fasheh DEFINE_EVENT(btrfs_qgroup_oper, btrfs_qgroup_record_ref,
1175d3982100SMark Fasheh 
1176d3982100SMark Fasheh 	TP_PROTO(struct btrfs_qgroup_operation *oper),
1177d3982100SMark Fasheh 
1178d3982100SMark Fasheh 	TP_ARGS(oper)
1179d3982100SMark Fasheh );
1180d3982100SMark Fasheh 
11811abe9b8aSliubo #endif /* _TRACE_BTRFS_H */
11821abe9b8aSliubo 
11831abe9b8aSliubo /* This part must be outside protection */
11841abe9b8aSliubo #include <trace/define_trace.h>
1185