xref: /openbmc/linux/include/trace/events/btrfs.h (revision 03fe78cc)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
21abe9b8aSliubo #undef TRACE_SYSTEM
31abe9b8aSliubo #define TRACE_SYSTEM btrfs
41abe9b8aSliubo 
51abe9b8aSliubo #if !defined(_TRACE_BTRFS_H) || defined(TRACE_HEADER_MULTI_READ)
61abe9b8aSliubo #define _TRACE_BTRFS_H
71abe9b8aSliubo 
81abe9b8aSliubo #include <linux/writeback.h>
91abe9b8aSliubo #include <linux/tracepoint.h>
10420adbe9SVlastimil Babka #include <trace/events/mmflags.h>
111abe9b8aSliubo 
121abe9b8aSliubo struct btrfs_root;
131abe9b8aSliubo struct btrfs_fs_info;
141abe9b8aSliubo struct btrfs_inode;
151abe9b8aSliubo struct extent_map;
1609ed2f16SLiu Bo struct btrfs_file_extent_item;
171abe9b8aSliubo struct btrfs_ordered_extent;
181abe9b8aSliubo struct btrfs_delayed_ref_node;
191abe9b8aSliubo struct btrfs_delayed_tree_ref;
201abe9b8aSliubo struct btrfs_delayed_data_ref;
211abe9b8aSliubo struct btrfs_delayed_ref_head;
2232da5386SDavid Sterba struct btrfs_block_group;
233f7de037SJosef Bacik struct btrfs_free_cluster;
241abe9b8aSliubo struct map_lookup;
251abe9b8aSliubo struct extent_buffer;
2652483bc2SQu Wenruo struct btrfs_work;
27c3a46891SQu Wenruo struct __btrfs_workqueue;
280f5dcf8dSMark Fasheh struct btrfs_qgroup_extent_record;
293159fe7bSQu Wenruo struct btrfs_qgroup;
30a1d19847SQu Wenruo struct extent_io_tree;
3100142756SJeff Mahoney struct prelim_ref;
32480b9b4dSQu Wenruo struct btrfs_space_info;
331abe9b8aSliubo 
341abe9b8aSliubo #define show_ref_type(type)						\
351abe9b8aSliubo 	__print_symbolic(type,						\
361abe9b8aSliubo 		{ BTRFS_TREE_BLOCK_REF_KEY, 	"TREE_BLOCK_REF" },	\
371abe9b8aSliubo 		{ BTRFS_EXTENT_DATA_REF_KEY, 	"EXTENT_DATA_REF" },	\
381abe9b8aSliubo 		{ BTRFS_EXTENT_REF_V0_KEY, 	"EXTENT_REF_V0" },	\
391abe9b8aSliubo 		{ BTRFS_SHARED_BLOCK_REF_KEY, 	"SHARED_BLOCK_REF" },	\
401abe9b8aSliubo 		{ BTRFS_SHARED_DATA_REF_KEY, 	"SHARED_DATA_REF" })
411abe9b8aSliubo 
421abe9b8aSliubo #define __show_root_type(obj)						\
437f34b746Sliubo 	__print_symbolic_u64(obj,					\
441abe9b8aSliubo 		{ BTRFS_ROOT_TREE_OBJECTID, 	"ROOT_TREE"	},	\
451abe9b8aSliubo 		{ BTRFS_EXTENT_TREE_OBJECTID, 	"EXTENT_TREE"	},	\
461abe9b8aSliubo 		{ BTRFS_CHUNK_TREE_OBJECTID, 	"CHUNK_TREE"	},	\
471abe9b8aSliubo 		{ BTRFS_DEV_TREE_OBJECTID, 	"DEV_TREE"	},	\
481abe9b8aSliubo 		{ BTRFS_FS_TREE_OBJECTID, 	"FS_TREE"	},	\
491abe9b8aSliubo 		{ BTRFS_ROOT_TREE_DIR_OBJECTID, "ROOT_TREE_DIR"	},	\
501abe9b8aSliubo 		{ BTRFS_CSUM_TREE_OBJECTID, 	"CSUM_TREE"	},	\
511abe9b8aSliubo 		{ BTRFS_TREE_LOG_OBJECTID,	"TREE_LOG"	},	\
52e112e2b4SLiu Bo 		{ BTRFS_QUOTA_TREE_OBJECTID,	"QUOTA_TREE"	},	\
531abe9b8aSliubo 		{ BTRFS_TREE_RELOC_OBJECTID,	"TREE_RELOC"	},	\
54208acb8cSOmar Sandoval 		{ BTRFS_UUID_TREE_OBJECTID,	"UUID_TREE"	},	\
55208acb8cSOmar Sandoval 		{ BTRFS_FREE_SPACE_TREE_OBJECTID, "FREE_SPACE_TREE" },	\
561abe9b8aSliubo 		{ BTRFS_DATA_RELOC_TREE_OBJECTID, "DATA_RELOC_TREE" })
571abe9b8aSliubo 
581abe9b8aSliubo #define show_root_type(obj)						\
591abe9b8aSliubo 	obj, ((obj >= BTRFS_DATA_RELOC_TREE_OBJECTID) ||		\
60fb57dc81SLiu Bo 	      (obj >= BTRFS_ROOT_TREE_OBJECTID &&			\
61e112e2b4SLiu Bo 	       obj <= BTRFS_QUOTA_TREE_OBJECTID)) ? __show_root_type(obj) : "-"
621abe9b8aSliubo 
635bca2c95SNikolay Borisov #define FLUSH_ACTIONS								\
645bca2c95SNikolay Borisov 	EM( BTRFS_RESERVE_NO_FLUSH,		"BTRFS_RESERVE_NO_FLUSH")	\
655bca2c95SNikolay Borisov 	EM( BTRFS_RESERVE_FLUSH_LIMIT,		"BTRFS_RESERVE_FLUSH_LIMIT")	\
665bca2c95SNikolay Borisov 	EM( BTRFS_RESERVE_FLUSH_ALL,		"BTRFS_RESERVE_FLUSH_ALL")	\
675bca2c95SNikolay Borisov 	EMe(BTRFS_RESERVE_FLUSH_ALL_STEAL,	"BTRFS_RESERVE_FLUSH_ALL_STEAL")
685bca2c95SNikolay Borisov 
690840dd28SNikolay Borisov #define FI_TYPES							\
700840dd28SNikolay Borisov 	EM( BTRFS_FILE_EXTENT_INLINE,		"INLINE")		\
710840dd28SNikolay Borisov 	EM( BTRFS_FILE_EXTENT_REG,		"REG")			\
720840dd28SNikolay Borisov 	EMe(BTRFS_FILE_EXTENT_PREALLOC,		"PREALLOC")
730840dd28SNikolay Borisov 
741cb1f0b2SNikolay Borisov #define QGROUP_RSV_TYPES						\
751cb1f0b2SNikolay Borisov 	EM( BTRFS_QGROUP_RSV_DATA,		"DATA")			\
761cb1f0b2SNikolay Borisov 	EM( BTRFS_QGROUP_RSV_META_PERTRANS,	"META_PERTRANS")	\
771cb1f0b2SNikolay Borisov 	EMe(BTRFS_QGROUP_RSV_META_PREALLOC,	"META_PREALLOC")
781cb1f0b2SNikolay Borisov 
79c92bb304SNikolay Borisov #define IO_TREE_OWNER						    \
80c92bb304SNikolay Borisov 	EM( IO_TREE_FS_PINNED_EXTENTS, 	  "PINNED_EXTENTS")	    \
81c92bb304SNikolay Borisov 	EM( IO_TREE_FS_EXCLUDED_EXTENTS,  "EXCLUDED_EXTENTS")	    \
822c53a14dSQu Wenruo 	EM( IO_TREE_BTREE_INODE_IO,	  "BTREE_INODE_IO")	    \
83c92bb304SNikolay Borisov 	EM( IO_TREE_INODE_IO,		  "INODE_IO")		    \
84c92bb304SNikolay Borisov 	EM( IO_TREE_INODE_IO_FAILURE,	  "INODE_IO_FAILURE")	    \
85c92bb304SNikolay Borisov 	EM( IO_TREE_RELOC_BLOCKS,	  "RELOC_BLOCKS")	    \
86c92bb304SNikolay Borisov 	EM( IO_TREE_TRANS_DIRTY_PAGES,	  "TRANS_DIRTY_PAGES")      \
87c92bb304SNikolay Borisov 	EM( IO_TREE_ROOT_DIRTY_LOG_PAGES, "ROOT_DIRTY_LOG_PAGES")   \
88c92bb304SNikolay Borisov 	EM( IO_TREE_INODE_FILE_EXTENT,	  "INODE_FILE_EXTENT")      \
89c92bb304SNikolay Borisov 	EM( IO_TREE_LOG_CSUM_RANGE,	  "LOG_CSUM_RANGE")         \
90c92bb304SNikolay Borisov 	EMe(IO_TREE_SELFTEST,		  "SELFTEST")
91c92bb304SNikolay Borisov 
92f0cdd15cSNikolay Borisov #define FLUSH_STATES							\
93f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_ITEMS_NR,	"FLUSH_DELAYED_ITEMS_NR")	\
94f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_ITEMS,	"FLUSH_DELAYED_ITEMS")		\
95f0cdd15cSNikolay Borisov 	EM( FLUSH_DELALLOC,		"FLUSH_DELALLOC")		\
96f0cdd15cSNikolay Borisov 	EM( FLUSH_DELALLOC_WAIT,	"FLUSH_DELALLOC_WAIT")		\
97*03fe78ccSJosef Bacik 	EM( FLUSH_DELALLOC_FULL,	"FLUSH_DELALLOC_FULL")		\
98f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_REFS_NR,	"FLUSH_DELAYED_REFS_NR")	\
99f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_REFS,		"FLUSH_ELAYED_REFS")		\
100f0cdd15cSNikolay Borisov 	EM( ALLOC_CHUNK,		"ALLOC_CHUNK")			\
101f0cdd15cSNikolay Borisov 	EM( ALLOC_CHUNK_FORCE,		"ALLOC_CHUNK_FORCE")		\
102f0cdd15cSNikolay Borisov 	EM( RUN_DELAYED_IPUTS,		"RUN_DELAYED_IPUTS")		\
103c416a30cSJosef Bacik 	EMe(COMMIT_TRANS,		"COMMIT_TRANS")
104f0cdd15cSNikolay Borisov 
1055bca2c95SNikolay Borisov /*
1065bca2c95SNikolay Borisov  * First define the enums in the above macros to be exported to userspace via
1075bca2c95SNikolay Borisov  * TRACE_DEFINE_ENUM().
1085bca2c95SNikolay Borisov  */
1095bca2c95SNikolay Borisov 
1100840dd28SNikolay Borisov #undef EM
1110840dd28SNikolay Borisov #undef EMe
1120840dd28SNikolay Borisov #define EM(a, b)	TRACE_DEFINE_ENUM(a);
1130840dd28SNikolay Borisov #define EMe(a, b)	TRACE_DEFINE_ENUM(a);
1140840dd28SNikolay Borisov 
1155bca2c95SNikolay Borisov FLUSH_ACTIONS
1160840dd28SNikolay Borisov FI_TYPES
1171cb1f0b2SNikolay Borisov QGROUP_RSV_TYPES
118c92bb304SNikolay Borisov IO_TREE_OWNER
119f0cdd15cSNikolay Borisov FLUSH_STATES
1200840dd28SNikolay Borisov 
1215bca2c95SNikolay Borisov /*
1225bca2c95SNikolay Borisov  * Now redefine the EM and EMe macros to map the enums to the strings that will
1235bca2c95SNikolay Borisov  * be printed in the output
1245bca2c95SNikolay Borisov  */
1255bca2c95SNikolay Borisov 
1260840dd28SNikolay Borisov #undef EM
1270840dd28SNikolay Borisov #undef EMe
1280840dd28SNikolay Borisov #define EM(a, b)        {a, b},
1290840dd28SNikolay Borisov #define EMe(a, b)       {a, b}
13009ed2f16SLiu Bo 
131a1d19847SQu Wenruo 
1323f7de037SJosef Bacik #define BTRFS_GROUP_FLAGS	\
1333f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_DATA,	"DATA"},	\
1343f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_SYSTEM,	"SYSTEM"},	\
1353f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_METADATA,	"METADATA"},	\
1363f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_RAID0,	"RAID0"}, 	\
1373f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_RAID1,	"RAID1"}, 	\
1383f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_DUP,	"DUP"}, 	\
139e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID10,	"RAID10"}, 	\
140e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID5,	"RAID5"},	\
141e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID6,	"RAID6"}
1423f7de037SJosef Bacik 
143a1d19847SQu Wenruo #define EXTENT_FLAGS						\
144a1d19847SQu Wenruo 	{ EXTENT_DIRTY,			"DIRTY"},		\
145a1d19847SQu Wenruo 	{ EXTENT_UPTODATE,		"UPTODATE"},		\
146a1d19847SQu Wenruo 	{ EXTENT_LOCKED,		"LOCKED"},		\
147a1d19847SQu Wenruo 	{ EXTENT_NEW,			"NEW"},			\
148a1d19847SQu Wenruo 	{ EXTENT_DELALLOC,		"DELALLOC"},		\
149a1d19847SQu Wenruo 	{ EXTENT_DEFRAG,		"DEFRAG"},		\
150a1d19847SQu Wenruo 	{ EXTENT_BOUNDARY,		"BOUNDARY"},		\
151a1d19847SQu Wenruo 	{ EXTENT_NODATASUM,		"NODATASUM"},		\
152a1d19847SQu Wenruo 	{ EXTENT_CLEAR_META_RESV,	"CLEAR_META_RESV"},	\
153a1d19847SQu Wenruo 	{ EXTENT_NEED_WAIT,		"NEED_WAIT"},		\
154a1d19847SQu Wenruo 	{ EXTENT_DAMAGED,		"DAMAGED"},		\
155a1d19847SQu Wenruo 	{ EXTENT_NORESERVE,		"NORESERVE"},		\
156a1d19847SQu Wenruo 	{ EXTENT_QGROUP_RESERVED,	"QGROUP_RESERVED"},	\
157a1d19847SQu Wenruo 	{ EXTENT_CLEAR_DATA_RESV,	"CLEAR_DATA_RESV"},	\
158a1d19847SQu Wenruo 	{ EXTENT_DELALLOC_NEW,		"DELALLOC_NEW"}
159a1d19847SQu Wenruo 
160b94417eaSAnand Jain #define BTRFS_FSID_SIZE 16
161b94417eaSAnand Jain #define TP_STRUCT__entry_fsid __array(u8, fsid, BTRFS_FSID_SIZE)
162bc074524SJeff Mahoney 
163bc074524SJeff Mahoney #define TP_fast_assign_fsid(fs_info)					\
164a1d19847SQu Wenruo ({									\
165a1d19847SQu Wenruo 	if (fs_info)							\
166a1d19847SQu Wenruo 		memcpy(__entry->fsid, fs_info->fs_devices->fsid,	\
167a1d19847SQu Wenruo 		       BTRFS_FSID_SIZE);				\
168a1d19847SQu Wenruo 	else								\
169a1d19847SQu Wenruo 		memset(__entry->fsid, 0, BTRFS_FSID_SIZE);		\
170a1d19847SQu Wenruo })
171bc074524SJeff Mahoney 
172bc074524SJeff Mahoney #define TP_STRUCT__entry_btrfs(args...)					\
173bc074524SJeff Mahoney 	TP_STRUCT__entry(						\
174bc074524SJeff Mahoney 		TP_STRUCT__entry_fsid					\
175bc074524SJeff Mahoney 		args)
176bc074524SJeff Mahoney #define TP_fast_assign_btrfs(fs_info, args...)				\
177bc074524SJeff Mahoney 	TP_fast_assign(							\
178bc074524SJeff Mahoney 		TP_fast_assign_fsid(fs_info);				\
179bc074524SJeff Mahoney 		args)
180bc074524SJeff Mahoney #define TP_printk_btrfs(fmt, args...) \
181bc074524SJeff Mahoney 	TP_printk("%pU: " fmt, __entry->fsid, args)
1828c2a3ca2SJosef Bacik 
1831abe9b8aSliubo TRACE_EVENT(btrfs_transaction_commit,
1841abe9b8aSliubo 
1859a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_root *root),
1861abe9b8aSliubo 
1871abe9b8aSliubo 	TP_ARGS(root),
1881abe9b8aSliubo 
189bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
1901abe9b8aSliubo 		__field(	u64,  generation		)
1911abe9b8aSliubo 		__field(	u64,  root_objectid		)
1921abe9b8aSliubo 	),
1931abe9b8aSliubo 
194bc074524SJeff Mahoney 	TP_fast_assign_btrfs(root->fs_info,
1951abe9b8aSliubo 		__entry->generation	= root->fs_info->generation;
1961abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
1971abe9b8aSliubo 	),
1981abe9b8aSliubo 
19979bcb71aSDavid Sterba 	TP_printk_btrfs("root=%llu(%s) gen=%llu",
2001abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
2018eec8463SDavid Sterba 		  __entry->generation)
2021abe9b8aSliubo );
2031abe9b8aSliubo 
2041abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__inode,
2051abe9b8aSliubo 
2069a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2071abe9b8aSliubo 
2081abe9b8aSliubo 	TP_ARGS(inode),
2091abe9b8aSliubo 
210bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
211f8f8e189SDavid Sterba 		__field(	u64,  ino			)
21294c3f6c6SDavid Sterba 		__field(	u64,  blocks			)
2131abe9b8aSliubo 		__field(	u64,  disk_i_size		)
2141abe9b8aSliubo 		__field(	u64,  generation		)
2151abe9b8aSliubo 		__field(	u64,  last_trans		)
2161abe9b8aSliubo 		__field(	u64,  logged_trans		)
2171abe9b8aSliubo 		__field(	u64,  root_objectid		)
2181abe9b8aSliubo 	),
2191abe9b8aSliubo 
220bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
221f8f8e189SDavid Sterba 		__entry->ino	= btrfs_ino(BTRFS_I(inode));
2221abe9b8aSliubo 		__entry->blocks	= inode->i_blocks;
2231abe9b8aSliubo 		__entry->disk_i_size  = BTRFS_I(inode)->disk_i_size;
2241abe9b8aSliubo 		__entry->generation = BTRFS_I(inode)->generation;
2251abe9b8aSliubo 		__entry->last_trans = BTRFS_I(inode)->last_trans;
2261abe9b8aSliubo 		__entry->logged_trans = BTRFS_I(inode)->logged_trans;
2271abe9b8aSliubo 		__entry->root_objectid =
2281abe9b8aSliubo 				BTRFS_I(inode)->root->root_key.objectid;
2291abe9b8aSliubo 	),
2301abe9b8aSliubo 
231f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) gen=%llu ino=%llu blocks=%llu "
232562a7a07SDavid Sterba 		  "disk_i_size=%llu last_trans=%llu logged_trans=%llu",
2331abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
2348eec8463SDavid Sterba 		  __entry->generation,
2358eec8463SDavid Sterba 		  __entry->ino,
23694c3f6c6SDavid Sterba 		  __entry->blocks,
2378eec8463SDavid Sterba 		  __entry->disk_i_size,
2388eec8463SDavid Sterba 		  __entry->last_trans,
2398eec8463SDavid Sterba 		  __entry->logged_trans)
2401abe9b8aSliubo );
2411abe9b8aSliubo 
2421abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_new,
2431abe9b8aSliubo 
2449a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2451abe9b8aSliubo 
2461abe9b8aSliubo 	TP_ARGS(inode)
2471abe9b8aSliubo );
2481abe9b8aSliubo 
2491abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_request,
2501abe9b8aSliubo 
2519a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2521abe9b8aSliubo 
2531abe9b8aSliubo 	TP_ARGS(inode)
2541abe9b8aSliubo );
2551abe9b8aSliubo 
2561abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_evict,
2571abe9b8aSliubo 
2589a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2591abe9b8aSliubo 
2601abe9b8aSliubo 	TP_ARGS(inode)
2611abe9b8aSliubo );
2621abe9b8aSliubo 
2631abe9b8aSliubo #define __show_map_type(type)						\
2647f34b746Sliubo 	__print_symbolic_u64(type,					\
2651abe9b8aSliubo 		{ EXTENT_MAP_LAST_BYTE, "LAST_BYTE" 	},		\
2661abe9b8aSliubo 		{ EXTENT_MAP_HOLE, 	"HOLE" 		},		\
2671abe9b8aSliubo 		{ EXTENT_MAP_INLINE, 	"INLINE" 	},		\
2681abe9b8aSliubo 		{ EXTENT_MAP_DELALLOC,	"DELALLOC" 	})
2691abe9b8aSliubo 
2701abe9b8aSliubo #define show_map_type(type)			\
2711abe9b8aSliubo 	type, (type >= EXTENT_MAP_LAST_BYTE) ? "-" :  __show_map_type(type)
2721abe9b8aSliubo 
2731abe9b8aSliubo #define show_map_flags(flag)						\
2741abe9b8aSliubo 	__print_flags(flag, "|",					\
275254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_PINNED), 		"PINNED" 	},\
276254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_COMPRESSED), 	"COMPRESSED" 	},\
277254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_PREALLOC), 		"PREALLOC" 	},\
278254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_LOGGING),	 	"LOGGING" 	},\
279254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_FILLING),	 	"FILLING" 	},\
280254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_FS_MAPPING),	"FS_MAPPING"	})
2811abe9b8aSliubo 
2824cd8587cSSteven Rostedt TRACE_EVENT_CONDITION(btrfs_get_extent,
2831abe9b8aSliubo 
2849a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_root *root, const struct btrfs_inode *inode,
2859a35b637SJeff Mahoney 		 const struct extent_map *map),
2861abe9b8aSliubo 
28792a1bf76SLiu Bo 	TP_ARGS(root, inode, map),
2881abe9b8aSliubo 
2894cd8587cSSteven Rostedt 	TP_CONDITION(map),
2904cd8587cSSteven Rostedt 
291bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
2921abe9b8aSliubo 		__field(	u64,  root_objectid	)
29392a1bf76SLiu Bo 		__field(	u64,  ino		)
2941abe9b8aSliubo 		__field(	u64,  start		)
2951abe9b8aSliubo 		__field(	u64,  len		)
2961abe9b8aSliubo 		__field(	u64,  orig_start	)
2971abe9b8aSliubo 		__field(	u64,  block_start	)
2981abe9b8aSliubo 		__field(	u64,  block_len		)
2991abe9b8aSliubo 		__field(	unsigned long,  flags	)
3001abe9b8aSliubo 		__field(	int,  refs		)
3011abe9b8aSliubo 		__field(	unsigned int,  compress_type	)
3021abe9b8aSliubo 	),
3031abe9b8aSliubo 
304bc074524SJeff Mahoney 	TP_fast_assign_btrfs(root->fs_info,
3051abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
30692a1bf76SLiu Bo 		__entry->ino		= btrfs_ino(inode);
3071abe9b8aSliubo 		__entry->start		= map->start;
3081abe9b8aSliubo 		__entry->len		= map->len;
3091abe9b8aSliubo 		__entry->orig_start	= map->orig_start;
3101abe9b8aSliubo 		__entry->block_start	= map->block_start;
3111abe9b8aSliubo 		__entry->block_len	= map->block_len;
3121abe9b8aSliubo 		__entry->flags		= map->flags;
313490b54d6SElena Reshetova 		__entry->refs		= refcount_read(&map->refs);
3141abe9b8aSliubo 		__entry->compress_type	= map->compress_type;
3151abe9b8aSliubo 	),
3161abe9b8aSliubo 
317562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu len=%llu "
318562a7a07SDavid Sterba 		  "orig_start=%llu block_start=%llu(%s) "
319562a7a07SDavid Sterba 		  "block_len=%llu flags=%s refs=%u "
3201abe9b8aSliubo 		  "compress_type=%u",
3211abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
3228eec8463SDavid Sterba 		  __entry->ino,
3238eec8463SDavid Sterba 		  __entry->start,
3248eec8463SDavid Sterba 		  __entry->len,
3258eec8463SDavid Sterba 		  __entry->orig_start,
3261abe9b8aSliubo 		  show_map_type(__entry->block_start),
3278eec8463SDavid Sterba 		  __entry->block_len,
3281abe9b8aSliubo 		  show_map_flags(__entry->flags),
3291abe9b8aSliubo 		  __entry->refs, __entry->compress_type)
3301abe9b8aSliubo );
3311abe9b8aSliubo 
332393da918SLiu Bo TRACE_EVENT(btrfs_handle_em_exist,
333393da918SLiu Bo 
3341d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
335f46b24c9SDavid Sterba 		const struct extent_map *existing, const struct extent_map *map,
336f46b24c9SDavid Sterba 		u64 start, u64 len),
337393da918SLiu Bo 
338f46b24c9SDavid Sterba 	TP_ARGS(fs_info, existing, map, start, len),
339393da918SLiu Bo 
340f46b24c9SDavid Sterba 	TP_STRUCT__entry_btrfs(
341393da918SLiu Bo 		__field(	u64,  e_start		)
342393da918SLiu Bo 		__field(	u64,  e_len		)
343393da918SLiu Bo 		__field(	u64,  map_start		)
344393da918SLiu Bo 		__field(	u64,  map_len		)
345393da918SLiu Bo 		__field(	u64,  start		)
346393da918SLiu Bo 		__field(	u64,  len		)
347393da918SLiu Bo 	),
348393da918SLiu Bo 
349f46b24c9SDavid Sterba 	TP_fast_assign_btrfs(fs_info,
350393da918SLiu Bo 		__entry->e_start	= existing->start;
351393da918SLiu Bo 		__entry->e_len		= existing->len;
352393da918SLiu Bo 		__entry->map_start	= map->start;
353393da918SLiu Bo 		__entry->map_len	= map->len;
354393da918SLiu Bo 		__entry->start		= start;
355393da918SLiu Bo 		__entry->len		= len;
356393da918SLiu Bo 	),
357393da918SLiu Bo 
358f46b24c9SDavid Sterba 	TP_printk_btrfs("start=%llu len=%llu "
359393da918SLiu Bo 		  "existing(start=%llu len=%llu) "
360393da918SLiu Bo 		  "em(start=%llu len=%llu)",
3618eec8463SDavid Sterba 		  __entry->start,
3628eec8463SDavid Sterba 		  __entry->len,
3638eec8463SDavid Sterba 		  __entry->e_start,
3648eec8463SDavid Sterba 		  __entry->e_len,
3658eec8463SDavid Sterba 		  __entry->map_start,
3668eec8463SDavid Sterba 		  __entry->map_len)
367393da918SLiu Bo );
368393da918SLiu Bo 
36909ed2f16SLiu Bo /* file extent item */
37009ed2f16SLiu Bo DECLARE_EVENT_CLASS(btrfs__file_extent_item_regular,
37109ed2f16SLiu Bo 
3721d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
3731d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, u64 start),
37409ed2f16SLiu Bo 
37509ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, start),
37609ed2f16SLiu Bo 
37709ed2f16SLiu Bo 	TP_STRUCT__entry_btrfs(
37809ed2f16SLiu Bo 		__field(	u64,	root_obj	)
37909ed2f16SLiu Bo 		__field(	u64,	ino		)
38009ed2f16SLiu Bo 		__field(	loff_t,	isize		)
38109ed2f16SLiu Bo 		__field(	u64,	disk_isize	)
38209ed2f16SLiu Bo 		__field(	u64,	num_bytes	)
38309ed2f16SLiu Bo 		__field(	u64,	ram_bytes	)
38409ed2f16SLiu Bo 		__field(	u64,	disk_bytenr	)
38509ed2f16SLiu Bo 		__field(	u64,	disk_num_bytes	)
38609ed2f16SLiu Bo 		__field(	u64,	extent_offset	)
38709ed2f16SLiu Bo 		__field(	u8,	extent_type	)
38809ed2f16SLiu Bo 		__field(	u8,	compression	)
38909ed2f16SLiu Bo 		__field(	u64,	extent_start	)
39009ed2f16SLiu Bo 		__field(	u64,	extent_end	)
39109ed2f16SLiu Bo 	),
39209ed2f16SLiu Bo 
39309ed2f16SLiu Bo 	TP_fast_assign_btrfs(bi->root->fs_info,
3944fd786e6SMisono Tomohiro 		__entry->root_obj	= bi->root->root_key.objectid;
39509ed2f16SLiu Bo 		__entry->ino		= btrfs_ino(bi);
39609ed2f16SLiu Bo 		__entry->isize		= bi->vfs_inode.i_size;
39709ed2f16SLiu Bo 		__entry->disk_isize	= bi->disk_i_size;
39809ed2f16SLiu Bo 		__entry->num_bytes	= btrfs_file_extent_num_bytes(l, fi);
39909ed2f16SLiu Bo 		__entry->ram_bytes	= btrfs_file_extent_ram_bytes(l, fi);
40009ed2f16SLiu Bo 		__entry->disk_bytenr	= btrfs_file_extent_disk_bytenr(l, fi);
40109ed2f16SLiu Bo 		__entry->disk_num_bytes	= btrfs_file_extent_disk_num_bytes(l, fi);
40209ed2f16SLiu Bo 		__entry->extent_offset	= btrfs_file_extent_offset(l, fi);
40309ed2f16SLiu Bo 		__entry->extent_type	= btrfs_file_extent_type(l, fi);
40409ed2f16SLiu Bo 		__entry->compression	= btrfs_file_extent_compression(l, fi);
40509ed2f16SLiu Bo 		__entry->extent_start	= start;
40609ed2f16SLiu Bo 		__entry->extent_end	= (start + __entry->num_bytes);
40709ed2f16SLiu Bo 	),
40809ed2f16SLiu Bo 
40909ed2f16SLiu Bo 	TP_printk_btrfs(
41009ed2f16SLiu Bo 		"root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
41109ed2f16SLiu Bo 		"file extent range=[%llu %llu] "
41209ed2f16SLiu Bo 		"(num_bytes=%llu ram_bytes=%llu disk_bytenr=%llu "
41309ed2f16SLiu Bo 		"disk_num_bytes=%llu extent_offset=%llu type=%s "
41409ed2f16SLiu Bo 		"compression=%u",
41509ed2f16SLiu Bo 		show_root_type(__entry->root_obj), __entry->ino,
41609ed2f16SLiu Bo 		__entry->isize,
41709ed2f16SLiu Bo 		__entry->disk_isize, __entry->extent_start,
41809ed2f16SLiu Bo 		__entry->extent_end, __entry->num_bytes, __entry->ram_bytes,
41909ed2f16SLiu Bo 		__entry->disk_bytenr, __entry->disk_num_bytes,
4200840dd28SNikolay Borisov 		__entry->extent_offset, __print_symbolic(__entry->extent_type, FI_TYPES),
42109ed2f16SLiu Bo 		__entry->compression)
42209ed2f16SLiu Bo );
42309ed2f16SLiu Bo 
42409ed2f16SLiu Bo DECLARE_EVENT_CLASS(
42509ed2f16SLiu Bo 	btrfs__file_extent_item_inline,
42609ed2f16SLiu Bo 
4271d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4281d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, int slot, u64 start),
42909ed2f16SLiu Bo 
43009ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, slot,  start),
43109ed2f16SLiu Bo 
43209ed2f16SLiu Bo 	TP_STRUCT__entry_btrfs(
43309ed2f16SLiu Bo 		__field(	u64,	root_obj	)
43409ed2f16SLiu Bo 		__field(	u64,	ino		)
43509ed2f16SLiu Bo 		__field(	loff_t,	isize		)
43609ed2f16SLiu Bo 		__field(	u64,	disk_isize	)
43709ed2f16SLiu Bo 		__field(	u8,	extent_type	)
43809ed2f16SLiu Bo 		__field(	u8,	compression	)
43909ed2f16SLiu Bo 		__field(	u64,	extent_start	)
44009ed2f16SLiu Bo 		__field(	u64,	extent_end	)
44109ed2f16SLiu Bo 	),
44209ed2f16SLiu Bo 
44309ed2f16SLiu Bo 	TP_fast_assign_btrfs(
44409ed2f16SLiu Bo 		bi->root->fs_info,
4454fd786e6SMisono Tomohiro 		__entry->root_obj	= bi->root->root_key.objectid;
44609ed2f16SLiu Bo 		__entry->ino		= btrfs_ino(bi);
44709ed2f16SLiu Bo 		__entry->isize		= bi->vfs_inode.i_size;
44809ed2f16SLiu Bo 		__entry->disk_isize	= bi->disk_i_size;
44909ed2f16SLiu Bo 		__entry->extent_type	= btrfs_file_extent_type(l, fi);
45009ed2f16SLiu Bo 		__entry->compression	= btrfs_file_extent_compression(l, fi);
45109ed2f16SLiu Bo 		__entry->extent_start	= start;
452e41ca589SQu Wenruo 		__entry->extent_end	= (start + btrfs_file_extent_ram_bytes(l, fi));
45309ed2f16SLiu Bo 	),
45409ed2f16SLiu Bo 
45509ed2f16SLiu Bo 	TP_printk_btrfs(
45609ed2f16SLiu Bo 		"root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
45709ed2f16SLiu Bo 		"file extent range=[%llu %llu] "
45809ed2f16SLiu Bo 		"extent_type=%s compression=%u",
45909ed2f16SLiu Bo 		show_root_type(__entry->root_obj), __entry->ino, __entry->isize,
46009ed2f16SLiu Bo 		__entry->disk_isize, __entry->extent_start,
4610840dd28SNikolay Borisov 		__entry->extent_end, __print_symbolic(__entry->extent_type, FI_TYPES),
46209ed2f16SLiu Bo 		__entry->compression)
46309ed2f16SLiu Bo );
46409ed2f16SLiu Bo 
46509ed2f16SLiu Bo DEFINE_EVENT(
46609ed2f16SLiu Bo 	btrfs__file_extent_item_regular, btrfs_get_extent_show_fi_regular,
46709ed2f16SLiu Bo 
4681d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4691d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, u64 start),
47009ed2f16SLiu Bo 
47109ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, start)
47209ed2f16SLiu Bo );
47309ed2f16SLiu Bo 
47409ed2f16SLiu Bo DEFINE_EVENT(
47509ed2f16SLiu Bo 	btrfs__file_extent_item_regular, btrfs_truncate_show_fi_regular,
47609ed2f16SLiu Bo 
4771d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4781d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, u64 start),
47909ed2f16SLiu Bo 
48009ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, start)
48109ed2f16SLiu Bo );
48209ed2f16SLiu Bo 
48309ed2f16SLiu Bo DEFINE_EVENT(
48409ed2f16SLiu Bo 	btrfs__file_extent_item_inline, btrfs_get_extent_show_fi_inline,
48509ed2f16SLiu Bo 
4861d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4871d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, int slot, u64 start),
48809ed2f16SLiu Bo 
48909ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, slot, start)
49009ed2f16SLiu Bo );
49109ed2f16SLiu Bo 
49209ed2f16SLiu Bo DEFINE_EVENT(
49309ed2f16SLiu Bo 	btrfs__file_extent_item_inline, btrfs_truncate_show_fi_inline,
49409ed2f16SLiu Bo 
4951d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4961d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, int slot, u64 start),
49709ed2f16SLiu Bo 
49809ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, slot, start)
49909ed2f16SLiu Bo );
50009ed2f16SLiu Bo 
5011abe9b8aSliubo #define show_ordered_flags(flags)					   \
5029d04a8ceSLiu Bo 	__print_flags(flags, "|",					   \
5033c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_REGULAR), 	"REGULAR" 	}, \
5043c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_NOCOW), 		"NOCOW" 	}, \
5053c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_PREALLOC), 	"PREALLOC" 	}, \
5063c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_COMPRESSED), 	"COMPRESSED" 	}, \
5073c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_DIRECT),	 	"DIRECT" 	}, \
5089d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_IO_DONE), 	"IO_DONE" 	}, \
5099d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_COMPLETE), 	"COMPLETE" 	}, \
5109d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_IOERR), 		"IOERR" 	}, \
511792ddef0SLiu Bo 		{ (1 << BTRFS_ORDERED_TRUNCATED), 	"TRUNCATED"	})
512e112e2b4SLiu Bo 
5131abe9b8aSliubo 
5141abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__ordered_extent,
5151abe9b8aSliubo 
516acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5179a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5181abe9b8aSliubo 
5191abe9b8aSliubo 	TP_ARGS(inode, ordered),
5201abe9b8aSliubo 
521bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
522f8f8e189SDavid Sterba 		__field(	u64,  ino		)
5231abe9b8aSliubo 		__field(	u64,  file_offset	)
5241abe9b8aSliubo 		__field(	u64,  start		)
5251abe9b8aSliubo 		__field(	u64,  len		)
5261abe9b8aSliubo 		__field(	u64,  disk_len		)
5271abe9b8aSliubo 		__field(	u64,  bytes_left	)
5281abe9b8aSliubo 		__field(	unsigned long,  flags	)
5291abe9b8aSliubo 		__field(	int,  compress_type	)
5301abe9b8aSliubo 		__field(	int,  refs		)
5311abe9b8aSliubo 		__field(	u64,  root_objectid	)
53278566548SLiu Bo 		__field(	u64,  truncated_len	)
5331abe9b8aSliubo 	),
5341abe9b8aSliubo 
535acbf1dd0SNikolay Borisov 	TP_fast_assign_btrfs(inode->root->fs_info,
536acbf1dd0SNikolay Borisov 		__entry->ino 		= btrfs_ino(inode);
5371abe9b8aSliubo 		__entry->file_offset	= ordered->file_offset;
538bffe633eSOmar Sandoval 		__entry->start		= ordered->disk_bytenr;
539bffe633eSOmar Sandoval 		__entry->len		= ordered->num_bytes;
540bffe633eSOmar Sandoval 		__entry->disk_len	= ordered->disk_num_bytes;
5411abe9b8aSliubo 		__entry->bytes_left	= ordered->bytes_left;
5421abe9b8aSliubo 		__entry->flags		= ordered->flags;
5431abe9b8aSliubo 		__entry->compress_type	= ordered->compress_type;
544e76edab7SElena Reshetova 		__entry->refs		= refcount_read(&ordered->refs);
545acbf1dd0SNikolay Borisov 		__entry->root_objectid	= inode->root->root_key.objectid;
54678566548SLiu Bo 		__entry->truncated_len	= ordered->truncated_len;
5471abe9b8aSliubo 	),
5481abe9b8aSliubo 
549562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu file_offset=%llu "
550562a7a07SDavid Sterba 		  "start=%llu len=%llu disk_len=%llu "
551562a7a07SDavid Sterba 		  "truncated_len=%llu "
552562a7a07SDavid Sterba 		  "bytes_left=%llu flags=%s compress_type=%d "
5531abe9b8aSliubo 		  "refs=%d",
5541abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
5558eec8463SDavid Sterba 		  __entry->ino,
5568eec8463SDavid Sterba 		  __entry->file_offset,
5578eec8463SDavid Sterba 		  __entry->start,
5588eec8463SDavid Sterba 		  __entry->len,
5598eec8463SDavid Sterba 		  __entry->disk_len,
5608eec8463SDavid Sterba 		  __entry->truncated_len,
5618eec8463SDavid Sterba 		  __entry->bytes_left,
5621abe9b8aSliubo 		  show_ordered_flags(__entry->flags),
5631abe9b8aSliubo 		  __entry->compress_type, __entry->refs)
5641abe9b8aSliubo );
5651abe9b8aSliubo 
5661abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_add,
5671abe9b8aSliubo 
568acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5699a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5701abe9b8aSliubo 
5711abe9b8aSliubo 	TP_ARGS(inode, ordered)
5721abe9b8aSliubo );
5731abe9b8aSliubo 
5741abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_remove,
5751abe9b8aSliubo 
576acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5779a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5781abe9b8aSliubo 
5791abe9b8aSliubo 	TP_ARGS(inode, ordered)
5801abe9b8aSliubo );
5811abe9b8aSliubo 
5821abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_start,
5831abe9b8aSliubo 
584acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5859a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5861abe9b8aSliubo 
5871abe9b8aSliubo 	TP_ARGS(inode, ordered)
5881abe9b8aSliubo );
5891abe9b8aSliubo 
5901abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_put,
5911abe9b8aSliubo 
592acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5939a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5941abe9b8aSliubo 
5951abe9b8aSliubo 	TP_ARGS(inode, ordered)
5961abe9b8aSliubo );
5971abe9b8aSliubo 
5981abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__writepage,
5991abe9b8aSliubo 
6009a35b637SJeff Mahoney 	TP_PROTO(const struct page *page, const struct inode *inode,
6019a35b637SJeff Mahoney 		 const struct writeback_control *wbc),
6021abe9b8aSliubo 
6031abe9b8aSliubo 	TP_ARGS(page, inode, wbc),
6041abe9b8aSliubo 
605bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
606f8f8e189SDavid Sterba 		__field(	u64,	ino			)
6071abe9b8aSliubo 		__field(	pgoff_t,  index			)
6081abe9b8aSliubo 		__field(	long,   nr_to_write		)
6091abe9b8aSliubo 		__field(	long,   pages_skipped		)
6101abe9b8aSliubo 		__field(	loff_t, range_start		)
6111abe9b8aSliubo 		__field(	loff_t, range_end		)
6121abe9b8aSliubo 		__field(	char,   for_kupdate		)
6131abe9b8aSliubo 		__field(	char,   for_reclaim		)
6141abe9b8aSliubo 		__field(	char,   range_cyclic		)
61594c3f6c6SDavid Sterba 		__field(	unsigned long,  writeback_index	)
6161abe9b8aSliubo 		__field(	u64,    root_objectid		)
6171abe9b8aSliubo 	),
6181abe9b8aSliubo 
619bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
620f8f8e189SDavid Sterba 		__entry->ino		= btrfs_ino(BTRFS_I(inode));
6211abe9b8aSliubo 		__entry->index		= page->index;
6221abe9b8aSliubo 		__entry->nr_to_write	= wbc->nr_to_write;
6231abe9b8aSliubo 		__entry->pages_skipped	= wbc->pages_skipped;
6241abe9b8aSliubo 		__entry->range_start	= wbc->range_start;
6251abe9b8aSliubo 		__entry->range_end	= wbc->range_end;
6261abe9b8aSliubo 		__entry->for_kupdate	= wbc->for_kupdate;
6271abe9b8aSliubo 		__entry->for_reclaim	= wbc->for_reclaim;
6281abe9b8aSliubo 		__entry->range_cyclic	= wbc->range_cyclic;
6291abe9b8aSliubo 		__entry->writeback_index = inode->i_mapping->writeback_index;
6301abe9b8aSliubo 		__entry->root_objectid	=
6311abe9b8aSliubo 				 BTRFS_I(inode)->root->root_key.objectid;
6321abe9b8aSliubo 	),
6331abe9b8aSliubo 
634f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu page_index=%lu "
635562a7a07SDavid Sterba 		  "nr_to_write=%ld pages_skipped=%ld range_start=%llu "
636562a7a07SDavid Sterba 		  "range_end=%llu for_kupdate=%d "
637562a7a07SDavid Sterba 		  "for_reclaim=%d range_cyclic=%d writeback_index=%lu",
6381abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
6398eec8463SDavid Sterba 		  __entry->ino, __entry->index,
6401abe9b8aSliubo 		  __entry->nr_to_write, __entry->pages_skipped,
6411abe9b8aSliubo 		  __entry->range_start, __entry->range_end,
642846d5a09SWu Fengguang 		  __entry->for_kupdate,
6431abe9b8aSliubo 		  __entry->for_reclaim, __entry->range_cyclic,
64494c3f6c6SDavid Sterba 		  __entry->writeback_index)
6451abe9b8aSliubo );
6461abe9b8aSliubo 
6471abe9b8aSliubo DEFINE_EVENT(btrfs__writepage, __extent_writepage,
6481abe9b8aSliubo 
6499a35b637SJeff Mahoney 	TP_PROTO(const struct page *page, const struct inode *inode,
6509a35b637SJeff Mahoney 		 const struct writeback_control *wbc),
6511abe9b8aSliubo 
6521abe9b8aSliubo 	TP_ARGS(page, inode, wbc)
6531abe9b8aSliubo );
6541abe9b8aSliubo 
6551abe9b8aSliubo TRACE_EVENT(btrfs_writepage_end_io_hook,
6561abe9b8aSliubo 
65738a39ac7SQu Wenruo 	TP_PROTO(const struct btrfs_inode *inode, u64 start, u64 end,
65838a39ac7SQu Wenruo 		 int uptodate),
6591abe9b8aSliubo 
66038a39ac7SQu Wenruo 	TP_ARGS(inode, start, end, uptodate),
6611abe9b8aSliubo 
662bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
663f8f8e189SDavid Sterba 		__field(	u64,	 ino		)
6641abe9b8aSliubo 		__field(	u64,	 start		)
6651abe9b8aSliubo 		__field(	u64,	 end		)
6661abe9b8aSliubo 		__field(	int,	 uptodate	)
6671abe9b8aSliubo 		__field(	u64,    root_objectid	)
6681abe9b8aSliubo 	),
6691abe9b8aSliubo 
67038a39ac7SQu Wenruo 	TP_fast_assign_btrfs(inode->root->fs_info,
67138a39ac7SQu Wenruo 		__entry->ino	= btrfs_ino(inode);
6721abe9b8aSliubo 		__entry->start	= start;
6731abe9b8aSliubo 		__entry->end	= end;
6741abe9b8aSliubo 		__entry->uptodate = uptodate;
67538a39ac7SQu Wenruo 		__entry->root_objectid = inode->root->root_key.objectid;
6761abe9b8aSliubo 	),
6771abe9b8aSliubo 
67838a39ac7SQu Wenruo 	TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu end=%llu uptodate=%d",
6791abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
68038a39ac7SQu Wenruo 		  __entry->ino, __entry->start,
6818eec8463SDavid Sterba 		  __entry->end, __entry->uptodate)
6821abe9b8aSliubo );
6831abe9b8aSliubo 
6841abe9b8aSliubo TRACE_EVENT(btrfs_sync_file,
6851abe9b8aSliubo 
6869a35b637SJeff Mahoney 	TP_PROTO(const struct file *file, int datasync),
6871abe9b8aSliubo 
6881abe9b8aSliubo 	TP_ARGS(file, datasync),
6891abe9b8aSliubo 
690bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
691f8f8e189SDavid Sterba 		__field(	u64,	ino		)
692f8f8e189SDavid Sterba 		__field(	u64,	parent		)
6931abe9b8aSliubo 		__field(	int,    datasync	)
6941abe9b8aSliubo 		__field(	u64,    root_objectid	)
6951abe9b8aSliubo 	),
6961abe9b8aSliubo 
6971abe9b8aSliubo 	TP_fast_assign(
6989a35b637SJeff Mahoney 		const struct dentry *dentry = file->f_path.dentry;
6999a35b637SJeff Mahoney 		const struct inode *inode = d_inode(dentry);
7001abe9b8aSliubo 
701bc074524SJeff Mahoney 		TP_fast_assign_fsid(btrfs_sb(file->f_path.dentry->d_sb));
702f8f8e189SDavid Sterba 		__entry->ino		= btrfs_ino(BTRFS_I(inode));
703f8f8e189SDavid Sterba 		__entry->parent		= btrfs_ino(BTRFS_I(d_inode(dentry->d_parent)));
7041abe9b8aSliubo 		__entry->datasync	= datasync;
7051abe9b8aSliubo 		__entry->root_objectid	=
7061abe9b8aSliubo 				 BTRFS_I(inode)->root->root_key.objectid;
7071abe9b8aSliubo 	),
7081abe9b8aSliubo 
709f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu parent=%llu datasync=%d",
7101abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
7118eec8463SDavid Sterba 		  __entry->ino,
7128eec8463SDavid Sterba 		  __entry->parent,
7131abe9b8aSliubo 		  __entry->datasync)
7141abe9b8aSliubo );
7151abe9b8aSliubo 
7161abe9b8aSliubo TRACE_EVENT(btrfs_sync_fs,
7171abe9b8aSliubo 
7189a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, int wait),
7191abe9b8aSliubo 
720bc074524SJeff Mahoney 	TP_ARGS(fs_info, wait),
7211abe9b8aSliubo 
722bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
7231abe9b8aSliubo 		__field(	int,  wait		)
7241abe9b8aSliubo 	),
7251abe9b8aSliubo 
726bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
7271abe9b8aSliubo 		__entry->wait	= wait;
7281abe9b8aSliubo 	),
7291abe9b8aSliubo 
730bc074524SJeff Mahoney 	TP_printk_btrfs("wait=%d", __entry->wait)
7311abe9b8aSliubo );
7321abe9b8aSliubo 
733c83f8effSJosef Bacik TRACE_EVENT(btrfs_add_block_group,
734c83f8effSJosef Bacik 
7359a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
73632da5386SDavid Sterba 		 const struct btrfs_block_group *block_group, int create),
737c83f8effSJosef Bacik 
738c83f8effSJosef Bacik 	TP_ARGS(fs_info, block_group, create),
739c83f8effSJosef Bacik 
7402e63e62dSDavid Sterba 	TP_STRUCT__entry_btrfs(
741c83f8effSJosef Bacik 		__field(	u64,	offset			)
742c83f8effSJosef Bacik 		__field(	u64,	size			)
743c83f8effSJosef Bacik 		__field(	u64,	flags			)
744c83f8effSJosef Bacik 		__field(	u64,	bytes_used		)
745c83f8effSJosef Bacik 		__field(	u64,	bytes_super		)
746c83f8effSJosef Bacik 		__field(	int,	create			)
747c83f8effSJosef Bacik 	),
748c83f8effSJosef Bacik 
7492e63e62dSDavid Sterba 	TP_fast_assign_btrfs(fs_info,
750b3470b5dSDavid Sterba 		__entry->offset		= block_group->start;
751b3470b5dSDavid Sterba 		__entry->size		= block_group->length;
752c83f8effSJosef Bacik 		__entry->flags		= block_group->flags;
753bf38be65SDavid Sterba 		__entry->bytes_used	= block_group->used;
754c83f8effSJosef Bacik 		__entry->bytes_super	= block_group->bytes_super;
755c83f8effSJosef Bacik 		__entry->create		= create;
756c83f8effSJosef Bacik 	),
757c83f8effSJosef Bacik 
7582e63e62dSDavid Sterba 	TP_printk_btrfs("block_group offset=%llu size=%llu "
759562a7a07SDavid Sterba 		  "flags=%llu(%s) bytes_used=%llu bytes_super=%llu "
7602e63e62dSDavid Sterba 		  "create=%d",
7618eec8463SDavid Sterba 		  __entry->offset,
7628eec8463SDavid Sterba 		  __entry->size,
7638eec8463SDavid Sterba 		  __entry->flags,
764c83f8effSJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
765c83f8effSJosef Bacik 				BTRFS_GROUP_FLAGS),
7668eec8463SDavid Sterba 		  __entry->bytes_used,
7678eec8463SDavid Sterba 		  __entry->bytes_super, __entry->create)
768c83f8effSJosef Bacik );
769c83f8effSJosef Bacik 
7701abe9b8aSliubo #define show_ref_action(action)						\
7711abe9b8aSliubo 	__print_symbolic(action,					\
7721abe9b8aSliubo 		{ BTRFS_ADD_DELAYED_REF,    "ADD_DELAYED_REF" },	\
7731abe9b8aSliubo 		{ BTRFS_DROP_DELAYED_REF,   "DROP_DELAYED_REF" },	\
7741abe9b8aSliubo 		{ BTRFS_ADD_DELAYED_EXTENT, "ADD_DELAYED_EXTENT" }, 	\
7751abe9b8aSliubo 		{ BTRFS_UPDATE_DELAYED_HEAD, "UPDATE_DELAYED_HEAD" })
7761abe9b8aSliubo 
7771abe9b8aSliubo 
778599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_tree_ref,
7791abe9b8aSliubo 
7809a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
7819a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
7829a35b637SJeff Mahoney 		 const struct btrfs_delayed_tree_ref *full_ref,
7831abe9b8aSliubo 		 int action),
7841abe9b8aSliubo 
785bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action),
7861abe9b8aSliubo 
787bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
7881abe9b8aSliubo 		__field(	u64,  bytenr		)
7891abe9b8aSliubo 		__field(	u64,  num_bytes		)
7901abe9b8aSliubo 		__field(	int,  action		)
7911abe9b8aSliubo 		__field(	u64,  parent		)
7921abe9b8aSliubo 		__field(	u64,  ref_root		)
7931abe9b8aSliubo 		__field(	int,  level		)
7941abe9b8aSliubo 		__field(	int,  type		)
795dea7d76eSLiu Bo 		__field(	u64,  seq		)
7961abe9b8aSliubo 	),
7971abe9b8aSliubo 
798bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
7991abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
8001abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
8011abe9b8aSliubo 		__entry->action		= action;
8021abe9b8aSliubo 		__entry->parent		= full_ref->parent;
8031abe9b8aSliubo 		__entry->ref_root	= full_ref->root;
8041abe9b8aSliubo 		__entry->level		= full_ref->level;
8051abe9b8aSliubo 		__entry->type		= ref->type;
806dea7d76eSLiu Bo 		__entry->seq		= ref->seq;
8071abe9b8aSliubo 	),
8081abe9b8aSliubo 
809562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
810562a7a07SDavid Sterba 		  "parent=%llu(%s) ref_root=%llu(%s) level=%d "
811562a7a07SDavid Sterba 		  "type=%s seq=%llu",
8128eec8463SDavid Sterba 		  __entry->bytenr,
8138eec8463SDavid Sterba 		  __entry->num_bytes,
8141abe9b8aSliubo 		  show_ref_action(__entry->action),
8151abe9b8aSliubo 		  show_root_type(__entry->parent),
8161abe9b8aSliubo 		  show_root_type(__entry->ref_root),
817dea7d76eSLiu Bo 		  __entry->level, show_ref_type(__entry->type),
8188eec8463SDavid Sterba 		  __entry->seq)
8191abe9b8aSliubo );
8201abe9b8aSliubo 
821599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_tree_ref,  add_delayed_tree_ref,
822599c75ecSLiu Bo 
8239a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8249a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8259a35b637SJeff Mahoney 		 const struct btrfs_delayed_tree_ref *full_ref,
826599c75ecSLiu Bo 		 int action),
827599c75ecSLiu Bo 
828bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
829599c75ecSLiu Bo );
830599c75ecSLiu Bo 
831599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_tree_ref,  run_delayed_tree_ref,
832599c75ecSLiu Bo 
8339a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8349a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8359a35b637SJeff Mahoney 		 const struct btrfs_delayed_tree_ref *full_ref,
836599c75ecSLiu Bo 		 int action),
837599c75ecSLiu Bo 
838bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
839599c75ecSLiu Bo );
840599c75ecSLiu Bo 
841599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_data_ref,
8421abe9b8aSliubo 
8439a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8449a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8459a35b637SJeff Mahoney 		 const struct btrfs_delayed_data_ref *full_ref,
8461abe9b8aSliubo 		 int action),
8471abe9b8aSliubo 
848bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action),
8491abe9b8aSliubo 
850bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
8511abe9b8aSliubo 		__field(	u64,  bytenr		)
8521abe9b8aSliubo 		__field(	u64,  num_bytes		)
8531abe9b8aSliubo 		__field(	int,  action		)
8541abe9b8aSliubo 		__field(	u64,  parent		)
8551abe9b8aSliubo 		__field(	u64,  ref_root		)
8561abe9b8aSliubo 		__field(	u64,  owner		)
8571abe9b8aSliubo 		__field(	u64,  offset		)
8581abe9b8aSliubo 		__field(	int,  type		)
859dea7d76eSLiu Bo 		__field(	u64,  seq		)
8601abe9b8aSliubo 	),
8611abe9b8aSliubo 
862bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
8631abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
8641abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
8651abe9b8aSliubo 		__entry->action		= action;
8661abe9b8aSliubo 		__entry->parent		= full_ref->parent;
8671abe9b8aSliubo 		__entry->ref_root	= full_ref->root;
8681abe9b8aSliubo 		__entry->owner		= full_ref->objectid;
8691abe9b8aSliubo 		__entry->offset		= full_ref->offset;
8701abe9b8aSliubo 		__entry->type		= ref->type;
871dea7d76eSLiu Bo 		__entry->seq		= ref->seq;
8721abe9b8aSliubo 	),
8731abe9b8aSliubo 
874562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
875562a7a07SDavid Sterba 		  "parent=%llu(%s) ref_root=%llu(%s) owner=%llu "
876562a7a07SDavid Sterba 		  "offset=%llu type=%s seq=%llu",
8778eec8463SDavid Sterba 		  __entry->bytenr,
8788eec8463SDavid Sterba 		  __entry->num_bytes,
8791abe9b8aSliubo 		  show_ref_action(__entry->action),
8801abe9b8aSliubo 		  show_root_type(__entry->parent),
8811abe9b8aSliubo 		  show_root_type(__entry->ref_root),
8828eec8463SDavid Sterba 		  __entry->owner,
8838eec8463SDavid Sterba 		  __entry->offset,
884dea7d76eSLiu Bo 		  show_ref_type(__entry->type),
8858eec8463SDavid Sterba 		  __entry->seq)
8861abe9b8aSliubo );
8871abe9b8aSliubo 
888599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_data_ref,  add_delayed_data_ref,
889599c75ecSLiu Bo 
8909a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8919a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8929a35b637SJeff Mahoney 		 const struct btrfs_delayed_data_ref *full_ref,
893599c75ecSLiu Bo 		 int action),
894599c75ecSLiu Bo 
895bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
896599c75ecSLiu Bo );
897599c75ecSLiu Bo 
898599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_data_ref,  run_delayed_data_ref,
899599c75ecSLiu Bo 
9009a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9019a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
9029a35b637SJeff Mahoney 		 const struct btrfs_delayed_data_ref *full_ref,
903599c75ecSLiu Bo 		 int action),
904599c75ecSLiu Bo 
905bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
906599c75ecSLiu Bo );
907599c75ecSLiu Bo 
908599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_ref_head,
9091abe9b8aSliubo 
9109a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9119a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_head *head_ref,
9121abe9b8aSliubo 		 int action),
9131abe9b8aSliubo 
914d278850eSJosef Bacik 	TP_ARGS(fs_info, head_ref, action),
9151abe9b8aSliubo 
916bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
9171abe9b8aSliubo 		__field(	u64,  bytenr		)
9181abe9b8aSliubo 		__field(	u64,  num_bytes		)
9191abe9b8aSliubo 		__field(	int,  action		)
9201abe9b8aSliubo 		__field(	int,  is_data		)
9211abe9b8aSliubo 	),
9221abe9b8aSliubo 
923bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
924d278850eSJosef Bacik 		__entry->bytenr		= head_ref->bytenr;
925d278850eSJosef Bacik 		__entry->num_bytes	= head_ref->num_bytes;
9261abe9b8aSliubo 		__entry->action		= action;
9271abe9b8aSliubo 		__entry->is_data	= head_ref->is_data;
9281abe9b8aSliubo 	),
9291abe9b8aSliubo 
930562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s is_data=%d",
9318eec8463SDavid Sterba 		  __entry->bytenr,
9328eec8463SDavid Sterba 		  __entry->num_bytes,
9331abe9b8aSliubo 		  show_ref_action(__entry->action),
9341abe9b8aSliubo 		  __entry->is_data)
9351abe9b8aSliubo );
9361abe9b8aSliubo 
937599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_ref_head,  add_delayed_ref_head,
938599c75ecSLiu Bo 
9399a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9409a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_head *head_ref,
941599c75ecSLiu Bo 		 int action),
942599c75ecSLiu Bo 
943d278850eSJosef Bacik 	TP_ARGS(fs_info, head_ref, action)
944599c75ecSLiu Bo );
945599c75ecSLiu Bo 
946599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_ref_head,  run_delayed_ref_head,
947599c75ecSLiu Bo 
9489a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9499a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_head *head_ref,
950599c75ecSLiu Bo 		 int action),
951599c75ecSLiu Bo 
952d278850eSJosef Bacik 	TP_ARGS(fs_info, head_ref, action)
953599c75ecSLiu Bo );
954599c75ecSLiu Bo 
9551abe9b8aSliubo #define show_chunk_type(type)					\
9561abe9b8aSliubo 	__print_flags(type, "|",				\
9571abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_DATA, 	"DATA"	},	\
9581abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_SYSTEM, 	"SYSTEM"},	\
9591abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_METADATA, 	"METADATA"},	\
9601abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_RAID0, 	"RAID0" },	\
9611abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_RAID1, 	"RAID1" },	\
9621abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_DUP, 	"DUP"	},	\
963e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID10, 	"RAID10"},	\
964e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID5, 	"RAID5"	},	\
965e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID6, 	"RAID6"	})
9661abe9b8aSliubo 
9671abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__chunk,
9681abe9b8aSliubo 
9699a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9709a35b637SJeff Mahoney 		 const struct map_lookup *map, u64 offset, u64 size),
9711abe9b8aSliubo 
9726bccf3abSJeff Mahoney 	TP_ARGS(fs_info, map, offset, size),
9731abe9b8aSliubo 
974bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
9751abe9b8aSliubo 		__field(	int,  num_stripes		)
9761abe9b8aSliubo 		__field(	u64,  type			)
9771abe9b8aSliubo 		__field(	int,  sub_stripes		)
9781abe9b8aSliubo 		__field(	u64,  offset			)
9791abe9b8aSliubo 		__field(	u64,  size			)
9801abe9b8aSliubo 		__field(	u64,  root_objectid		)
9811abe9b8aSliubo 	),
9821abe9b8aSliubo 
9836bccf3abSJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
9841abe9b8aSliubo 		__entry->num_stripes	= map->num_stripes;
9851abe9b8aSliubo 		__entry->type		= map->type;
9861abe9b8aSliubo 		__entry->sub_stripes	= map->sub_stripes;
9871abe9b8aSliubo 		__entry->offset		= offset;
9881abe9b8aSliubo 		__entry->size		= size;
9896bccf3abSJeff Mahoney 		__entry->root_objectid	= fs_info->chunk_root->root_key.objectid;
9901abe9b8aSliubo 	),
9911abe9b8aSliubo 
992562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) offset=%llu size=%llu "
993562a7a07SDavid Sterba 		  "num_stripes=%d sub_stripes=%d type=%s",
9941abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
9958eec8463SDavid Sterba 		  __entry->offset,
9968eec8463SDavid Sterba 		  __entry->size,
9971abe9b8aSliubo 		  __entry->num_stripes, __entry->sub_stripes,
9981abe9b8aSliubo 		  show_chunk_type(__entry->type))
9991abe9b8aSliubo );
10001abe9b8aSliubo 
10011abe9b8aSliubo DEFINE_EVENT(btrfs__chunk,  btrfs_chunk_alloc,
10021abe9b8aSliubo 
10039a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
10049a35b637SJeff Mahoney 		 const struct map_lookup *map, u64 offset, u64 size),
10051abe9b8aSliubo 
10066bccf3abSJeff Mahoney 	TP_ARGS(fs_info, map, offset, size)
10071abe9b8aSliubo );
10081abe9b8aSliubo 
10091abe9b8aSliubo DEFINE_EVENT(btrfs__chunk,  btrfs_chunk_free,
10101abe9b8aSliubo 
10119a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
10129a35b637SJeff Mahoney 		 const struct map_lookup *map, u64 offset, u64 size),
10131abe9b8aSliubo 
10146bccf3abSJeff Mahoney 	TP_ARGS(fs_info, map, offset, size)
10151abe9b8aSliubo );
10161abe9b8aSliubo 
10171abe9b8aSliubo TRACE_EVENT(btrfs_cow_block,
10181abe9b8aSliubo 
10199a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_root *root, const struct extent_buffer *buf,
10209a35b637SJeff Mahoney 		 const struct extent_buffer *cow),
10211abe9b8aSliubo 
10221abe9b8aSliubo 	TP_ARGS(root, buf, cow),
10231abe9b8aSliubo 
1024bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
10251abe9b8aSliubo 		__field(	u64,  root_objectid		)
10261abe9b8aSliubo 		__field(	u64,  buf_start			)
10271abe9b8aSliubo 		__field(	int,  refs			)
10281abe9b8aSliubo 		__field(	u64,  cow_start			)
10291abe9b8aSliubo 		__field(	int,  buf_level			)
10301abe9b8aSliubo 		__field(	int,  cow_level			)
10311abe9b8aSliubo 	),
10321abe9b8aSliubo 
1033bc074524SJeff Mahoney 	TP_fast_assign_btrfs(root->fs_info,
10341abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
10351abe9b8aSliubo 		__entry->buf_start	= buf->start;
10361abe9b8aSliubo 		__entry->refs		= atomic_read(&buf->refs);
10371abe9b8aSliubo 		__entry->cow_start	= cow->start;
10381abe9b8aSliubo 		__entry->buf_level	= btrfs_header_level(buf);
10391abe9b8aSliubo 		__entry->cow_level	= btrfs_header_level(cow);
10401abe9b8aSliubo 	),
10411abe9b8aSliubo 
1042562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) refs=%d orig_buf=%llu "
1043562a7a07SDavid Sterba 		  "(orig_level=%d) cow_buf=%llu (cow_level=%d)",
10441abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
10451abe9b8aSliubo 		  __entry->refs,
10468eec8463SDavid Sterba 		  __entry->buf_start,
10471abe9b8aSliubo 		  __entry->buf_level,
10488eec8463SDavid Sterba 		  __entry->cow_start,
10491abe9b8aSliubo 		  __entry->cow_level)
10501abe9b8aSliubo );
10511abe9b8aSliubo 
10528c2a3ca2SJosef Bacik TRACE_EVENT(btrfs_space_reservation,
10538c2a3ca2SJosef Bacik 
10541d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info, const char *type, u64 val,
10558c2a3ca2SJosef Bacik 		 u64 bytes, int reserve),
10568c2a3ca2SJosef Bacik 
10578c2a3ca2SJosef Bacik 	TP_ARGS(fs_info, type, val, bytes, reserve),
10588c2a3ca2SJosef Bacik 
1059bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
10608c2a3ca2SJosef Bacik 		__string(	type,	type			)
10618c2a3ca2SJosef Bacik 		__field(	u64,	val			)
10628c2a3ca2SJosef Bacik 		__field(	u64,	bytes			)
10638c2a3ca2SJosef Bacik 		__field(	int,	reserve			)
10648c2a3ca2SJosef Bacik 	),
10658c2a3ca2SJosef Bacik 
1066bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
10678c2a3ca2SJosef Bacik 		__assign_str(type, type);
10688c2a3ca2SJosef Bacik 		__entry->val		= val;
10698c2a3ca2SJosef Bacik 		__entry->bytes		= bytes;
10708c2a3ca2SJosef Bacik 		__entry->reserve	= reserve;
10718c2a3ca2SJosef Bacik 	),
10728c2a3ca2SJosef Bacik 
10735439c7f5SDavid Sterba 	TP_printk_btrfs("%s: %llu %s %llu", __get_str(type), __entry->val,
1074bc074524SJeff Mahoney 			__entry->reserve ? "reserve" : "release",
10758c2a3ca2SJosef Bacik 			__entry->bytes)
10768c2a3ca2SJosef Bacik );
10778c2a3ca2SJosef Bacik 
1078f376df2bSJosef Bacik TRACE_EVENT(btrfs_trigger_flush,
1079f376df2bSJosef Bacik 
10809a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 bytes,
10811d2e7c7cSDavid Sterba 		 int flush, const char *reason),
1082f376df2bSJosef Bacik 
1083f376df2bSJosef Bacik 	TP_ARGS(fs_info, flags, bytes, flush, reason),
1084f376df2bSJosef Bacik 
10852e63e62dSDavid Sterba 	TP_STRUCT__entry_btrfs(
1086f376df2bSJosef Bacik 		__field(	u64,	flags			)
1087f376df2bSJosef Bacik 		__field(	u64,	bytes			)
1088f376df2bSJosef Bacik 		__field(	int,	flush			)
1089f376df2bSJosef Bacik 		__string(	reason,	reason			)
1090f376df2bSJosef Bacik 	),
1091f376df2bSJosef Bacik 
10922e63e62dSDavid Sterba 	TP_fast_assign_btrfs(fs_info,
1093f376df2bSJosef Bacik 		__entry->flags	= flags;
1094f376df2bSJosef Bacik 		__entry->bytes	= bytes;
1095f376df2bSJosef Bacik 		__entry->flush	= flush;
109678c14b38SJoe Perches 		__assign_str(reason, reason);
1097f376df2bSJosef Bacik 	),
1098f376df2bSJosef Bacik 
10992e63e62dSDavid Sterba 	TP_printk_btrfs("%s: flush=%d(%s) flags=%llu(%s) bytes=%llu",
11002e63e62dSDavid Sterba 		  __get_str(reason), __entry->flush,
110145e31869SNikolay Borisov 		  __print_symbolic(__entry->flush, FLUSH_ACTIONS),
11028eec8463SDavid Sterba 		  __entry->flags,
1103f376df2bSJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
1104f376df2bSJosef Bacik 				BTRFS_GROUP_FLAGS),
11058eec8463SDavid Sterba 		  __entry->bytes)
1106f376df2bSJosef Bacik );
1107f376df2bSJosef Bacik 
1108f376df2bSJosef Bacik 
1109f376df2bSJosef Bacik TRACE_EVENT(btrfs_flush_space,
1110f376df2bSJosef Bacik 
11119a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 num_bytes,
11124b02b00fSJosef Bacik 		 int state, int ret, bool for_preempt),
1113f376df2bSJosef Bacik 
11144b02b00fSJosef Bacik 	TP_ARGS(fs_info, flags, num_bytes, state, ret, for_preempt),
1115f376df2bSJosef Bacik 
11162e63e62dSDavid Sterba 	TP_STRUCT__entry_btrfs(
1117f376df2bSJosef Bacik 		__field(	u64,	flags			)
1118f376df2bSJosef Bacik 		__field(	u64,	num_bytes		)
1119f376df2bSJosef Bacik 		__field(	int,	state			)
1120f376df2bSJosef Bacik 		__field(	int,	ret			)
11214b02b00fSJosef Bacik 		__field(       bool,	for_preempt		)
1122f376df2bSJosef Bacik 	),
1123f376df2bSJosef Bacik 
11242e63e62dSDavid Sterba 	TP_fast_assign_btrfs(fs_info,
1125f376df2bSJosef Bacik 		__entry->flags		=	flags;
1126f376df2bSJosef Bacik 		__entry->num_bytes	=	num_bytes;
1127f376df2bSJosef Bacik 		__entry->state		=	state;
1128f376df2bSJosef Bacik 		__entry->ret		=	ret;
11294b02b00fSJosef Bacik 		__entry->for_preempt	=	for_preempt;
1130f376df2bSJosef Bacik 	),
1131f376df2bSJosef Bacik 
11324b02b00fSJosef Bacik 	TP_printk_btrfs("state=%d(%s) flags=%llu(%s) num_bytes=%llu ret=%d for_preempt=%d",
11332e63e62dSDavid Sterba 		  __entry->state,
1134f0cdd15cSNikolay Borisov 		  __print_symbolic(__entry->state, FLUSH_STATES),
11358eec8463SDavid Sterba 		  __entry->flags,
1136f376df2bSJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
1137f376df2bSJosef Bacik 				BTRFS_GROUP_FLAGS),
11384b02b00fSJosef Bacik 		  __entry->num_bytes, __entry->ret, __entry->for_preempt)
1139f376df2bSJosef Bacik );
1140f376df2bSJosef Bacik 
11411abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__reserved_extent,
11421abe9b8aSliubo 
11439a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
11441abe9b8aSliubo 
114571ff6437SJeff Mahoney 	TP_ARGS(fs_info, start, len),
11461abe9b8aSliubo 
1147bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
11481abe9b8aSliubo 		__field(	u64,  start			)
11491abe9b8aSliubo 		__field(	u64,  len			)
11501abe9b8aSliubo 	),
11511abe9b8aSliubo 
115271ff6437SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
11531abe9b8aSliubo 		__entry->start		= start;
11541abe9b8aSliubo 		__entry->len		= len;
11551abe9b8aSliubo 	),
11561abe9b8aSliubo 
1157562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) start=%llu len=%llu",
115871ff6437SJeff Mahoney 		  show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
11598eec8463SDavid Sterba 		  __entry->start,
11608eec8463SDavid Sterba 		  __entry->len)
11611abe9b8aSliubo );
11621abe9b8aSliubo 
11631abe9b8aSliubo DEFINE_EVENT(btrfs__reserved_extent,  btrfs_reserved_extent_alloc,
11641abe9b8aSliubo 
11659a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
11661abe9b8aSliubo 
116771ff6437SJeff Mahoney 	TP_ARGS(fs_info, start, len)
11681abe9b8aSliubo );
11691abe9b8aSliubo 
11701abe9b8aSliubo DEFINE_EVENT(btrfs__reserved_extent,  btrfs_reserved_extent_free,
11711abe9b8aSliubo 
11729a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
11731abe9b8aSliubo 
117471ff6437SJeff Mahoney 	TP_ARGS(fs_info, start, len)
11751abe9b8aSliubo );
11761abe9b8aSliubo 
11773f7de037SJosef Bacik TRACE_EVENT(find_free_extent,
11783f7de037SJosef Bacik 
1179437490feSQu Wenruo 	TP_PROTO(const struct btrfs_root *root, u64 num_bytes,
11809a35b637SJeff Mahoney 		 u64 empty_size, u64 data),
11813f7de037SJosef Bacik 
1182437490feSQu Wenruo 	TP_ARGS(root, num_bytes, empty_size, data),
11833f7de037SJosef Bacik 
1184bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
1185437490feSQu Wenruo 		__field(	u64,	root_objectid		)
11863f7de037SJosef Bacik 		__field(	u64,	num_bytes		)
11873f7de037SJosef Bacik 		__field(	u64,	empty_size		)
11883f7de037SJosef Bacik 		__field(	u64,	data			)
11893f7de037SJosef Bacik 	),
11903f7de037SJosef Bacik 
1191437490feSQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
1192437490feSQu Wenruo 		__entry->root_objectid	= root->root_key.objectid;
11933f7de037SJosef Bacik 		__entry->num_bytes	= num_bytes;
11943f7de037SJosef Bacik 		__entry->empty_size	= empty_size;
11953f7de037SJosef Bacik 		__entry->data		= data;
11963f7de037SJosef Bacik 	),
11973f7de037SJosef Bacik 
11985439c7f5SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) len=%llu empty_size=%llu flags=%llu(%s)",
1199437490feSQu Wenruo 		  show_root_type(__entry->root_objectid),
12003f7de037SJosef Bacik 		  __entry->num_bytes, __entry->empty_size, __entry->data,
12013f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->data, "|",
12023f7de037SJosef Bacik 				 BTRFS_GROUP_FLAGS))
12033f7de037SJosef Bacik );
12043f7de037SJosef Bacik 
12053f7de037SJosef Bacik DECLARE_EVENT_CLASS(btrfs__reserve_extent,
12063f7de037SJosef Bacik 
120732da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12083f7de037SJosef Bacik 		 u64 len),
12093f7de037SJosef Bacik 
12103dca5c94SQu Wenruo 	TP_ARGS(block_group, start, len),
12113f7de037SJosef Bacik 
1212bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
12133f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
12143f7de037SJosef Bacik 		__field(	u64,	flags			)
12153f7de037SJosef Bacik 		__field(	u64,	start			)
12163f7de037SJosef Bacik 		__field(	u64,	len			)
12173f7de037SJosef Bacik 	),
12183f7de037SJosef Bacik 
12193dca5c94SQu Wenruo 	TP_fast_assign_btrfs(block_group->fs_info,
1220b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
12213f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
12223f7de037SJosef Bacik 		__entry->start		= start;
12233f7de037SJosef Bacik 		__entry->len		= len;
12243f7de037SJosef Bacik 	),
12253f7de037SJosef Bacik 
12265439c7f5SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) block_group=%llu flags=%llu(%s) "
12275439c7f5SDavid Sterba 		  "start=%llu len=%llu",
122871ff6437SJeff Mahoney 		  show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
122971ff6437SJeff Mahoney 		  __entry->bg_objectid,
12303f7de037SJosef Bacik 		  __entry->flags, __print_flags((unsigned long)__entry->flags,
12313f7de037SJosef Bacik 						"|", BTRFS_GROUP_FLAGS),
12323f7de037SJosef Bacik 		  __entry->start, __entry->len)
12333f7de037SJosef Bacik );
12343f7de037SJosef Bacik 
12353f7de037SJosef Bacik DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent,
12363f7de037SJosef Bacik 
123732da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12383f7de037SJosef Bacik 		 u64 len),
12393f7de037SJosef Bacik 
12403dca5c94SQu Wenruo 	TP_ARGS(block_group, start, len)
12413f7de037SJosef Bacik );
12423f7de037SJosef Bacik 
12433f7de037SJosef Bacik DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
12443f7de037SJosef Bacik 
124532da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12463f7de037SJosef Bacik 		 u64 len),
12473f7de037SJosef Bacik 
12483dca5c94SQu Wenruo 	TP_ARGS(block_group, start, len)
12493f7de037SJosef Bacik );
12503f7de037SJosef Bacik 
12513f7de037SJosef Bacik TRACE_EVENT(btrfs_find_cluster,
12523f7de037SJosef Bacik 
125332da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12543f7de037SJosef Bacik 		 u64 bytes, u64 empty_size, u64 min_bytes),
12553f7de037SJosef Bacik 
12563f7de037SJosef Bacik 	TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
12573f7de037SJosef Bacik 
1258bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
12593f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
12603f7de037SJosef Bacik 		__field(	u64,	flags			)
12613f7de037SJosef Bacik 		__field(	u64,	start			)
12623f7de037SJosef Bacik 		__field(	u64,	bytes			)
12633f7de037SJosef Bacik 		__field(	u64,	empty_size		)
12643f7de037SJosef Bacik 		__field(	u64,	min_bytes		)
12653f7de037SJosef Bacik 	),
12663f7de037SJosef Bacik 
1267bc074524SJeff Mahoney 	TP_fast_assign_btrfs(block_group->fs_info,
1268b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
12693f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
12703f7de037SJosef Bacik 		__entry->start		= start;
12713f7de037SJosef Bacik 		__entry->bytes		= bytes;
12723f7de037SJosef Bacik 		__entry->empty_size	= empty_size;
12733f7de037SJosef Bacik 		__entry->min_bytes	= min_bytes;
12743f7de037SJosef Bacik 	),
12753f7de037SJosef Bacik 
12765439c7f5SDavid Sterba 	TP_printk_btrfs("block_group=%llu flags=%llu(%s) start=%llu len=%llu "
12775439c7f5SDavid Sterba 		  "empty_size=%llu min_bytes=%llu", __entry->bg_objectid,
12783f7de037SJosef Bacik 		  __entry->flags,
12793f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
12803f7de037SJosef Bacik 				BTRFS_GROUP_FLAGS), __entry->start,
12813f7de037SJosef Bacik 		  __entry->bytes, __entry->empty_size,  __entry->min_bytes)
12823f7de037SJosef Bacik );
12833f7de037SJosef Bacik 
12843f7de037SJosef Bacik TRACE_EVENT(btrfs_failed_cluster_setup,
12853f7de037SJosef Bacik 
128632da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group),
12873f7de037SJosef Bacik 
12883f7de037SJosef Bacik 	TP_ARGS(block_group),
12893f7de037SJosef Bacik 
1290bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
12913f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
12923f7de037SJosef Bacik 	),
12933f7de037SJosef Bacik 
1294bc074524SJeff Mahoney 	TP_fast_assign_btrfs(block_group->fs_info,
1295b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
12963f7de037SJosef Bacik 	),
12973f7de037SJosef Bacik 
12985439c7f5SDavid Sterba 	TP_printk_btrfs("block_group=%llu", __entry->bg_objectid)
12993f7de037SJosef Bacik );
13003f7de037SJosef Bacik 
13013f7de037SJosef Bacik TRACE_EVENT(btrfs_setup_cluster,
13023f7de037SJosef Bacik 
130332da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group,
13049a35b637SJeff Mahoney 		 const struct btrfs_free_cluster *cluster,
13059a35b637SJeff Mahoney 		 u64 size, int bitmap),
13063f7de037SJosef Bacik 
13073f7de037SJosef Bacik 	TP_ARGS(block_group, cluster, size, bitmap),
13083f7de037SJosef Bacik 
1309bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
13103f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
13113f7de037SJosef Bacik 		__field(	u64,	flags			)
13123f7de037SJosef Bacik 		__field(	u64,	start			)
13133f7de037SJosef Bacik 		__field(	u64,	max_size		)
13143f7de037SJosef Bacik 		__field(	u64,	size			)
13153f7de037SJosef Bacik 		__field(	int,	bitmap			)
13163f7de037SJosef Bacik 	),
13173f7de037SJosef Bacik 
1318bc074524SJeff Mahoney 	TP_fast_assign_btrfs(block_group->fs_info,
1319b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
13203f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
13213f7de037SJosef Bacik 		__entry->start		= cluster->window_start;
13223f7de037SJosef Bacik 		__entry->max_size	= cluster->max_size;
13233f7de037SJosef Bacik 		__entry->size		= size;
13243f7de037SJosef Bacik 		__entry->bitmap		= bitmap;
13253f7de037SJosef Bacik 	),
13263f7de037SJosef Bacik 
13275439c7f5SDavid Sterba 	TP_printk_btrfs("block_group=%llu flags=%llu(%s) window_start=%llu "
13285439c7f5SDavid Sterba 		  "size=%llu max_size=%llu bitmap=%d",
13293f7de037SJosef Bacik 		  __entry->bg_objectid,
13303f7de037SJosef Bacik 		  __entry->flags,
13313f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
13323f7de037SJosef Bacik 				BTRFS_GROUP_FLAGS), __entry->start,
13333f7de037SJosef Bacik 		  __entry->size, __entry->max_size, __entry->bitmap)
13343f7de037SJosef Bacik );
13353f7de037SJosef Bacik 
1336143bede5SJeff Mahoney struct extent_state;
1337143bede5SJeff Mahoney TRACE_EVENT(alloc_extent_state,
1338143bede5SJeff Mahoney 
13399a35b637SJeff Mahoney 	TP_PROTO(const struct extent_state *state,
13409a35b637SJeff Mahoney 		 gfp_t mask, unsigned long IP),
1341143bede5SJeff Mahoney 
1342143bede5SJeff Mahoney 	TP_ARGS(state, mask, IP),
1343143bede5SJeff Mahoney 
1344143bede5SJeff Mahoney 	TP_STRUCT__entry(
13459a35b637SJeff Mahoney 		__field(const struct extent_state *, state)
1346143bede5SJeff Mahoney 		__field(gfp_t, mask)
134794c3f6c6SDavid Sterba 		__field(const void*, ip)
1348143bede5SJeff Mahoney 	),
1349143bede5SJeff Mahoney 
1350143bede5SJeff Mahoney 	TP_fast_assign(
1351143bede5SJeff Mahoney 		__entry->state	= state,
1352143bede5SJeff Mahoney 		__entry->mask	= mask,
135394c3f6c6SDavid Sterba 		__entry->ip	= (const void *)IP
1354143bede5SJeff Mahoney 	),
1355143bede5SJeff Mahoney 
1356562a7a07SDavid Sterba 	TP_printk("state=%p mask=%s caller=%pS", __entry->state,
135794c3f6c6SDavid Sterba 		  show_gfp_flags(__entry->mask), __entry->ip)
1358143bede5SJeff Mahoney );
1359143bede5SJeff Mahoney 
1360143bede5SJeff Mahoney TRACE_EVENT(free_extent_state,
1361143bede5SJeff Mahoney 
13629a35b637SJeff Mahoney 	TP_PROTO(const struct extent_state *state, unsigned long IP),
1363143bede5SJeff Mahoney 
1364143bede5SJeff Mahoney 	TP_ARGS(state, IP),
1365143bede5SJeff Mahoney 
1366143bede5SJeff Mahoney 	TP_STRUCT__entry(
13679a35b637SJeff Mahoney 		__field(const struct extent_state *, state)
136894c3f6c6SDavid Sterba 		__field(const void*, ip)
1369143bede5SJeff Mahoney 	),
1370143bede5SJeff Mahoney 
1371143bede5SJeff Mahoney 	TP_fast_assign(
1372143bede5SJeff Mahoney 		__entry->state	= state,
137394c3f6c6SDavid Sterba 		__entry->ip = (const void *)IP
1374143bede5SJeff Mahoney 	),
1375143bede5SJeff Mahoney 
137694c3f6c6SDavid Sterba 	TP_printk("state=%p caller=%pS", __entry->state, __entry->ip)
1377143bede5SJeff Mahoney );
1378143bede5SJeff Mahoney 
137952483bc2SQu Wenruo DECLARE_EVENT_CLASS(btrfs__work,
138052483bc2SQu Wenruo 
13819a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
138252483bc2SQu Wenruo 
138352483bc2SQu Wenruo 	TP_ARGS(work),
138452483bc2SQu Wenruo 
1385bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
13869a35b637SJeff Mahoney 		__field(	const void *,	work			)
13879a35b637SJeff Mahoney 		__field(	const void *,	wq			)
13889a35b637SJeff Mahoney 		__field(	const void *,	func			)
13899a35b637SJeff Mahoney 		__field(	const void *,	ordered_func		)
13909a35b637SJeff Mahoney 		__field(	const void *,	ordered_free		)
13919a35b637SJeff Mahoney 		__field(	const void *,	normal_work		)
139252483bc2SQu Wenruo 	),
139352483bc2SQu Wenruo 
1394bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_work_owner(work),
139552483bc2SQu Wenruo 		__entry->work		= work;
139652483bc2SQu Wenruo 		__entry->wq		= work->wq;
139752483bc2SQu Wenruo 		__entry->func		= work->func;
139852483bc2SQu Wenruo 		__entry->ordered_func	= work->ordered_func;
139952483bc2SQu Wenruo 		__entry->ordered_free	= work->ordered_free;
1400b38a6258SLiu Bo 		__entry->normal_work	= &work->normal_work;
140152483bc2SQu Wenruo 	),
140252483bc2SQu Wenruo 
1403d75f773cSSakari Ailus 	TP_printk_btrfs("work=%p (normal_work=%p) wq=%p func=%ps ordered_func=%p "
1404b38a6258SLiu Bo 		  "ordered_free=%p",
1405b38a6258SLiu Bo 		  __entry->work, __entry->normal_work, __entry->wq,
1406b38a6258SLiu Bo 		   __entry->func, __entry->ordered_func, __entry->ordered_free)
140752483bc2SQu Wenruo );
140852483bc2SQu Wenruo 
1409ac0c7cf8SDavid Sterba /*
1410c9eb55dbSOmar Sandoval  * For situations when the work is freed, we pass fs_info and a tag that matches
1411c9eb55dbSOmar Sandoval  * the address of the work structure so it can be paired with the scheduling
1412c9eb55dbSOmar Sandoval  * event. DO NOT add anything here that dereferences wtag.
1413ac0c7cf8SDavid Sterba  */
141452483bc2SQu Wenruo DECLARE_EVENT_CLASS(btrfs__work__done,
141552483bc2SQu Wenruo 
14169a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
141752483bc2SQu Wenruo 
1418ac0c7cf8SDavid Sterba 	TP_ARGS(fs_info, wtag),
141952483bc2SQu Wenruo 
1420bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
14219a35b637SJeff Mahoney 		__field(	const void *,	wtag			)
142252483bc2SQu Wenruo 	),
142352483bc2SQu Wenruo 
1424ac0c7cf8SDavid Sterba 	TP_fast_assign_btrfs(fs_info,
1425ac0c7cf8SDavid Sterba 		__entry->wtag		= wtag;
142652483bc2SQu Wenruo 	),
142752483bc2SQu Wenruo 
1428ac0c7cf8SDavid Sterba 	TP_printk_btrfs("work->%p", __entry->wtag)
142952483bc2SQu Wenruo );
143052483bc2SQu Wenruo 
143152483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_work_queued,
143252483bc2SQu Wenruo 
14339a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
143452483bc2SQu Wenruo 
143552483bc2SQu Wenruo 	TP_ARGS(work)
143652483bc2SQu Wenruo );
143752483bc2SQu Wenruo 
143852483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_work_sched,
143952483bc2SQu Wenruo 
14409a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
144152483bc2SQu Wenruo 
144252483bc2SQu Wenruo 	TP_ARGS(work)
144352483bc2SQu Wenruo );
144452483bc2SQu Wenruo 
144552483bc2SQu Wenruo DEFINE_EVENT(btrfs__work__done, btrfs_all_work_done,
144652483bc2SQu Wenruo 
14479a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
144852483bc2SQu Wenruo 
1449ac0c7cf8SDavid Sterba 	TP_ARGS(fs_info, wtag)
145052483bc2SQu Wenruo );
145152483bc2SQu Wenruo 
145252483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_ordered_sched,
145352483bc2SQu Wenruo 
14549a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
145552483bc2SQu Wenruo 
145652483bc2SQu Wenruo 	TP_ARGS(work)
145752483bc2SQu Wenruo );
145852483bc2SQu Wenruo 
1459c3a46891SQu Wenruo DECLARE_EVENT_CLASS(btrfs__workqueue,
1460c3a46891SQu Wenruo 
14619a35b637SJeff Mahoney 	TP_PROTO(const struct __btrfs_workqueue *wq,
14629a35b637SJeff Mahoney 		 const char *name, int high),
1463c3a46891SQu Wenruo 
1464c3a46891SQu Wenruo 	TP_ARGS(wq, name, high),
1465c3a46891SQu Wenruo 
1466bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
14679a35b637SJeff Mahoney 		__field(	const void *,	wq			)
1468c3a46891SQu Wenruo 		__string(	name,	name			)
1469c3a46891SQu Wenruo 		__field(	int ,	high			)
1470c3a46891SQu Wenruo 	),
1471c3a46891SQu Wenruo 
1472bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
1473c3a46891SQu Wenruo 		__entry->wq		= wq;
1474c3a46891SQu Wenruo 		__assign_str(name, name);
1475c3a46891SQu Wenruo 		__entry->high		= high;
1476c3a46891SQu Wenruo 	),
1477c3a46891SQu Wenruo 
1478562a7a07SDavid Sterba 	TP_printk_btrfs("name=%s%s wq=%p", __get_str(name),
1479c3a46891SQu Wenruo 		  __print_flags(__entry->high, "",
1480c3a46891SQu Wenruo 				{(WQ_HIGHPRI),	"-high"}),
1481c3a46891SQu Wenruo 		  __entry->wq)
1482c3a46891SQu Wenruo );
1483c3a46891SQu Wenruo 
1484c3a46891SQu Wenruo DEFINE_EVENT(btrfs__workqueue, btrfs_workqueue_alloc,
1485c3a46891SQu Wenruo 
14869a35b637SJeff Mahoney 	TP_PROTO(const struct __btrfs_workqueue *wq,
14879a35b637SJeff Mahoney 		 const char *name, int high),
1488c3a46891SQu Wenruo 
1489c3a46891SQu Wenruo 	TP_ARGS(wq, name, high)
1490c3a46891SQu Wenruo );
1491c3a46891SQu Wenruo 
1492c3a46891SQu Wenruo DECLARE_EVENT_CLASS(btrfs__workqueue_done,
1493c3a46891SQu Wenruo 
14949a35b637SJeff Mahoney 	TP_PROTO(const struct __btrfs_workqueue *wq),
1495c3a46891SQu Wenruo 
1496c3a46891SQu Wenruo 	TP_ARGS(wq),
1497c3a46891SQu Wenruo 
1498bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
14999a35b637SJeff Mahoney 		__field(	const void *,	wq		)
1500c3a46891SQu Wenruo 	),
1501c3a46891SQu Wenruo 
1502bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
1503c3a46891SQu Wenruo 		__entry->wq		= wq;
1504c3a46891SQu Wenruo 	),
1505c3a46891SQu Wenruo 
1506bc074524SJeff Mahoney 	TP_printk_btrfs("wq=%p", __entry->wq)
1507c3a46891SQu Wenruo );
1508c3a46891SQu Wenruo 
1509c3a46891SQu Wenruo DEFINE_EVENT(btrfs__workqueue_done, btrfs_workqueue_destroy,
1510c3a46891SQu Wenruo 
15119a35b637SJeff Mahoney 	TP_PROTO(const struct __btrfs_workqueue *wq),
1512c3a46891SQu Wenruo 
1513c3a46891SQu Wenruo 	TP_ARGS(wq)
1514c3a46891SQu Wenruo );
151552483bc2SQu Wenruo 
151681fb6f77SQu Wenruo #define BTRFS_QGROUP_OPERATIONS				\
151781fb6f77SQu Wenruo 	{ QGROUP_RESERVE,	"reserve"	},	\
151881fb6f77SQu Wenruo 	{ QGROUP_RELEASE,	"release"	},	\
151981fb6f77SQu Wenruo 	{ QGROUP_FREE,		"free"		}
152081fb6f77SQu Wenruo 
152181fb6f77SQu Wenruo DECLARE_EVENT_CLASS(btrfs__qgroup_rsv_data,
152281fb6f77SQu Wenruo 
15239a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode, u64 start, u64 len,
15249a35b637SJeff Mahoney 		 u64 reserved, int op),
152581fb6f77SQu Wenruo 
152681fb6f77SQu Wenruo 	TP_ARGS(inode, start, len, reserved, op),
152781fb6f77SQu Wenruo 
1528bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
152981fb6f77SQu Wenruo 		__field(	u64,		rootid		)
1530f8f8e189SDavid Sterba 		__field(	u64,		ino		)
153181fb6f77SQu Wenruo 		__field(	u64,		start		)
153281fb6f77SQu Wenruo 		__field(	u64,		len		)
153381fb6f77SQu Wenruo 		__field(	u64,		reserved	)
153481fb6f77SQu Wenruo 		__field(	int,		op		)
153581fb6f77SQu Wenruo 	),
153681fb6f77SQu Wenruo 
1537bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
15384fd786e6SMisono Tomohiro 		__entry->rootid		=
15394fd786e6SMisono Tomohiro 			BTRFS_I(inode)->root->root_key.objectid;
1540f8f8e189SDavid Sterba 		__entry->ino		= btrfs_ino(BTRFS_I(inode));
154181fb6f77SQu Wenruo 		__entry->start		= start;
154281fb6f77SQu Wenruo 		__entry->len		= len;
154381fb6f77SQu Wenruo 		__entry->reserved	= reserved;
154481fb6f77SQu Wenruo 		__entry->op		= op;
154581fb6f77SQu Wenruo 	),
154681fb6f77SQu Wenruo 
1547f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu ino=%llu start=%llu len=%llu reserved=%llu op=%s",
154881fb6f77SQu Wenruo 		  __entry->rootid, __entry->ino, __entry->start, __entry->len,
154981fb6f77SQu Wenruo 		  __entry->reserved,
155081fb6f77SQu Wenruo 		  __print_flags((unsigned long)__entry->op, "",
155181fb6f77SQu Wenruo 				BTRFS_QGROUP_OPERATIONS)
155281fb6f77SQu Wenruo 	)
155381fb6f77SQu Wenruo );
155481fb6f77SQu Wenruo 
155581fb6f77SQu Wenruo DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_reserve_data,
155681fb6f77SQu Wenruo 
15579a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode, u64 start, u64 len,
15589a35b637SJeff Mahoney 		 u64 reserved, int op),
155981fb6f77SQu Wenruo 
156081fb6f77SQu Wenruo 	TP_ARGS(inode, start, len, reserved, op)
156181fb6f77SQu Wenruo );
156281fb6f77SQu Wenruo 
156381fb6f77SQu Wenruo DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_release_data,
156481fb6f77SQu Wenruo 
15659a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode, u64 start, u64 len,
15669a35b637SJeff Mahoney 		 u64 reserved, int op),
156781fb6f77SQu Wenruo 
156881fb6f77SQu Wenruo 	TP_ARGS(inode, start, len, reserved, op)
156981fb6f77SQu Wenruo );
157081fb6f77SQu Wenruo 
15710f5dcf8dSMark Fasheh DECLARE_EVENT_CLASS(btrfs_qgroup_extent,
15729a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
15739a35b637SJeff Mahoney 		 const struct btrfs_qgroup_extent_record *rec),
15740f5dcf8dSMark Fasheh 
1575bc074524SJeff Mahoney 	TP_ARGS(fs_info, rec),
15760f5dcf8dSMark Fasheh 
1577bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
15780f5dcf8dSMark Fasheh 		__field(	u64,  bytenr		)
15790f5dcf8dSMark Fasheh 		__field(	u64,  num_bytes		)
15800f5dcf8dSMark Fasheh 	),
15810f5dcf8dSMark Fasheh 
1582bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
15830f5dcf8dSMark Fasheh 		__entry->bytenr		= rec->bytenr,
15840f5dcf8dSMark Fasheh 		__entry->num_bytes	= rec->num_bytes;
15850f5dcf8dSMark Fasheh 	),
15860f5dcf8dSMark Fasheh 
1587562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu",
158894c3f6c6SDavid Sterba 		  __entry->bytenr, __entry->num_bytes)
15890f5dcf8dSMark Fasheh );
15900f5dcf8dSMark Fasheh 
15910f5dcf8dSMark Fasheh DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_account_extents,
15920f5dcf8dSMark Fasheh 
15939a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
15949a35b637SJeff Mahoney 		 const struct btrfs_qgroup_extent_record *rec),
15950f5dcf8dSMark Fasheh 
1596bc074524SJeff Mahoney 	TP_ARGS(fs_info, rec)
15970f5dcf8dSMark Fasheh );
15980f5dcf8dSMark Fasheh 
159950b3e040SQu Wenruo DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_trace_extent,
16000f5dcf8dSMark Fasheh 
16019a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
16029a35b637SJeff Mahoney 		 const struct btrfs_qgroup_extent_record *rec),
16030f5dcf8dSMark Fasheh 
1604bc074524SJeff Mahoney 	TP_ARGS(fs_info, rec)
16050f5dcf8dSMark Fasheh );
16060f5dcf8dSMark Fasheh 
1607c337e7b0SQu Wenruo TRACE_EVENT(qgroup_num_dirty_extents,
1608c337e7b0SQu Wenruo 
1609c337e7b0SQu Wenruo 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 transid,
1610c337e7b0SQu Wenruo 		 u64 num_dirty_extents),
1611c337e7b0SQu Wenruo 
1612c337e7b0SQu Wenruo 	TP_ARGS(fs_info, transid, num_dirty_extents),
1613c337e7b0SQu Wenruo 
1614c337e7b0SQu Wenruo 	TP_STRUCT__entry_btrfs(
1615c337e7b0SQu Wenruo 		__field(	u64, transid			)
1616c337e7b0SQu Wenruo 		__field(	u64, num_dirty_extents		)
1617c337e7b0SQu Wenruo 	),
1618c337e7b0SQu Wenruo 
1619c337e7b0SQu Wenruo 	TP_fast_assign_btrfs(fs_info,
1620c337e7b0SQu Wenruo 		__entry->transid	   = transid;
1621c337e7b0SQu Wenruo 		__entry->num_dirty_extents = num_dirty_extents;
1622c337e7b0SQu Wenruo 	),
1623c337e7b0SQu Wenruo 
1624c337e7b0SQu Wenruo 	TP_printk_btrfs("transid=%llu num_dirty_extents=%llu",
1625c337e7b0SQu Wenruo 		__entry->transid, __entry->num_dirty_extents)
1626c337e7b0SQu Wenruo );
1627c337e7b0SQu Wenruo 
16280f5dcf8dSMark Fasheh TRACE_EVENT(btrfs_qgroup_account_extent,
16290f5dcf8dSMark Fasheh 
1630c9f6f3cdSQu Wenruo 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 transid, u64 bytenr,
1631bc074524SJeff Mahoney 		 u64 num_bytes, u64 nr_old_roots, u64 nr_new_roots),
16320f5dcf8dSMark Fasheh 
1633c9f6f3cdSQu Wenruo 	TP_ARGS(fs_info, transid, bytenr, num_bytes, nr_old_roots,
1634c9f6f3cdSQu Wenruo 		nr_new_roots),
16350f5dcf8dSMark Fasheh 
1636bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
1637c9f6f3cdSQu Wenruo 		__field(	u64,  transid			)
16380f5dcf8dSMark Fasheh 		__field(	u64,  bytenr			)
16390f5dcf8dSMark Fasheh 		__field(	u64,  num_bytes			)
16400f5dcf8dSMark Fasheh 		__field(	u64,  nr_old_roots		)
16410f5dcf8dSMark Fasheh 		__field(	u64,  nr_new_roots		)
16420f5dcf8dSMark Fasheh 	),
16430f5dcf8dSMark Fasheh 
1644bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
1645c9f6f3cdSQu Wenruo 		__entry->transid	= transid;
16460f5dcf8dSMark Fasheh 		__entry->bytenr		= bytenr;
16470f5dcf8dSMark Fasheh 		__entry->num_bytes	= num_bytes;
16480f5dcf8dSMark Fasheh 		__entry->nr_old_roots	= nr_old_roots;
16490f5dcf8dSMark Fasheh 		__entry->nr_new_roots	= nr_new_roots;
16500f5dcf8dSMark Fasheh 	),
16510f5dcf8dSMark Fasheh 
1652c9f6f3cdSQu Wenruo 	TP_printk_btrfs(
1653c9f6f3cdSQu Wenruo "transid=%llu bytenr=%llu num_bytes=%llu nr_old_roots=%llu nr_new_roots=%llu",
1654c9f6f3cdSQu Wenruo 		__entry->transid,
16550f5dcf8dSMark Fasheh 		__entry->bytenr,
16560f5dcf8dSMark Fasheh 		__entry->num_bytes,
16570f5dcf8dSMark Fasheh 		__entry->nr_old_roots,
16580f5dcf8dSMark Fasheh 		__entry->nr_new_roots)
16590f5dcf8dSMark Fasheh );
16600f5dcf8dSMark Fasheh 
16610f5dcf8dSMark Fasheh TRACE_EVENT(qgroup_update_counters,
16620f5dcf8dSMark Fasheh 
16638b317901SQu Wenruo 	TP_PROTO(const struct btrfs_fs_info *fs_info,
16641d2e7c7cSDavid Sterba 		 const struct btrfs_qgroup *qgroup,
1665bc074524SJeff Mahoney 		 u64 cur_old_count, u64 cur_new_count),
16660f5dcf8dSMark Fasheh 
16678b317901SQu Wenruo 	TP_ARGS(fs_info, qgroup, cur_old_count, cur_new_count),
16680f5dcf8dSMark Fasheh 
1669bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
16700f5dcf8dSMark Fasheh 		__field(	u64,  qgid			)
16718b317901SQu Wenruo 		__field(	u64,  old_rfer			)
16728b317901SQu Wenruo 		__field(	u64,  old_excl			)
16730f5dcf8dSMark Fasheh 		__field(	u64,  cur_old_count		)
16740f5dcf8dSMark Fasheh 		__field(	u64,  cur_new_count		)
16750f5dcf8dSMark Fasheh 	),
16760f5dcf8dSMark Fasheh 
1677bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
16788b317901SQu Wenruo 		__entry->qgid		= qgroup->qgroupid;
16798b317901SQu Wenruo 		__entry->old_rfer	= qgroup->rfer;
16808b317901SQu Wenruo 		__entry->old_excl	= qgroup->excl;
16810f5dcf8dSMark Fasheh 		__entry->cur_old_count	= cur_old_count;
16820f5dcf8dSMark Fasheh 		__entry->cur_new_count	= cur_new_count;
16830f5dcf8dSMark Fasheh 	),
16840f5dcf8dSMark Fasheh 
16858b317901SQu Wenruo 	TP_printk_btrfs("qgid=%llu old_rfer=%llu old_excl=%llu cur_old_count=%llu cur_new_count=%llu",
16868b317901SQu Wenruo 		  __entry->qgid, __entry->old_rfer, __entry->old_excl,
16878b317901SQu Wenruo 		  __entry->cur_old_count, __entry->cur_new_count)
16880f5dcf8dSMark Fasheh );
16890f5dcf8dSMark Fasheh 
16903159fe7bSQu Wenruo TRACE_EVENT(qgroup_update_reserve,
16913159fe7bSQu Wenruo 
16923159fe7bSQu Wenruo 	TP_PROTO(struct btrfs_fs_info *fs_info, struct btrfs_qgroup *qgroup,
169364ee4e75SQu Wenruo 		 s64 diff, int type),
16943159fe7bSQu Wenruo 
169564ee4e75SQu Wenruo 	TP_ARGS(fs_info, qgroup, diff, type),
16963159fe7bSQu Wenruo 
16973159fe7bSQu Wenruo 	TP_STRUCT__entry_btrfs(
16983159fe7bSQu Wenruo 		__field(	u64,	qgid			)
16993159fe7bSQu Wenruo 		__field(	u64,	cur_reserved		)
17003159fe7bSQu Wenruo 		__field(	s64,	diff			)
170164ee4e75SQu Wenruo 		__field(	int,	type			)
17023159fe7bSQu Wenruo 	),
17033159fe7bSQu Wenruo 
17043159fe7bSQu Wenruo 	TP_fast_assign_btrfs(fs_info,
17053159fe7bSQu Wenruo 		__entry->qgid		= qgroup->qgroupid;
170664ee4e75SQu Wenruo 		__entry->cur_reserved	= qgroup->rsv.values[type];
17073159fe7bSQu Wenruo 		__entry->diff		= diff;
17081b2442b4SQu Wenruo 		__entry->type		= type;
17093159fe7bSQu Wenruo 	),
17103159fe7bSQu Wenruo 
171164ee4e75SQu Wenruo 	TP_printk_btrfs("qgid=%llu type=%s cur_reserved=%llu diff=%lld",
17121cb1f0b2SNikolay Borisov 		__entry->qgid, __print_symbolic(__entry->type, QGROUP_RSV_TYPES),
171364ee4e75SQu Wenruo 		__entry->cur_reserved, __entry->diff)
17143159fe7bSQu Wenruo );
17153159fe7bSQu Wenruo 
17163159fe7bSQu Wenruo TRACE_EVENT(qgroup_meta_reserve,
17173159fe7bSQu Wenruo 
17184ee0d883SQu Wenruo 	TP_PROTO(struct btrfs_root *root, s64 diff, int type),
17193159fe7bSQu Wenruo 
17204ee0d883SQu Wenruo 	TP_ARGS(root, diff, type),
17213159fe7bSQu Wenruo 
17223159fe7bSQu Wenruo 	TP_STRUCT__entry_btrfs(
17233159fe7bSQu Wenruo 		__field(	u64,	refroot			)
17243159fe7bSQu Wenruo 		__field(	s64,	diff			)
17254ee0d883SQu Wenruo 		__field(	int,	type			)
17263159fe7bSQu Wenruo 	),
17273159fe7bSQu Wenruo 
17283159fe7bSQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
17294fd786e6SMisono Tomohiro 		__entry->refroot	= root->root_key.objectid;
17303159fe7bSQu Wenruo 		__entry->diff		= diff;
17311b2442b4SQu Wenruo 		__entry->type		= type;
17323159fe7bSQu Wenruo 	),
17333159fe7bSQu Wenruo 
17344ee0d883SQu Wenruo 	TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
17354ee0d883SQu Wenruo 		show_root_type(__entry->refroot),
17361cb1f0b2SNikolay Borisov 		__print_symbolic(__entry->type, QGROUP_RSV_TYPES), __entry->diff)
17374ee0d883SQu Wenruo );
17384ee0d883SQu Wenruo 
17394ee0d883SQu Wenruo TRACE_EVENT(qgroup_meta_convert,
17404ee0d883SQu Wenruo 
17414ee0d883SQu Wenruo 	TP_PROTO(struct btrfs_root *root, s64 diff),
17424ee0d883SQu Wenruo 
17434ee0d883SQu Wenruo 	TP_ARGS(root, diff),
17444ee0d883SQu Wenruo 
17454ee0d883SQu Wenruo 	TP_STRUCT__entry_btrfs(
17464ee0d883SQu Wenruo 		__field(	u64,	refroot			)
17474ee0d883SQu Wenruo 		__field(	s64,	diff			)
17484ee0d883SQu Wenruo 	),
17494ee0d883SQu Wenruo 
17504ee0d883SQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
17514fd786e6SMisono Tomohiro 		__entry->refroot	= root->root_key.objectid;
17524ee0d883SQu Wenruo 		__entry->diff		= diff;
17534ee0d883SQu Wenruo 	),
17544ee0d883SQu Wenruo 
17554ee0d883SQu Wenruo 	TP_printk_btrfs("refroot=%llu(%s) type=%s->%s diff=%lld",
17564ee0d883SQu Wenruo 		show_root_type(__entry->refroot),
17571cb1f0b2SNikolay Borisov 		__print_symbolic(BTRFS_QGROUP_RSV_META_PREALLOC, QGROUP_RSV_TYPES),
17581cb1f0b2SNikolay Borisov 		__print_symbolic(BTRFS_QGROUP_RSV_META_PERTRANS, QGROUP_RSV_TYPES),
17594ee0d883SQu Wenruo 		__entry->diff)
17604ee0d883SQu Wenruo );
17614ee0d883SQu Wenruo 
17624ee0d883SQu Wenruo TRACE_EVENT(qgroup_meta_free_all_pertrans,
17634ee0d883SQu Wenruo 
17644ee0d883SQu Wenruo 	TP_PROTO(struct btrfs_root *root),
17654ee0d883SQu Wenruo 
17664ee0d883SQu Wenruo 	TP_ARGS(root),
17674ee0d883SQu Wenruo 
17684ee0d883SQu Wenruo 	TP_STRUCT__entry_btrfs(
17694ee0d883SQu Wenruo 		__field(	u64,	refroot			)
17704ee0d883SQu Wenruo 		__field(	s64,	diff			)
17714ee0d883SQu Wenruo 		__field(	int,	type			)
17724ee0d883SQu Wenruo 	),
17734ee0d883SQu Wenruo 
17744ee0d883SQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
17754fd786e6SMisono Tomohiro 		__entry->refroot	= root->root_key.objectid;
17764ee0d883SQu Wenruo 		spin_lock(&root->qgroup_meta_rsv_lock);
17774ee0d883SQu Wenruo 		__entry->diff		= -(s64)root->qgroup_meta_rsv_pertrans;
17784ee0d883SQu Wenruo 		spin_unlock(&root->qgroup_meta_rsv_lock);
17794ee0d883SQu Wenruo 		__entry->type		= BTRFS_QGROUP_RSV_META_PERTRANS;
17804ee0d883SQu Wenruo 	),
17814ee0d883SQu Wenruo 
17824ee0d883SQu Wenruo 	TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
17834ee0d883SQu Wenruo 		show_root_type(__entry->refroot),
17841cb1f0b2SNikolay Borisov 		__print_symbolic(__entry->type, QGROUP_RSV_TYPES), __entry->diff)
17853159fe7bSQu Wenruo );
17863159fe7bSQu Wenruo 
178700142756SJeff Mahoney DECLARE_EVENT_CLASS(btrfs__prelim_ref,
178800142756SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
178900142756SJeff Mahoney 		 const struct prelim_ref *oldref,
179000142756SJeff Mahoney 		 const struct prelim_ref *newref, u64 tree_size),
179100142756SJeff Mahoney 	TP_ARGS(fs_info, newref, oldref, tree_size),
179200142756SJeff Mahoney 
179300142756SJeff Mahoney 	TP_STRUCT__entry_btrfs(
179400142756SJeff Mahoney 		__field(	u64,  root_id		)
179500142756SJeff Mahoney 		__field(	u64,  objectid		)
179600142756SJeff Mahoney 		__field(	 u8,  type		)
179700142756SJeff Mahoney 		__field(	u64,  offset		)
179800142756SJeff Mahoney 		__field(	int,  level		)
179900142756SJeff Mahoney 		__field(	int,  old_count		)
180000142756SJeff Mahoney 		__field(	u64,  parent		)
180100142756SJeff Mahoney 		__field(	u64,  bytenr		)
180200142756SJeff Mahoney 		__field(	int,  mod_count		)
180300142756SJeff Mahoney 		__field(	u64,  tree_size		)
180400142756SJeff Mahoney 	),
180500142756SJeff Mahoney 
180600142756SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
180700142756SJeff Mahoney 		__entry->root_id	= oldref->root_id;
180800142756SJeff Mahoney 		__entry->objectid	= oldref->key_for_search.objectid;
180900142756SJeff Mahoney 		__entry->type		= oldref->key_for_search.type;
181000142756SJeff Mahoney 		__entry->offset		= oldref->key_for_search.offset;
181100142756SJeff Mahoney 		__entry->level		= oldref->level;
181200142756SJeff Mahoney 		__entry->old_count	= oldref->count;
181300142756SJeff Mahoney 		__entry->parent		= oldref->parent;
181400142756SJeff Mahoney 		__entry->bytenr		= oldref->wanted_disk_byte;
181500142756SJeff Mahoney 		__entry->mod_count	= newref ? newref->count : 0;
181600142756SJeff Mahoney 		__entry->tree_size	= tree_size;
181700142756SJeff Mahoney 	),
181800142756SJeff Mahoney 
181900142756SJeff Mahoney 	TP_printk_btrfs("root_id=%llu key=[%llu,%u,%llu] level=%d count=[%d+%d=%d] parent=%llu wanted_disk_byte=%llu nodes=%llu",
18208eec8463SDavid Sterba 			__entry->root_id,
18218eec8463SDavid Sterba 			__entry->objectid, __entry->type,
18228eec8463SDavid Sterba 			__entry->offset, __entry->level,
182300142756SJeff Mahoney 			__entry->old_count, __entry->mod_count,
182400142756SJeff Mahoney 			__entry->old_count + __entry->mod_count,
18258eec8463SDavid Sterba 			__entry->parent,
18268eec8463SDavid Sterba 			__entry->bytenr,
18278eec8463SDavid Sterba 			__entry->tree_size)
182800142756SJeff Mahoney );
182900142756SJeff Mahoney 
183000142756SJeff Mahoney DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_merge,
183100142756SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
183200142756SJeff Mahoney 		 const struct prelim_ref *oldref,
183300142756SJeff Mahoney 		 const struct prelim_ref *newref, u64 tree_size),
183400142756SJeff Mahoney 	TP_ARGS(fs_info, oldref, newref, tree_size)
183500142756SJeff Mahoney );
183600142756SJeff Mahoney 
183700142756SJeff Mahoney DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_insert,
183800142756SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
183900142756SJeff Mahoney 		 const struct prelim_ref *oldref,
184000142756SJeff Mahoney 		 const struct prelim_ref *newref, u64 tree_size),
184100142756SJeff Mahoney 	TP_ARGS(fs_info, oldref, newref, tree_size)
184200142756SJeff Mahoney );
184300142756SJeff Mahoney 
1844dd48d407SJosef Bacik TRACE_EVENT(btrfs_inode_mod_outstanding_extents,
18451d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_root *root, u64 ino, int mod),
1846dd48d407SJosef Bacik 
1847dd48d407SJosef Bacik 	TP_ARGS(root, ino, mod),
1848dd48d407SJosef Bacik 
1849dd48d407SJosef Bacik 	TP_STRUCT__entry_btrfs(
1850dd48d407SJosef Bacik 		__field(	u64, root_objectid	)
1851dd48d407SJosef Bacik 		__field(	u64, ino		)
1852dd48d407SJosef Bacik 		__field(	int, mod		)
1853dd48d407SJosef Bacik 	),
1854dd48d407SJosef Bacik 
1855dd48d407SJosef Bacik 	TP_fast_assign_btrfs(root->fs_info,
18564fd786e6SMisono Tomohiro 		__entry->root_objectid	= root->root_key.objectid;
1857dd48d407SJosef Bacik 		__entry->ino		= ino;
1858dd48d407SJosef Bacik 		__entry->mod		= mod;
1859dd48d407SJosef Bacik 	),
1860dd48d407SJosef Bacik 
1861dd48d407SJosef Bacik 	TP_printk_btrfs("root=%llu(%s) ino=%llu mod=%d",
1862dd48d407SJosef Bacik 			show_root_type(__entry->root_objectid),
18638eec8463SDavid Sterba 			__entry->ino, __entry->mod)
1864dd48d407SJosef Bacik );
18653dca5c94SQu Wenruo 
18664ed0a7a3SQu Wenruo DECLARE_EVENT_CLASS(btrfs__block_group,
186732da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
18684ed0a7a3SQu Wenruo 
18694ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache),
18704ed0a7a3SQu Wenruo 
18714ed0a7a3SQu Wenruo 	TP_STRUCT__entry_btrfs(
18724ed0a7a3SQu Wenruo 		__field(	u64,	bytenr		)
18734ed0a7a3SQu Wenruo 		__field(	u64,	len		)
18744ed0a7a3SQu Wenruo 		__field(	u64,	used		)
18754ed0a7a3SQu Wenruo 		__field(	u64,	flags		)
18764ed0a7a3SQu Wenruo 	),
18774ed0a7a3SQu Wenruo 
18784ed0a7a3SQu Wenruo 	TP_fast_assign_btrfs(bg_cache->fs_info,
1879b3470b5dSDavid Sterba 		__entry->bytenr = bg_cache->start,
1880b3470b5dSDavid Sterba 		__entry->len	= bg_cache->length,
1881bf38be65SDavid Sterba 		__entry->used	= bg_cache->used;
18824ed0a7a3SQu Wenruo 		__entry->flags	= bg_cache->flags;
18834ed0a7a3SQu Wenruo 	),
18844ed0a7a3SQu Wenruo 
18854ed0a7a3SQu Wenruo 	TP_printk_btrfs("bg bytenr=%llu len=%llu used=%llu flags=%llu(%s)",
18864ed0a7a3SQu Wenruo 		__entry->bytenr, __entry->len, __entry->used, __entry->flags,
18874ed0a7a3SQu Wenruo 		__print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS))
18884ed0a7a3SQu Wenruo );
18894ed0a7a3SQu Wenruo 
18904ed0a7a3SQu Wenruo DEFINE_EVENT(btrfs__block_group, btrfs_remove_block_group,
189132da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
18924ed0a7a3SQu Wenruo 
18934ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache)
18944ed0a7a3SQu Wenruo );
18954ed0a7a3SQu Wenruo 
18964ed0a7a3SQu Wenruo DEFINE_EVENT(btrfs__block_group, btrfs_add_unused_block_group,
189732da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
18984ed0a7a3SQu Wenruo 
18994ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache)
19004ed0a7a3SQu Wenruo );
19014ed0a7a3SQu Wenruo 
190218bb8bbfSJohannes Thumshirn DEFINE_EVENT(btrfs__block_group, btrfs_add_reclaim_block_group,
190318bb8bbfSJohannes Thumshirn 	TP_PROTO(const struct btrfs_block_group *bg_cache),
190418bb8bbfSJohannes Thumshirn 
190518bb8bbfSJohannes Thumshirn 	TP_ARGS(bg_cache)
190618bb8bbfSJohannes Thumshirn );
190718bb8bbfSJohannes Thumshirn 
190818bb8bbfSJohannes Thumshirn DEFINE_EVENT(btrfs__block_group, btrfs_reclaim_block_group,
190918bb8bbfSJohannes Thumshirn 	TP_PROTO(const struct btrfs_block_group *bg_cache),
191018bb8bbfSJohannes Thumshirn 
191118bb8bbfSJohannes Thumshirn 	TP_ARGS(bg_cache)
191218bb8bbfSJohannes Thumshirn );
191318bb8bbfSJohannes Thumshirn 
19144ed0a7a3SQu Wenruo DEFINE_EVENT(btrfs__block_group, btrfs_skip_unused_block_group,
191532da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
19164ed0a7a3SQu Wenruo 
19174ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache)
19184ed0a7a3SQu Wenruo );
19194ed0a7a3SQu Wenruo 
1920a1d19847SQu Wenruo TRACE_EVENT(btrfs_set_extent_bit,
1921a1d19847SQu Wenruo 	TP_PROTO(const struct extent_io_tree *tree,
1922a1d19847SQu Wenruo 		 u64 start, u64 len, unsigned set_bits),
1923a1d19847SQu Wenruo 
1924a1d19847SQu Wenruo 	TP_ARGS(tree, start, len, set_bits),
1925a1d19847SQu Wenruo 
1926a1d19847SQu Wenruo 	TP_STRUCT__entry_btrfs(
1927a1d19847SQu Wenruo 		__field(	unsigned,	owner	)
1928a1d19847SQu Wenruo 		__field(	u64,		ino	)
1929a1d19847SQu Wenruo 		__field(	u64,		rootid	)
1930a1d19847SQu Wenruo 		__field(	u64,		start	)
1931a1d19847SQu Wenruo 		__field(	u64,		len	)
1932a1d19847SQu Wenruo 		__field(	unsigned,	set_bits)
1933a1d19847SQu Wenruo 	),
1934a1d19847SQu Wenruo 
1935a1d19847SQu Wenruo 	TP_fast_assign_btrfs(tree->fs_info,
1936a1d19847SQu Wenruo 		__entry->owner = tree->owner;
1937a1d19847SQu Wenruo 		if (tree->private_data) {
19381d2e7c7cSDavid Sterba 			const struct inode *inode = tree->private_data;
1939a1d19847SQu Wenruo 
1940a1d19847SQu Wenruo 			__entry->ino	= btrfs_ino(BTRFS_I(inode));
1941a1d19847SQu Wenruo 			__entry->rootid	=
1942a1d19847SQu Wenruo 				BTRFS_I(inode)->root->root_key.objectid;
1943a1d19847SQu Wenruo 		} else {
1944a1d19847SQu Wenruo 			__entry->ino	= 0;
1945a1d19847SQu Wenruo 			__entry->rootid	= 0;
1946a1d19847SQu Wenruo 		}
1947a1d19847SQu Wenruo 		__entry->start		= start;
1948a1d19847SQu Wenruo 		__entry->len		= len;
1949a1d19847SQu Wenruo 		__entry->set_bits	= set_bits;
1950a1d19847SQu Wenruo 	),
1951a1d19847SQu Wenruo 
1952a1d19847SQu Wenruo 	TP_printk_btrfs(
1953a1d19847SQu Wenruo 		"io_tree=%s ino=%llu root=%llu start=%llu len=%llu set_bits=%s",
1954c92bb304SNikolay Borisov 		__print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
1955a1d19847SQu Wenruo 		__entry->rootid, __entry->start, __entry->len,
1956a1d19847SQu Wenruo 		__print_flags(__entry->set_bits, "|", EXTENT_FLAGS))
1957a1d19847SQu Wenruo );
1958a1d19847SQu Wenruo 
1959a1d19847SQu Wenruo TRACE_EVENT(btrfs_clear_extent_bit,
1960a1d19847SQu Wenruo 	TP_PROTO(const struct extent_io_tree *tree,
1961a1d19847SQu Wenruo 		 u64 start, u64 len, unsigned clear_bits),
1962a1d19847SQu Wenruo 
1963a1d19847SQu Wenruo 	TP_ARGS(tree, start, len, clear_bits),
1964a1d19847SQu Wenruo 
1965a1d19847SQu Wenruo 	TP_STRUCT__entry_btrfs(
1966a1d19847SQu Wenruo 		__field(	unsigned,	owner	)
1967a1d19847SQu Wenruo 		__field(	u64,		ino	)
1968a1d19847SQu Wenruo 		__field(	u64,		rootid	)
1969a1d19847SQu Wenruo 		__field(	u64,		start	)
1970a1d19847SQu Wenruo 		__field(	u64,		len	)
1971a1d19847SQu Wenruo 		__field(	unsigned,	clear_bits)
1972a1d19847SQu Wenruo 	),
1973a1d19847SQu Wenruo 
1974a1d19847SQu Wenruo 	TP_fast_assign_btrfs(tree->fs_info,
1975a1d19847SQu Wenruo 		__entry->owner = tree->owner;
1976a1d19847SQu Wenruo 		if (tree->private_data) {
19771d2e7c7cSDavid Sterba 			const struct inode *inode = tree->private_data;
1978a1d19847SQu Wenruo 
1979a1d19847SQu Wenruo 			__entry->ino	= btrfs_ino(BTRFS_I(inode));
1980a1d19847SQu Wenruo 			__entry->rootid	=
1981a1d19847SQu Wenruo 				BTRFS_I(inode)->root->root_key.objectid;
1982a1d19847SQu Wenruo 		} else {
1983a1d19847SQu Wenruo 			__entry->ino	= 0;
1984a1d19847SQu Wenruo 			__entry->rootid	= 0;
1985a1d19847SQu Wenruo 		}
1986a1d19847SQu Wenruo 		__entry->start		= start;
1987a1d19847SQu Wenruo 		__entry->len		= len;
1988a1d19847SQu Wenruo 		__entry->clear_bits	= clear_bits;
1989a1d19847SQu Wenruo 	),
1990a1d19847SQu Wenruo 
1991a1d19847SQu Wenruo 	TP_printk_btrfs(
1992a1d19847SQu Wenruo 		"io_tree=%s ino=%llu root=%llu start=%llu len=%llu clear_bits=%s",
1993c92bb304SNikolay Borisov 		__print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
1994a1d19847SQu Wenruo 		__entry->rootid, __entry->start, __entry->len,
1995a1d19847SQu Wenruo 		__print_flags(__entry->clear_bits, "|", EXTENT_FLAGS))
1996a1d19847SQu Wenruo );
1997a1d19847SQu Wenruo 
1998a1d19847SQu Wenruo TRACE_EVENT(btrfs_convert_extent_bit,
1999a1d19847SQu Wenruo 	TP_PROTO(const struct extent_io_tree *tree,
2000a1d19847SQu Wenruo 		 u64 start, u64 len, unsigned set_bits, unsigned clear_bits),
2001a1d19847SQu Wenruo 
2002a1d19847SQu Wenruo 	TP_ARGS(tree, start, len, set_bits, clear_bits),
2003a1d19847SQu Wenruo 
2004a1d19847SQu Wenruo 	TP_STRUCT__entry_btrfs(
2005a1d19847SQu Wenruo 		__field(	unsigned,	owner	)
2006a1d19847SQu Wenruo 		__field(	u64,		ino	)
2007a1d19847SQu Wenruo 		__field(	u64,		rootid	)
2008a1d19847SQu Wenruo 		__field(	u64,		start	)
2009a1d19847SQu Wenruo 		__field(	u64,		len	)
2010a1d19847SQu Wenruo 		__field(	unsigned,	set_bits)
2011a1d19847SQu Wenruo 		__field(	unsigned,	clear_bits)
2012a1d19847SQu Wenruo 	),
2013a1d19847SQu Wenruo 
2014a1d19847SQu Wenruo 	TP_fast_assign_btrfs(tree->fs_info,
2015a1d19847SQu Wenruo 		__entry->owner = tree->owner;
2016a1d19847SQu Wenruo 		if (tree->private_data) {
20171d2e7c7cSDavid Sterba 			const struct inode *inode = tree->private_data;
2018a1d19847SQu Wenruo 
2019a1d19847SQu Wenruo 			__entry->ino	= btrfs_ino(BTRFS_I(inode));
2020a1d19847SQu Wenruo 			__entry->rootid	=
2021a1d19847SQu Wenruo 				BTRFS_I(inode)->root->root_key.objectid;
2022a1d19847SQu Wenruo 		} else {
2023a1d19847SQu Wenruo 			__entry->ino	= 0;
2024a1d19847SQu Wenruo 			__entry->rootid	= 0;
2025a1d19847SQu Wenruo 		}
2026a1d19847SQu Wenruo 		__entry->start		= start;
2027a1d19847SQu Wenruo 		__entry->len		= len;
2028a1d19847SQu Wenruo 		__entry->set_bits	= set_bits;
2029a1d19847SQu Wenruo 		__entry->clear_bits	= clear_bits;
2030a1d19847SQu Wenruo 	),
2031a1d19847SQu Wenruo 
2032a1d19847SQu Wenruo 	TP_printk_btrfs(
2033a1d19847SQu Wenruo "io_tree=%s ino=%llu root=%llu start=%llu len=%llu set_bits=%s clear_bits=%s",
2034c92bb304SNikolay Borisov 		  __print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
2035a1d19847SQu Wenruo 		  __entry->rootid, __entry->start, __entry->len,
2036a1d19847SQu Wenruo 		  __print_flags(__entry->set_bits , "|", EXTENT_FLAGS),
2037a1d19847SQu Wenruo 		  __print_flags(__entry->clear_bits, "|", EXTENT_FLAGS))
2038a1d19847SQu Wenruo );
2039a1d19847SQu Wenruo 
2040e5ad49e2SJosef Bacik DECLARE_EVENT_CLASS(btrfs_dump_space_info,
20418197766dSJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info,
2042e5ad49e2SJosef Bacik 		 const struct btrfs_space_info *sinfo),
2043e5ad49e2SJosef Bacik 
2044e5ad49e2SJosef Bacik 	TP_ARGS(fs_info, sinfo),
2045e5ad49e2SJosef Bacik 
2046e5ad49e2SJosef Bacik 	TP_STRUCT__entry_btrfs(
2047e5ad49e2SJosef Bacik 		__field(	u64,	flags			)
2048e5ad49e2SJosef Bacik 		__field(	u64,	total_bytes		)
2049e5ad49e2SJosef Bacik 		__field(	u64,	bytes_used		)
2050e5ad49e2SJosef Bacik 		__field(	u64,	bytes_pinned		)
2051e5ad49e2SJosef Bacik 		__field(	u64,	bytes_reserved		)
2052e5ad49e2SJosef Bacik 		__field(	u64,	bytes_may_use		)
2053e5ad49e2SJosef Bacik 		__field(	u64,	bytes_readonly		)
2054e5ad49e2SJosef Bacik 		__field(	u64,	reclaim_size		)
2055e5ad49e2SJosef Bacik 		__field(	int,	clamp			)
2056e5ad49e2SJosef Bacik 		__field(	u64,	global_reserved		)
2057e5ad49e2SJosef Bacik 		__field(	u64,	trans_reserved		)
2058e5ad49e2SJosef Bacik 		__field(	u64,	delayed_refs_reserved	)
2059e5ad49e2SJosef Bacik 		__field(	u64,	delayed_reserved	)
2060e5ad49e2SJosef Bacik 		__field(	u64,	free_chunk_space	)
20618197766dSJosef Bacik 		__field(	u64,	delalloc_bytes		)
20628197766dSJosef Bacik 		__field(	u64,	ordered_bytes		)
2063e5ad49e2SJosef Bacik 	),
2064e5ad49e2SJosef Bacik 
2065e5ad49e2SJosef Bacik 	TP_fast_assign_btrfs(fs_info,
2066e5ad49e2SJosef Bacik 		__entry->flags			=	sinfo->flags;
2067e5ad49e2SJosef Bacik 		__entry->total_bytes		=	sinfo->total_bytes;
2068e5ad49e2SJosef Bacik 		__entry->bytes_used		=	sinfo->bytes_used;
2069e5ad49e2SJosef Bacik 		__entry->bytes_pinned		=	sinfo->bytes_pinned;
2070e5ad49e2SJosef Bacik 		__entry->bytes_reserved		=	sinfo->bytes_reserved;
2071e5ad49e2SJosef Bacik 		__entry->bytes_may_use		=	sinfo->bytes_may_use;
2072e5ad49e2SJosef Bacik 		__entry->bytes_readonly		=	sinfo->bytes_readonly;
2073e5ad49e2SJosef Bacik 		__entry->reclaim_size		=	sinfo->reclaim_size;
2074e5ad49e2SJosef Bacik 		__entry->clamp			=	sinfo->clamp;
2075e5ad49e2SJosef Bacik 		__entry->global_reserved	=	fs_info->global_block_rsv.reserved;
2076e5ad49e2SJosef Bacik 		__entry->trans_reserved		=	fs_info->trans_block_rsv.reserved;
2077e5ad49e2SJosef Bacik 		__entry->delayed_refs_reserved	=	fs_info->delayed_refs_rsv.reserved;
2078e5ad49e2SJosef Bacik 		__entry->delayed_reserved	=	fs_info->delayed_block_rsv.reserved;
2079e5ad49e2SJosef Bacik 		__entry->free_chunk_space	=	atomic64_read(&fs_info->free_chunk_space);
20808197766dSJosef Bacik 		__entry->delalloc_bytes		=	percpu_counter_sum_positive(&fs_info->delalloc_bytes);
20818197766dSJosef Bacik 		__entry->ordered_bytes		=	percpu_counter_sum_positive(&fs_info->ordered_bytes);
2082e5ad49e2SJosef Bacik 	),
2083e5ad49e2SJosef Bacik 
2084e5ad49e2SJosef Bacik 	TP_printk_btrfs("flags=%s total_bytes=%llu bytes_used=%llu "
2085e5ad49e2SJosef Bacik 			"bytes_pinned=%llu bytes_reserved=%llu "
2086e5ad49e2SJosef Bacik 			"bytes_may_use=%llu bytes_readonly=%llu "
2087e5ad49e2SJosef Bacik 			"reclaim_size=%llu clamp=%d global_reserved=%llu "
2088e5ad49e2SJosef Bacik 			"trans_reserved=%llu delayed_refs_reserved=%llu "
20898197766dSJosef Bacik 			"delayed_reserved=%llu chunk_free_space=%llu "
20908197766dSJosef Bacik 			"delalloc_bytes=%llu ordered_bytes=%llu",
2091e5ad49e2SJosef Bacik 			__print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS),
2092e5ad49e2SJosef Bacik 			__entry->total_bytes, __entry->bytes_used,
2093e5ad49e2SJosef Bacik 			__entry->bytes_pinned, __entry->bytes_reserved,
2094e5ad49e2SJosef Bacik 			__entry->bytes_may_use, __entry->bytes_readonly,
2095e5ad49e2SJosef Bacik 			__entry->reclaim_size, __entry->clamp,
2096e5ad49e2SJosef Bacik 			__entry->global_reserved, __entry->trans_reserved,
2097e5ad49e2SJosef Bacik 			__entry->delayed_refs_reserved,
20988197766dSJosef Bacik 			__entry->delayed_reserved, __entry->free_chunk_space,
20998197766dSJosef Bacik 			__entry->delalloc_bytes, __entry->ordered_bytes)
2100e5ad49e2SJosef Bacik );
2101e5ad49e2SJosef Bacik 
2102e5ad49e2SJosef Bacik DEFINE_EVENT(btrfs_dump_space_info, btrfs_done_preemptive_reclaim,
21038197766dSJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info,
2104e5ad49e2SJosef Bacik 		 const struct btrfs_space_info *sinfo),
2105e5ad49e2SJosef Bacik 	TP_ARGS(fs_info, sinfo)
2106e5ad49e2SJosef Bacik );
2107e5ad49e2SJosef Bacik 
2108fcdef39cSJosef Bacik DEFINE_EVENT(btrfs_dump_space_info, btrfs_fail_all_tickets,
2109fcdef39cSJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info,
2110fcdef39cSJosef Bacik 		 const struct btrfs_space_info *sinfo),
2111fcdef39cSJosef Bacik 	TP_ARGS(fs_info, sinfo)
2112fcdef39cSJosef Bacik );
2113fcdef39cSJosef Bacik 
2114ac1ea10eSJosef Bacik TRACE_EVENT(btrfs_reserve_ticket,
2115ac1ea10eSJosef Bacik 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 bytes,
2116ac1ea10eSJosef Bacik 		 u64 start_ns, int flush, int error),
2117ac1ea10eSJosef Bacik 
2118ac1ea10eSJosef Bacik 	TP_ARGS(fs_info, flags, bytes, start_ns, flush, error),
2119ac1ea10eSJosef Bacik 
2120ac1ea10eSJosef Bacik 	TP_STRUCT__entry_btrfs(
2121ac1ea10eSJosef Bacik 		__field(	u64,	flags		)
2122ac1ea10eSJosef Bacik 		__field(	u64,	bytes		)
2123ac1ea10eSJosef Bacik 		__field(	u64,	start_ns	)
2124ac1ea10eSJosef Bacik 		__field(	int,	flush		)
2125ac1ea10eSJosef Bacik 		__field(	int,	error		)
2126ac1ea10eSJosef Bacik 	),
2127ac1ea10eSJosef Bacik 
2128ac1ea10eSJosef Bacik 	TP_fast_assign_btrfs(fs_info,
2129ac1ea10eSJosef Bacik 		__entry->flags		= flags;
2130ac1ea10eSJosef Bacik 		__entry->bytes		= bytes;
2131ac1ea10eSJosef Bacik 		__entry->start_ns	= start_ns;
2132ac1ea10eSJosef Bacik 		__entry->flush		= flush;
2133ac1ea10eSJosef Bacik 		__entry->error		= error;
2134ac1ea10eSJosef Bacik 	),
2135ac1ea10eSJosef Bacik 
2136ac1ea10eSJosef Bacik 	TP_printk_btrfs("flags=%s bytes=%llu start_ns=%llu flush=%s error=%d",
2137ac1ea10eSJosef Bacik 			__print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS),
2138ac1ea10eSJosef Bacik 			__entry->bytes, __entry->start_ns,
2139ac1ea10eSJosef Bacik 			__print_symbolic(__entry->flush, FLUSH_ACTIONS),
2140ac1ea10eSJosef Bacik 			__entry->error)
2141ac1ea10eSJosef Bacik );
2142ac1ea10eSJosef Bacik 
214334e73cc9SQu Wenruo DECLARE_EVENT_CLASS(btrfs_sleep_tree_lock,
214434e73cc9SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
214534e73cc9SQu Wenruo 
214634e73cc9SQu Wenruo 	TP_ARGS(eb, start_ns),
214734e73cc9SQu Wenruo 
214834e73cc9SQu Wenruo 	TP_STRUCT__entry_btrfs(
214934e73cc9SQu Wenruo 		__field(	u64,	block		)
215034e73cc9SQu Wenruo 		__field(	u64,	generation	)
215134e73cc9SQu Wenruo 		__field(	u64,	start_ns	)
215234e73cc9SQu Wenruo 		__field(	u64,	end_ns		)
215334e73cc9SQu Wenruo 		__field(	u64,	diff_ns		)
215434e73cc9SQu Wenruo 		__field(	u64,	owner		)
215534e73cc9SQu Wenruo 		__field(	int,	is_log_tree	)
215634e73cc9SQu Wenruo 	),
215734e73cc9SQu Wenruo 
215834e73cc9SQu Wenruo 	TP_fast_assign_btrfs(eb->fs_info,
215934e73cc9SQu Wenruo 		__entry->block		= eb->start;
216034e73cc9SQu Wenruo 		__entry->generation	= btrfs_header_generation(eb);
216134e73cc9SQu Wenruo 		__entry->start_ns	= start_ns;
216234e73cc9SQu Wenruo 		__entry->end_ns		= ktime_get_ns();
216334e73cc9SQu Wenruo 		__entry->diff_ns	= __entry->end_ns - start_ns;
216434e73cc9SQu Wenruo 		__entry->owner		= btrfs_header_owner(eb);
216534e73cc9SQu Wenruo 		__entry->is_log_tree	= (eb->log_index >= 0);
216634e73cc9SQu Wenruo 	),
216734e73cc9SQu Wenruo 
216834e73cc9SQu Wenruo 	TP_printk_btrfs(
216934e73cc9SQu Wenruo "block=%llu generation=%llu start_ns=%llu end_ns=%llu diff_ns=%llu owner=%llu is_log_tree=%d",
217034e73cc9SQu Wenruo 		__entry->block, __entry->generation,
217134e73cc9SQu Wenruo 		__entry->start_ns, __entry->end_ns, __entry->diff_ns,
217234e73cc9SQu Wenruo 		__entry->owner, __entry->is_log_tree)
217334e73cc9SQu Wenruo );
217434e73cc9SQu Wenruo 
217534e73cc9SQu Wenruo DEFINE_EVENT(btrfs_sleep_tree_lock, btrfs_tree_read_lock,
217634e73cc9SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
217734e73cc9SQu Wenruo 
217834e73cc9SQu Wenruo 	TP_ARGS(eb, start_ns)
217934e73cc9SQu Wenruo );
218034e73cc9SQu Wenruo 
218134e73cc9SQu Wenruo DEFINE_EVENT(btrfs_sleep_tree_lock, btrfs_tree_lock,
218234e73cc9SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
218334e73cc9SQu Wenruo 
218434e73cc9SQu Wenruo 	TP_ARGS(eb, start_ns)
218534e73cc9SQu Wenruo );
218634e73cc9SQu Wenruo 
218731aab402SQu Wenruo DECLARE_EVENT_CLASS(btrfs_locking_events,
218831aab402SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb),
218931aab402SQu Wenruo 
219031aab402SQu Wenruo 	TP_ARGS(eb),
219131aab402SQu Wenruo 
219231aab402SQu Wenruo 	TP_STRUCT__entry_btrfs(
219331aab402SQu Wenruo 		__field(	u64,	block		)
219431aab402SQu Wenruo 		__field(	u64,	generation	)
219531aab402SQu Wenruo 		__field(	u64,	owner		)
219631aab402SQu Wenruo 		__field(	int,	is_log_tree	)
219731aab402SQu Wenruo 	),
219831aab402SQu Wenruo 
219931aab402SQu Wenruo 	TP_fast_assign_btrfs(eb->fs_info,
220031aab402SQu Wenruo 		__entry->block		= eb->start;
220131aab402SQu Wenruo 		__entry->generation	= btrfs_header_generation(eb);
220231aab402SQu Wenruo 		__entry->owner		= btrfs_header_owner(eb);
220331aab402SQu Wenruo 		__entry->is_log_tree	= (eb->log_index >= 0);
220431aab402SQu Wenruo 	),
220531aab402SQu Wenruo 
220631aab402SQu Wenruo 	TP_printk_btrfs("block=%llu generation=%llu owner=%llu is_log_tree=%d",
220731aab402SQu Wenruo 		__entry->block, __entry->generation,
220831aab402SQu Wenruo 		__entry->owner, __entry->is_log_tree)
220931aab402SQu Wenruo );
221031aab402SQu Wenruo 
221131aab402SQu Wenruo #define DEFINE_BTRFS_LOCK_EVENT(name)				\
221231aab402SQu Wenruo DEFINE_EVENT(btrfs_locking_events, name,			\
221331aab402SQu Wenruo 		TP_PROTO(const struct extent_buffer *eb),	\
221431aab402SQu Wenruo 								\
221531aab402SQu Wenruo 		TP_ARGS(eb)					\
221631aab402SQu Wenruo )
221731aab402SQu Wenruo 
221831aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_unlock);
221931aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_unlock);
222031aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_unlock_blocking);
222131aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_set_lock_blocking_read);
222231aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_set_lock_blocking_write);
222331aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_try_tree_read_lock);
222431aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_try_tree_write_lock);
222531aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_lock_atomic);
222631aab402SQu Wenruo 
2227480b9b4dSQu Wenruo DECLARE_EVENT_CLASS(btrfs__space_info_update,
2228480b9b4dSQu Wenruo 
22291d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
22301d2e7c7cSDavid Sterba 		 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
2231480b9b4dSQu Wenruo 
2232480b9b4dSQu Wenruo 	TP_ARGS(fs_info, sinfo, old, diff),
2233480b9b4dSQu Wenruo 
2234480b9b4dSQu Wenruo 	TP_STRUCT__entry_btrfs(
2235480b9b4dSQu Wenruo 		__field(	u64,	type		)
2236480b9b4dSQu Wenruo 		__field(	u64,	old		)
2237480b9b4dSQu Wenruo 		__field(	s64,	diff		)
2238480b9b4dSQu Wenruo 	),
2239480b9b4dSQu Wenruo 
2240480b9b4dSQu Wenruo 	TP_fast_assign_btrfs(fs_info,
2241480b9b4dSQu Wenruo 		__entry->type	= sinfo->flags;
2242480b9b4dSQu Wenruo 		__entry->old	= old;
2243480b9b4dSQu Wenruo 		__entry->diff	= diff;
2244480b9b4dSQu Wenruo 	),
2245480b9b4dSQu Wenruo 	TP_printk_btrfs("type=%s old=%llu diff=%lld",
2246480b9b4dSQu Wenruo 		__print_flags(__entry->type, "|", BTRFS_GROUP_FLAGS),
2247480b9b4dSQu Wenruo 		__entry->old, __entry->diff)
2248480b9b4dSQu Wenruo );
2249480b9b4dSQu Wenruo 
2250480b9b4dSQu Wenruo DEFINE_EVENT(btrfs__space_info_update, update_bytes_may_use,
2251480b9b4dSQu Wenruo 
22521d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
22531d2e7c7cSDavid Sterba 		 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
2254480b9b4dSQu Wenruo 
2255480b9b4dSQu Wenruo 	TP_ARGS(fs_info, sinfo, old, diff)
2256480b9b4dSQu Wenruo );
2257480b9b4dSQu Wenruo 
2258480b9b4dSQu Wenruo DEFINE_EVENT(btrfs__space_info_update, update_bytes_pinned,
2259480b9b4dSQu Wenruo 
22601d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
22611d2e7c7cSDavid Sterba 		 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
2262480b9b4dSQu Wenruo 
2263480b9b4dSQu Wenruo 	TP_ARGS(fs_info, sinfo, old, diff)
2264480b9b4dSQu Wenruo );
2265480b9b4dSQu Wenruo 
22661abe9b8aSliubo #endif /* _TRACE_BTRFS_H */
22671abe9b8aSliubo 
22681abe9b8aSliubo /* This part must be outside protection */
22691abe9b8aSliubo #include <trace/define_trace.h>
2270