xref: /openbmc/linux/include/trace/events/btrfs.h (revision b8bea09a)
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;
27a31b4a43SChristoph Hellwig 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;
33*b8bea09aSQu Wenruo struct btrfs_raid_bio;
34*b8bea09aSQu Wenruo struct raid56_bio_trace_info;
351abe9b8aSliubo 
361abe9b8aSliubo #define show_ref_type(type)						\
371abe9b8aSliubo 	__print_symbolic(type,						\
381abe9b8aSliubo 		{ BTRFS_TREE_BLOCK_REF_KEY, 	"TREE_BLOCK_REF" },	\
391abe9b8aSliubo 		{ BTRFS_EXTENT_DATA_REF_KEY, 	"EXTENT_DATA_REF" },	\
401abe9b8aSliubo 		{ BTRFS_EXTENT_REF_V0_KEY, 	"EXTENT_REF_V0" },	\
411abe9b8aSliubo 		{ BTRFS_SHARED_BLOCK_REF_KEY, 	"SHARED_BLOCK_REF" },	\
421abe9b8aSliubo 		{ BTRFS_SHARED_DATA_REF_KEY, 	"SHARED_DATA_REF" })
431abe9b8aSliubo 
441abe9b8aSliubo #define __show_root_type(obj)						\
457f34b746Sliubo 	__print_symbolic_u64(obj,					\
461abe9b8aSliubo 		{ BTRFS_ROOT_TREE_OBJECTID, 	"ROOT_TREE"	},	\
471abe9b8aSliubo 		{ BTRFS_EXTENT_TREE_OBJECTID, 	"EXTENT_TREE"	},	\
481abe9b8aSliubo 		{ BTRFS_CHUNK_TREE_OBJECTID, 	"CHUNK_TREE"	},	\
491abe9b8aSliubo 		{ BTRFS_DEV_TREE_OBJECTID, 	"DEV_TREE"	},	\
501abe9b8aSliubo 		{ BTRFS_FS_TREE_OBJECTID, 	"FS_TREE"	},	\
511abe9b8aSliubo 		{ BTRFS_ROOT_TREE_DIR_OBJECTID, "ROOT_TREE_DIR"	},	\
521abe9b8aSliubo 		{ BTRFS_CSUM_TREE_OBJECTID, 	"CSUM_TREE"	},	\
531abe9b8aSliubo 		{ BTRFS_TREE_LOG_OBJECTID,	"TREE_LOG"	},	\
54e112e2b4SLiu Bo 		{ BTRFS_QUOTA_TREE_OBJECTID,	"QUOTA_TREE"	},	\
551abe9b8aSliubo 		{ BTRFS_TREE_RELOC_OBJECTID,	"TREE_RELOC"	},	\
56208acb8cSOmar Sandoval 		{ BTRFS_UUID_TREE_OBJECTID,	"UUID_TREE"	},	\
57208acb8cSOmar Sandoval 		{ BTRFS_FREE_SPACE_TREE_OBJECTID, "FREE_SPACE_TREE" },	\
589c54e80dSJosef Bacik 		{ BTRFS_BLOCK_GROUP_TREE_OBJECTID, "BLOCK_GROUP_TREE" },\
591abe9b8aSliubo 		{ BTRFS_DATA_RELOC_TREE_OBJECTID, "DATA_RELOC_TREE" })
601abe9b8aSliubo 
611abe9b8aSliubo #define show_root_type(obj)						\
621abe9b8aSliubo 	obj, ((obj >= BTRFS_DATA_RELOC_TREE_OBJECTID) ||		\
63fb57dc81SLiu Bo 	      (obj >= BTRFS_ROOT_TREE_OBJECTID &&			\
64e112e2b4SLiu Bo 	       obj <= BTRFS_QUOTA_TREE_OBJECTID)) ? __show_root_type(obj) : "-"
651abe9b8aSliubo 
665bca2c95SNikolay Borisov #define FLUSH_ACTIONS								\
675bca2c95SNikolay Borisov 	EM( BTRFS_RESERVE_NO_FLUSH,		"BTRFS_RESERVE_NO_FLUSH")	\
685bca2c95SNikolay Borisov 	EM( BTRFS_RESERVE_FLUSH_LIMIT,		"BTRFS_RESERVE_FLUSH_LIMIT")	\
695bca2c95SNikolay Borisov 	EM( BTRFS_RESERVE_FLUSH_ALL,		"BTRFS_RESERVE_FLUSH_ALL")	\
705bca2c95SNikolay Borisov 	EMe(BTRFS_RESERVE_FLUSH_ALL_STEAL,	"BTRFS_RESERVE_FLUSH_ALL_STEAL")
715bca2c95SNikolay Borisov 
720840dd28SNikolay Borisov #define FI_TYPES							\
730840dd28SNikolay Borisov 	EM( BTRFS_FILE_EXTENT_INLINE,		"INLINE")		\
740840dd28SNikolay Borisov 	EM( BTRFS_FILE_EXTENT_REG,		"REG")			\
750840dd28SNikolay Borisov 	EMe(BTRFS_FILE_EXTENT_PREALLOC,		"PREALLOC")
760840dd28SNikolay Borisov 
771cb1f0b2SNikolay Borisov #define QGROUP_RSV_TYPES						\
781cb1f0b2SNikolay Borisov 	EM( BTRFS_QGROUP_RSV_DATA,		"DATA")			\
791cb1f0b2SNikolay Borisov 	EM( BTRFS_QGROUP_RSV_META_PERTRANS,	"META_PERTRANS")	\
801cb1f0b2SNikolay Borisov 	EMe(BTRFS_QGROUP_RSV_META_PREALLOC,	"META_PREALLOC")
811cb1f0b2SNikolay Borisov 
82c92bb304SNikolay Borisov #define IO_TREE_OWNER						    \
83c92bb304SNikolay Borisov 	EM( IO_TREE_FS_PINNED_EXTENTS, 	  "PINNED_EXTENTS")	    \
84c92bb304SNikolay Borisov 	EM( IO_TREE_FS_EXCLUDED_EXTENTS,  "EXCLUDED_EXTENTS")	    \
852c53a14dSQu Wenruo 	EM( IO_TREE_BTREE_INODE_IO,	  "BTREE_INODE_IO")	    \
86c92bb304SNikolay Borisov 	EM( IO_TREE_INODE_IO,		  "INODE_IO")		    \
87c92bb304SNikolay Borisov 	EM( IO_TREE_INODE_IO_FAILURE,	  "INODE_IO_FAILURE")	    \
88c92bb304SNikolay Borisov 	EM( IO_TREE_RELOC_BLOCKS,	  "RELOC_BLOCKS")	    \
89c92bb304SNikolay Borisov 	EM( IO_TREE_TRANS_DIRTY_PAGES,	  "TRANS_DIRTY_PAGES")      \
90c92bb304SNikolay Borisov 	EM( IO_TREE_ROOT_DIRTY_LOG_PAGES, "ROOT_DIRTY_LOG_PAGES")   \
91c92bb304SNikolay Borisov 	EM( IO_TREE_INODE_FILE_EXTENT,	  "INODE_FILE_EXTENT")      \
92c92bb304SNikolay Borisov 	EM( IO_TREE_LOG_CSUM_RANGE,	  "LOG_CSUM_RANGE")         \
93c92bb304SNikolay Borisov 	EMe(IO_TREE_SELFTEST,		  "SELFTEST")
94c92bb304SNikolay Borisov 
95f0cdd15cSNikolay Borisov #define FLUSH_STATES							\
96f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_ITEMS_NR,	"FLUSH_DELAYED_ITEMS_NR")	\
97f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_ITEMS,	"FLUSH_DELAYED_ITEMS")		\
98f0cdd15cSNikolay Borisov 	EM( FLUSH_DELALLOC,		"FLUSH_DELALLOC")		\
99f0cdd15cSNikolay Borisov 	EM( FLUSH_DELALLOC_WAIT,	"FLUSH_DELALLOC_WAIT")		\
10003fe78ccSJosef Bacik 	EM( FLUSH_DELALLOC_FULL,	"FLUSH_DELALLOC_FULL")		\
101f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_REFS_NR,	"FLUSH_DELAYED_REFS_NR")	\
102f0cdd15cSNikolay Borisov 	EM( FLUSH_DELAYED_REFS,		"FLUSH_ELAYED_REFS")		\
103f0cdd15cSNikolay Borisov 	EM( ALLOC_CHUNK,		"ALLOC_CHUNK")			\
104f0cdd15cSNikolay Borisov 	EM( ALLOC_CHUNK_FORCE,		"ALLOC_CHUNK_FORCE")		\
105f0cdd15cSNikolay Borisov 	EM( RUN_DELAYED_IPUTS,		"RUN_DELAYED_IPUTS")		\
106c416a30cSJosef Bacik 	EMe(COMMIT_TRANS,		"COMMIT_TRANS")
107f0cdd15cSNikolay Borisov 
1085bca2c95SNikolay Borisov /*
1095bca2c95SNikolay Borisov  * First define the enums in the above macros to be exported to userspace via
1105bca2c95SNikolay Borisov  * TRACE_DEFINE_ENUM().
1115bca2c95SNikolay Borisov  */
1125bca2c95SNikolay Borisov 
1130840dd28SNikolay Borisov #undef EM
1140840dd28SNikolay Borisov #undef EMe
1150840dd28SNikolay Borisov #define EM(a, b)	TRACE_DEFINE_ENUM(a);
1160840dd28SNikolay Borisov #define EMe(a, b)	TRACE_DEFINE_ENUM(a);
1170840dd28SNikolay Borisov 
1185bca2c95SNikolay Borisov FLUSH_ACTIONS
1190840dd28SNikolay Borisov FI_TYPES
1201cb1f0b2SNikolay Borisov QGROUP_RSV_TYPES
121c92bb304SNikolay Borisov IO_TREE_OWNER
122f0cdd15cSNikolay Borisov FLUSH_STATES
1230840dd28SNikolay Borisov 
1245bca2c95SNikolay Borisov /*
1255bca2c95SNikolay Borisov  * Now redefine the EM and EMe macros to map the enums to the strings that will
1265bca2c95SNikolay Borisov  * be printed in the output
1275bca2c95SNikolay Borisov  */
1285bca2c95SNikolay Borisov 
1290840dd28SNikolay Borisov #undef EM
1300840dd28SNikolay Borisov #undef EMe
1310840dd28SNikolay Borisov #define EM(a, b)        {a, b},
1320840dd28SNikolay Borisov #define EMe(a, b)       {a, b}
13309ed2f16SLiu Bo 
134a1d19847SQu Wenruo 
1353f7de037SJosef Bacik #define BTRFS_GROUP_FLAGS	\
1363f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_DATA,	"DATA"},	\
1373f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_SYSTEM,	"SYSTEM"},	\
1383f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_METADATA,	"METADATA"},	\
1393f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_RAID0,	"RAID0"}, 	\
1403f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_RAID1,	"RAID1"}, 	\
1413f7de037SJosef Bacik 	{ BTRFS_BLOCK_GROUP_DUP,	"DUP"}, 	\
142e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID10,	"RAID10"}, 	\
143e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID5,	"RAID5"},	\
144e112e2b4SLiu Bo 	{ BTRFS_BLOCK_GROUP_RAID6,	"RAID6"}
1453f7de037SJosef Bacik 
146a1d19847SQu Wenruo #define EXTENT_FLAGS						\
147a1d19847SQu Wenruo 	{ EXTENT_DIRTY,			"DIRTY"},		\
148a1d19847SQu Wenruo 	{ EXTENT_UPTODATE,		"UPTODATE"},		\
149a1d19847SQu Wenruo 	{ EXTENT_LOCKED,		"LOCKED"},		\
150a1d19847SQu Wenruo 	{ EXTENT_NEW,			"NEW"},			\
151a1d19847SQu Wenruo 	{ EXTENT_DELALLOC,		"DELALLOC"},		\
152a1d19847SQu Wenruo 	{ EXTENT_DEFRAG,		"DEFRAG"},		\
153a1d19847SQu Wenruo 	{ EXTENT_BOUNDARY,		"BOUNDARY"},		\
154a1d19847SQu Wenruo 	{ EXTENT_NODATASUM,		"NODATASUM"},		\
155a1d19847SQu Wenruo 	{ EXTENT_CLEAR_META_RESV,	"CLEAR_META_RESV"},	\
156a1d19847SQu Wenruo 	{ EXTENT_NEED_WAIT,		"NEED_WAIT"},		\
157a1d19847SQu Wenruo 	{ EXTENT_DAMAGED,		"DAMAGED"},		\
158a1d19847SQu Wenruo 	{ EXTENT_NORESERVE,		"NORESERVE"},		\
159a1d19847SQu Wenruo 	{ EXTENT_QGROUP_RESERVED,	"QGROUP_RESERVED"},	\
160a1d19847SQu Wenruo 	{ EXTENT_CLEAR_DATA_RESV,	"CLEAR_DATA_RESV"},	\
161a1d19847SQu Wenruo 	{ EXTENT_DELALLOC_NEW,		"DELALLOC_NEW"}
162a1d19847SQu Wenruo 
163b94417eaSAnand Jain #define BTRFS_FSID_SIZE 16
164b94417eaSAnand Jain #define TP_STRUCT__entry_fsid __array(u8, fsid, BTRFS_FSID_SIZE)
165bc074524SJeff Mahoney 
166bc074524SJeff Mahoney #define TP_fast_assign_fsid(fs_info)					\
167a1d19847SQu Wenruo ({									\
168a1d19847SQu Wenruo 	if (fs_info)							\
169a1d19847SQu Wenruo 		memcpy(__entry->fsid, fs_info->fs_devices->fsid,	\
170a1d19847SQu Wenruo 		       BTRFS_FSID_SIZE);				\
171a1d19847SQu Wenruo 	else								\
172a1d19847SQu Wenruo 		memset(__entry->fsid, 0, BTRFS_FSID_SIZE);		\
173a1d19847SQu Wenruo })
174bc074524SJeff Mahoney 
175bc074524SJeff Mahoney #define TP_STRUCT__entry_btrfs(args...)					\
176bc074524SJeff Mahoney 	TP_STRUCT__entry(						\
177bc074524SJeff Mahoney 		TP_STRUCT__entry_fsid					\
178bc074524SJeff Mahoney 		args)
179bc074524SJeff Mahoney #define TP_fast_assign_btrfs(fs_info, args...)				\
180bc074524SJeff Mahoney 	TP_fast_assign(							\
181bc074524SJeff Mahoney 		TP_fast_assign_fsid(fs_info);				\
182bc074524SJeff Mahoney 		args)
183bc074524SJeff Mahoney #define TP_printk_btrfs(fmt, args...) \
184bc074524SJeff Mahoney 	TP_printk("%pU: " fmt, __entry->fsid, args)
1858c2a3ca2SJosef Bacik 
1861abe9b8aSliubo TRACE_EVENT(btrfs_transaction_commit,
1871abe9b8aSliubo 
1882e4e97abSJosef Bacik 	TP_PROTO(const struct btrfs_fs_info *fs_info),
1891abe9b8aSliubo 
1902e4e97abSJosef Bacik 	TP_ARGS(fs_info),
1911abe9b8aSliubo 
192bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
1931abe9b8aSliubo 		__field(	u64,  generation		)
1941abe9b8aSliubo 		__field(	u64,  root_objectid		)
1951abe9b8aSliubo 	),
1961abe9b8aSliubo 
1972e4e97abSJosef Bacik 	TP_fast_assign_btrfs(fs_info,
1982e4e97abSJosef Bacik 		__entry->generation	= fs_info->generation;
1992e4e97abSJosef Bacik 		__entry->root_objectid	= BTRFS_ROOT_TREE_OBJECTID;
2001abe9b8aSliubo 	),
2011abe9b8aSliubo 
20279bcb71aSDavid Sterba 	TP_printk_btrfs("root=%llu(%s) gen=%llu",
2031abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
2048eec8463SDavid Sterba 		  __entry->generation)
2051abe9b8aSliubo );
2061abe9b8aSliubo 
2071abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__inode,
2081abe9b8aSliubo 
2099a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2101abe9b8aSliubo 
2111abe9b8aSliubo 	TP_ARGS(inode),
2121abe9b8aSliubo 
213bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
214f8f8e189SDavid Sterba 		__field(	u64,  ino			)
21594c3f6c6SDavid Sterba 		__field(	u64,  blocks			)
2161abe9b8aSliubo 		__field(	u64,  disk_i_size		)
2171abe9b8aSliubo 		__field(	u64,  generation		)
2181abe9b8aSliubo 		__field(	u64,  last_trans		)
2191abe9b8aSliubo 		__field(	u64,  logged_trans		)
2201abe9b8aSliubo 		__field(	u64,  root_objectid		)
2211abe9b8aSliubo 	),
2221abe9b8aSliubo 
223bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
224f8f8e189SDavid Sterba 		__entry->ino	= btrfs_ino(BTRFS_I(inode));
2251abe9b8aSliubo 		__entry->blocks	= inode->i_blocks;
2261abe9b8aSliubo 		__entry->disk_i_size  = BTRFS_I(inode)->disk_i_size;
2271abe9b8aSliubo 		__entry->generation = BTRFS_I(inode)->generation;
2281abe9b8aSliubo 		__entry->last_trans = BTRFS_I(inode)->last_trans;
2291abe9b8aSliubo 		__entry->logged_trans = BTRFS_I(inode)->logged_trans;
2301abe9b8aSliubo 		__entry->root_objectid =
2311abe9b8aSliubo 				BTRFS_I(inode)->root->root_key.objectid;
2321abe9b8aSliubo 	),
2331abe9b8aSliubo 
234f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) gen=%llu ino=%llu blocks=%llu "
235562a7a07SDavid Sterba 		  "disk_i_size=%llu last_trans=%llu logged_trans=%llu",
2361abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
2378eec8463SDavid Sterba 		  __entry->generation,
2388eec8463SDavid Sterba 		  __entry->ino,
23994c3f6c6SDavid Sterba 		  __entry->blocks,
2408eec8463SDavid Sterba 		  __entry->disk_i_size,
2418eec8463SDavid Sterba 		  __entry->last_trans,
2428eec8463SDavid Sterba 		  __entry->logged_trans)
2431abe9b8aSliubo );
2441abe9b8aSliubo 
2451abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_new,
2461abe9b8aSliubo 
2479a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2481abe9b8aSliubo 
2491abe9b8aSliubo 	TP_ARGS(inode)
2501abe9b8aSliubo );
2511abe9b8aSliubo 
2521abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_request,
2531abe9b8aSliubo 
2549a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2551abe9b8aSliubo 
2561abe9b8aSliubo 	TP_ARGS(inode)
2571abe9b8aSliubo );
2581abe9b8aSliubo 
2591abe9b8aSliubo DEFINE_EVENT(btrfs__inode, btrfs_inode_evict,
2601abe9b8aSliubo 
2619a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode),
2621abe9b8aSliubo 
2631abe9b8aSliubo 	TP_ARGS(inode)
2641abe9b8aSliubo );
2651abe9b8aSliubo 
2661abe9b8aSliubo #define __show_map_type(type)						\
2677f34b746Sliubo 	__print_symbolic_u64(type,					\
2681abe9b8aSliubo 		{ EXTENT_MAP_LAST_BYTE, "LAST_BYTE" 	},		\
2691abe9b8aSliubo 		{ EXTENT_MAP_HOLE, 	"HOLE" 		},		\
2701abe9b8aSliubo 		{ EXTENT_MAP_INLINE, 	"INLINE" 	},		\
2711abe9b8aSliubo 		{ EXTENT_MAP_DELALLOC,	"DELALLOC" 	})
2721abe9b8aSliubo 
2731abe9b8aSliubo #define show_map_type(type)			\
2741abe9b8aSliubo 	type, (type >= EXTENT_MAP_LAST_BYTE) ? "-" :  __show_map_type(type)
2751abe9b8aSliubo 
2761abe9b8aSliubo #define show_map_flags(flag)						\
2771abe9b8aSliubo 	__print_flags(flag, "|",					\
278254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_PINNED), 		"PINNED" 	},\
279254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_COMPRESSED), 	"COMPRESSED" 	},\
280254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_PREALLOC), 		"PREALLOC" 	},\
281254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_LOGGING),	 	"LOGGING" 	},\
282254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_FILLING),	 	"FILLING" 	},\
283254a2d14SLiu Bo 		{ (1 << EXTENT_FLAG_FS_MAPPING),	"FS_MAPPING"	})
2841abe9b8aSliubo 
2854cd8587cSSteven Rostedt TRACE_EVENT_CONDITION(btrfs_get_extent,
2861abe9b8aSliubo 
2879a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_root *root, const struct btrfs_inode *inode,
2889a35b637SJeff Mahoney 		 const struct extent_map *map),
2891abe9b8aSliubo 
29092a1bf76SLiu Bo 	TP_ARGS(root, inode, map),
2911abe9b8aSliubo 
2924cd8587cSSteven Rostedt 	TP_CONDITION(map),
2934cd8587cSSteven Rostedt 
294bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
2951abe9b8aSliubo 		__field(	u64,  root_objectid	)
29692a1bf76SLiu Bo 		__field(	u64,  ino		)
2971abe9b8aSliubo 		__field(	u64,  start		)
2981abe9b8aSliubo 		__field(	u64,  len		)
2991abe9b8aSliubo 		__field(	u64,  orig_start	)
3001abe9b8aSliubo 		__field(	u64,  block_start	)
3011abe9b8aSliubo 		__field(	u64,  block_len		)
3021abe9b8aSliubo 		__field(	unsigned long,  flags	)
3031abe9b8aSliubo 		__field(	int,  refs		)
3041abe9b8aSliubo 		__field(	unsigned int,  compress_type	)
3051abe9b8aSliubo 	),
3061abe9b8aSliubo 
307bc074524SJeff Mahoney 	TP_fast_assign_btrfs(root->fs_info,
3081abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
30992a1bf76SLiu Bo 		__entry->ino		= btrfs_ino(inode);
3101abe9b8aSliubo 		__entry->start		= map->start;
3111abe9b8aSliubo 		__entry->len		= map->len;
3121abe9b8aSliubo 		__entry->orig_start	= map->orig_start;
3131abe9b8aSliubo 		__entry->block_start	= map->block_start;
3141abe9b8aSliubo 		__entry->block_len	= map->block_len;
3151abe9b8aSliubo 		__entry->flags		= map->flags;
316490b54d6SElena Reshetova 		__entry->refs		= refcount_read(&map->refs);
3171abe9b8aSliubo 		__entry->compress_type	= map->compress_type;
3181abe9b8aSliubo 	),
3191abe9b8aSliubo 
320562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu len=%llu "
321562a7a07SDavid Sterba 		  "orig_start=%llu block_start=%llu(%s) "
322562a7a07SDavid Sterba 		  "block_len=%llu flags=%s refs=%u "
3231abe9b8aSliubo 		  "compress_type=%u",
3241abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
3258eec8463SDavid Sterba 		  __entry->ino,
3268eec8463SDavid Sterba 		  __entry->start,
3278eec8463SDavid Sterba 		  __entry->len,
3288eec8463SDavid Sterba 		  __entry->orig_start,
3291abe9b8aSliubo 		  show_map_type(__entry->block_start),
3308eec8463SDavid Sterba 		  __entry->block_len,
3311abe9b8aSliubo 		  show_map_flags(__entry->flags),
3321abe9b8aSliubo 		  __entry->refs, __entry->compress_type)
3331abe9b8aSliubo );
3341abe9b8aSliubo 
335393da918SLiu Bo TRACE_EVENT(btrfs_handle_em_exist,
336393da918SLiu Bo 
3371d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
338f46b24c9SDavid Sterba 		const struct extent_map *existing, const struct extent_map *map,
339f46b24c9SDavid Sterba 		u64 start, u64 len),
340393da918SLiu Bo 
341f46b24c9SDavid Sterba 	TP_ARGS(fs_info, existing, map, start, len),
342393da918SLiu Bo 
343f46b24c9SDavid Sterba 	TP_STRUCT__entry_btrfs(
344393da918SLiu Bo 		__field(	u64,  e_start		)
345393da918SLiu Bo 		__field(	u64,  e_len		)
346393da918SLiu Bo 		__field(	u64,  map_start		)
347393da918SLiu Bo 		__field(	u64,  map_len		)
348393da918SLiu Bo 		__field(	u64,  start		)
349393da918SLiu Bo 		__field(	u64,  len		)
350393da918SLiu Bo 	),
351393da918SLiu Bo 
352f46b24c9SDavid Sterba 	TP_fast_assign_btrfs(fs_info,
353393da918SLiu Bo 		__entry->e_start	= existing->start;
354393da918SLiu Bo 		__entry->e_len		= existing->len;
355393da918SLiu Bo 		__entry->map_start	= map->start;
356393da918SLiu Bo 		__entry->map_len	= map->len;
357393da918SLiu Bo 		__entry->start		= start;
358393da918SLiu Bo 		__entry->len		= len;
359393da918SLiu Bo 	),
360393da918SLiu Bo 
361f46b24c9SDavid Sterba 	TP_printk_btrfs("start=%llu len=%llu "
362393da918SLiu Bo 		  "existing(start=%llu len=%llu) "
363393da918SLiu Bo 		  "em(start=%llu len=%llu)",
3648eec8463SDavid Sterba 		  __entry->start,
3658eec8463SDavid Sterba 		  __entry->len,
3668eec8463SDavid Sterba 		  __entry->e_start,
3678eec8463SDavid Sterba 		  __entry->e_len,
3688eec8463SDavid Sterba 		  __entry->map_start,
3698eec8463SDavid Sterba 		  __entry->map_len)
370393da918SLiu Bo );
371393da918SLiu Bo 
37209ed2f16SLiu Bo /* file extent item */
37309ed2f16SLiu Bo DECLARE_EVENT_CLASS(btrfs__file_extent_item_regular,
37409ed2f16SLiu Bo 
3751d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
3761d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, u64 start),
37709ed2f16SLiu Bo 
37809ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, start),
37909ed2f16SLiu Bo 
38009ed2f16SLiu Bo 	TP_STRUCT__entry_btrfs(
38109ed2f16SLiu Bo 		__field(	u64,	root_obj	)
38209ed2f16SLiu Bo 		__field(	u64,	ino		)
38309ed2f16SLiu Bo 		__field(	loff_t,	isize		)
38409ed2f16SLiu Bo 		__field(	u64,	disk_isize	)
38509ed2f16SLiu Bo 		__field(	u64,	num_bytes	)
38609ed2f16SLiu Bo 		__field(	u64,	ram_bytes	)
38709ed2f16SLiu Bo 		__field(	u64,	disk_bytenr	)
38809ed2f16SLiu Bo 		__field(	u64,	disk_num_bytes	)
38909ed2f16SLiu Bo 		__field(	u64,	extent_offset	)
39009ed2f16SLiu Bo 		__field(	u8,	extent_type	)
39109ed2f16SLiu Bo 		__field(	u8,	compression	)
39209ed2f16SLiu Bo 		__field(	u64,	extent_start	)
39309ed2f16SLiu Bo 		__field(	u64,	extent_end	)
39409ed2f16SLiu Bo 	),
39509ed2f16SLiu Bo 
39609ed2f16SLiu Bo 	TP_fast_assign_btrfs(bi->root->fs_info,
3974fd786e6SMisono Tomohiro 		__entry->root_obj	= bi->root->root_key.objectid;
39809ed2f16SLiu Bo 		__entry->ino		= btrfs_ino(bi);
39909ed2f16SLiu Bo 		__entry->isize		= bi->vfs_inode.i_size;
40009ed2f16SLiu Bo 		__entry->disk_isize	= bi->disk_i_size;
40109ed2f16SLiu Bo 		__entry->num_bytes	= btrfs_file_extent_num_bytes(l, fi);
40209ed2f16SLiu Bo 		__entry->ram_bytes	= btrfs_file_extent_ram_bytes(l, fi);
40309ed2f16SLiu Bo 		__entry->disk_bytenr	= btrfs_file_extent_disk_bytenr(l, fi);
40409ed2f16SLiu Bo 		__entry->disk_num_bytes	= btrfs_file_extent_disk_num_bytes(l, fi);
40509ed2f16SLiu Bo 		__entry->extent_offset	= btrfs_file_extent_offset(l, fi);
40609ed2f16SLiu Bo 		__entry->extent_type	= btrfs_file_extent_type(l, fi);
40709ed2f16SLiu Bo 		__entry->compression	= btrfs_file_extent_compression(l, fi);
40809ed2f16SLiu Bo 		__entry->extent_start	= start;
40909ed2f16SLiu Bo 		__entry->extent_end	= (start + __entry->num_bytes);
41009ed2f16SLiu Bo 	),
41109ed2f16SLiu Bo 
41209ed2f16SLiu Bo 	TP_printk_btrfs(
41309ed2f16SLiu Bo 		"root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
41409ed2f16SLiu Bo 		"file extent range=[%llu %llu] "
41509ed2f16SLiu Bo 		"(num_bytes=%llu ram_bytes=%llu disk_bytenr=%llu "
41609ed2f16SLiu Bo 		"disk_num_bytes=%llu extent_offset=%llu type=%s "
41709ed2f16SLiu Bo 		"compression=%u",
41809ed2f16SLiu Bo 		show_root_type(__entry->root_obj), __entry->ino,
41909ed2f16SLiu Bo 		__entry->isize,
42009ed2f16SLiu Bo 		__entry->disk_isize, __entry->extent_start,
42109ed2f16SLiu Bo 		__entry->extent_end, __entry->num_bytes, __entry->ram_bytes,
42209ed2f16SLiu Bo 		__entry->disk_bytenr, __entry->disk_num_bytes,
4230840dd28SNikolay Borisov 		__entry->extent_offset, __print_symbolic(__entry->extent_type, FI_TYPES),
42409ed2f16SLiu Bo 		__entry->compression)
42509ed2f16SLiu Bo );
42609ed2f16SLiu Bo 
42709ed2f16SLiu Bo DECLARE_EVENT_CLASS(
42809ed2f16SLiu Bo 	btrfs__file_extent_item_inline,
42909ed2f16SLiu Bo 
4301d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4311d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, int slot, u64 start),
43209ed2f16SLiu Bo 
43309ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, slot,  start),
43409ed2f16SLiu Bo 
43509ed2f16SLiu Bo 	TP_STRUCT__entry_btrfs(
43609ed2f16SLiu Bo 		__field(	u64,	root_obj	)
43709ed2f16SLiu Bo 		__field(	u64,	ino		)
43809ed2f16SLiu Bo 		__field(	loff_t,	isize		)
43909ed2f16SLiu Bo 		__field(	u64,	disk_isize	)
44009ed2f16SLiu Bo 		__field(	u8,	extent_type	)
44109ed2f16SLiu Bo 		__field(	u8,	compression	)
44209ed2f16SLiu Bo 		__field(	u64,	extent_start	)
44309ed2f16SLiu Bo 		__field(	u64,	extent_end	)
44409ed2f16SLiu Bo 	),
44509ed2f16SLiu Bo 
44609ed2f16SLiu Bo 	TP_fast_assign_btrfs(
44709ed2f16SLiu Bo 		bi->root->fs_info,
4484fd786e6SMisono Tomohiro 		__entry->root_obj	= bi->root->root_key.objectid;
44909ed2f16SLiu Bo 		__entry->ino		= btrfs_ino(bi);
45009ed2f16SLiu Bo 		__entry->isize		= bi->vfs_inode.i_size;
45109ed2f16SLiu Bo 		__entry->disk_isize	= bi->disk_i_size;
45209ed2f16SLiu Bo 		__entry->extent_type	= btrfs_file_extent_type(l, fi);
45309ed2f16SLiu Bo 		__entry->compression	= btrfs_file_extent_compression(l, fi);
45409ed2f16SLiu Bo 		__entry->extent_start	= start;
455e41ca589SQu Wenruo 		__entry->extent_end	= (start + btrfs_file_extent_ram_bytes(l, fi));
45609ed2f16SLiu Bo 	),
45709ed2f16SLiu Bo 
45809ed2f16SLiu Bo 	TP_printk_btrfs(
45909ed2f16SLiu Bo 		"root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
46009ed2f16SLiu Bo 		"file extent range=[%llu %llu] "
46109ed2f16SLiu Bo 		"extent_type=%s compression=%u",
46209ed2f16SLiu Bo 		show_root_type(__entry->root_obj), __entry->ino, __entry->isize,
46309ed2f16SLiu Bo 		__entry->disk_isize, __entry->extent_start,
4640840dd28SNikolay Borisov 		__entry->extent_end, __print_symbolic(__entry->extent_type, FI_TYPES),
46509ed2f16SLiu Bo 		__entry->compression)
46609ed2f16SLiu Bo );
46709ed2f16SLiu Bo 
46809ed2f16SLiu Bo DEFINE_EVENT(
46909ed2f16SLiu Bo 	btrfs__file_extent_item_regular, btrfs_get_extent_show_fi_regular,
47009ed2f16SLiu Bo 
4711d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4721d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, u64 start),
47309ed2f16SLiu Bo 
47409ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, start)
47509ed2f16SLiu Bo );
47609ed2f16SLiu Bo 
47709ed2f16SLiu Bo DEFINE_EVENT(
47809ed2f16SLiu Bo 	btrfs__file_extent_item_regular, btrfs_truncate_show_fi_regular,
47909ed2f16SLiu Bo 
4801d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4811d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, u64 start),
48209ed2f16SLiu Bo 
48309ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, start)
48409ed2f16SLiu Bo );
48509ed2f16SLiu Bo 
48609ed2f16SLiu Bo DEFINE_EVENT(
48709ed2f16SLiu Bo 	btrfs__file_extent_item_inline, btrfs_get_extent_show_fi_inline,
48809ed2f16SLiu Bo 
4891d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4901d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, int slot, u64 start),
49109ed2f16SLiu Bo 
49209ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, slot, start)
49309ed2f16SLiu Bo );
49409ed2f16SLiu Bo 
49509ed2f16SLiu Bo DEFINE_EVENT(
49609ed2f16SLiu Bo 	btrfs__file_extent_item_inline, btrfs_truncate_show_fi_inline,
49709ed2f16SLiu Bo 
4981d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
4991d2e7c7cSDavid Sterba 		 const struct btrfs_file_extent_item *fi, int slot, u64 start),
50009ed2f16SLiu Bo 
50109ed2f16SLiu Bo 	TP_ARGS(bi, l, fi, slot, start)
50209ed2f16SLiu Bo );
50309ed2f16SLiu Bo 
5041abe9b8aSliubo #define show_ordered_flags(flags)					   \
5059d04a8ceSLiu Bo 	__print_flags(flags, "|",					   \
5063c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_REGULAR), 	"REGULAR" 	}, \
5073c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_NOCOW), 		"NOCOW" 	}, \
5083c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_PREALLOC), 	"PREALLOC" 	}, \
5093c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_COMPRESSED), 	"COMPRESSED" 	}, \
5103c198fe0SQu Wenruo 		{ (1 << BTRFS_ORDERED_DIRECT),	 	"DIRECT" 	}, \
5119d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_IO_DONE), 	"IO_DONE" 	}, \
5129d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_COMPLETE), 	"COMPLETE" 	}, \
5139d04a8ceSLiu Bo 		{ (1 << BTRFS_ORDERED_IOERR), 		"IOERR" 	}, \
514792ddef0SLiu Bo 		{ (1 << BTRFS_ORDERED_TRUNCATED), 	"TRUNCATED"	})
515e112e2b4SLiu Bo 
5161abe9b8aSliubo 
5171abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__ordered_extent,
5181abe9b8aSliubo 
519acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5209a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5211abe9b8aSliubo 
5221abe9b8aSliubo 	TP_ARGS(inode, ordered),
5231abe9b8aSliubo 
524bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
525f8f8e189SDavid Sterba 		__field(	u64,  ino		)
5261abe9b8aSliubo 		__field(	u64,  file_offset	)
5271abe9b8aSliubo 		__field(	u64,  start		)
5281abe9b8aSliubo 		__field(	u64,  len		)
5291abe9b8aSliubo 		__field(	u64,  disk_len		)
5301abe9b8aSliubo 		__field(	u64,  bytes_left	)
5311abe9b8aSliubo 		__field(	unsigned long,  flags	)
5321abe9b8aSliubo 		__field(	int,  compress_type	)
5331abe9b8aSliubo 		__field(	int,  refs		)
5341abe9b8aSliubo 		__field(	u64,  root_objectid	)
53578566548SLiu Bo 		__field(	u64,  truncated_len	)
5361abe9b8aSliubo 	),
5371abe9b8aSliubo 
538acbf1dd0SNikolay Borisov 	TP_fast_assign_btrfs(inode->root->fs_info,
539acbf1dd0SNikolay Borisov 		__entry->ino 		= btrfs_ino(inode);
5401abe9b8aSliubo 		__entry->file_offset	= ordered->file_offset;
541bffe633eSOmar Sandoval 		__entry->start		= ordered->disk_bytenr;
542bffe633eSOmar Sandoval 		__entry->len		= ordered->num_bytes;
543bffe633eSOmar Sandoval 		__entry->disk_len	= ordered->disk_num_bytes;
5441abe9b8aSliubo 		__entry->bytes_left	= ordered->bytes_left;
5451abe9b8aSliubo 		__entry->flags		= ordered->flags;
5461abe9b8aSliubo 		__entry->compress_type	= ordered->compress_type;
547e76edab7SElena Reshetova 		__entry->refs		= refcount_read(&ordered->refs);
548acbf1dd0SNikolay Borisov 		__entry->root_objectid	= inode->root->root_key.objectid;
54978566548SLiu Bo 		__entry->truncated_len	= ordered->truncated_len;
5501abe9b8aSliubo 	),
5511abe9b8aSliubo 
552562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu file_offset=%llu "
553562a7a07SDavid Sterba 		  "start=%llu len=%llu disk_len=%llu "
554562a7a07SDavid Sterba 		  "truncated_len=%llu "
555562a7a07SDavid Sterba 		  "bytes_left=%llu flags=%s compress_type=%d "
5561abe9b8aSliubo 		  "refs=%d",
5571abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
5588eec8463SDavid Sterba 		  __entry->ino,
5598eec8463SDavid Sterba 		  __entry->file_offset,
5608eec8463SDavid Sterba 		  __entry->start,
5618eec8463SDavid Sterba 		  __entry->len,
5628eec8463SDavid Sterba 		  __entry->disk_len,
5638eec8463SDavid Sterba 		  __entry->truncated_len,
5648eec8463SDavid Sterba 		  __entry->bytes_left,
5651abe9b8aSliubo 		  show_ordered_flags(__entry->flags),
5661abe9b8aSliubo 		  __entry->compress_type, __entry->refs)
5671abe9b8aSliubo );
5681abe9b8aSliubo 
5691abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_add,
5701abe9b8aSliubo 
571acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5729a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5731abe9b8aSliubo 
5741abe9b8aSliubo 	TP_ARGS(inode, ordered)
5751abe9b8aSliubo );
5761abe9b8aSliubo 
5771abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_remove,
5781abe9b8aSliubo 
579acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5809a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5811abe9b8aSliubo 
5821abe9b8aSliubo 	TP_ARGS(inode, ordered)
5831abe9b8aSliubo );
5841abe9b8aSliubo 
5851abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_start,
5861abe9b8aSliubo 
587acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5889a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5891abe9b8aSliubo 
5901abe9b8aSliubo 	TP_ARGS(inode, ordered)
5911abe9b8aSliubo );
5921abe9b8aSliubo 
5931abe9b8aSliubo DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_put,
5941abe9b8aSliubo 
595acbf1dd0SNikolay Borisov 	TP_PROTO(const struct btrfs_inode *inode,
5969a35b637SJeff Mahoney 		 const struct btrfs_ordered_extent *ordered),
5971abe9b8aSliubo 
5981abe9b8aSliubo 	TP_ARGS(inode, ordered)
5991abe9b8aSliubo );
6001abe9b8aSliubo 
6011abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__writepage,
6021abe9b8aSliubo 
6039a35b637SJeff Mahoney 	TP_PROTO(const struct page *page, const struct inode *inode,
6049a35b637SJeff Mahoney 		 const struct writeback_control *wbc),
6051abe9b8aSliubo 
6061abe9b8aSliubo 	TP_ARGS(page, inode, wbc),
6071abe9b8aSliubo 
608bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
609f8f8e189SDavid Sterba 		__field(	u64,	ino			)
6101abe9b8aSliubo 		__field(	pgoff_t,  index			)
6111abe9b8aSliubo 		__field(	long,   nr_to_write		)
6121abe9b8aSliubo 		__field(	long,   pages_skipped		)
6131abe9b8aSliubo 		__field(	loff_t, range_start		)
6141abe9b8aSliubo 		__field(	loff_t, range_end		)
6151abe9b8aSliubo 		__field(	char,   for_kupdate		)
6161abe9b8aSliubo 		__field(	char,   for_reclaim		)
6171abe9b8aSliubo 		__field(	char,   range_cyclic		)
61894c3f6c6SDavid Sterba 		__field(	unsigned long,  writeback_index	)
6191abe9b8aSliubo 		__field(	u64,    root_objectid		)
6201abe9b8aSliubo 	),
6211abe9b8aSliubo 
622bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
623f8f8e189SDavid Sterba 		__entry->ino		= btrfs_ino(BTRFS_I(inode));
6241abe9b8aSliubo 		__entry->index		= page->index;
6251abe9b8aSliubo 		__entry->nr_to_write	= wbc->nr_to_write;
6261abe9b8aSliubo 		__entry->pages_skipped	= wbc->pages_skipped;
6271abe9b8aSliubo 		__entry->range_start	= wbc->range_start;
6281abe9b8aSliubo 		__entry->range_end	= wbc->range_end;
6291abe9b8aSliubo 		__entry->for_kupdate	= wbc->for_kupdate;
6301abe9b8aSliubo 		__entry->for_reclaim	= wbc->for_reclaim;
6311abe9b8aSliubo 		__entry->range_cyclic	= wbc->range_cyclic;
6321abe9b8aSliubo 		__entry->writeback_index = inode->i_mapping->writeback_index;
6331abe9b8aSliubo 		__entry->root_objectid	=
6341abe9b8aSliubo 				 BTRFS_I(inode)->root->root_key.objectid;
6351abe9b8aSliubo 	),
6361abe9b8aSliubo 
637f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu page_index=%lu "
638562a7a07SDavid Sterba 		  "nr_to_write=%ld pages_skipped=%ld range_start=%llu "
639562a7a07SDavid Sterba 		  "range_end=%llu for_kupdate=%d "
640562a7a07SDavid Sterba 		  "for_reclaim=%d range_cyclic=%d writeback_index=%lu",
6411abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
6428eec8463SDavid Sterba 		  __entry->ino, __entry->index,
6431abe9b8aSliubo 		  __entry->nr_to_write, __entry->pages_skipped,
6441abe9b8aSliubo 		  __entry->range_start, __entry->range_end,
645846d5a09SWu Fengguang 		  __entry->for_kupdate,
6461abe9b8aSliubo 		  __entry->for_reclaim, __entry->range_cyclic,
64794c3f6c6SDavid Sterba 		  __entry->writeback_index)
6481abe9b8aSliubo );
6491abe9b8aSliubo 
6501abe9b8aSliubo DEFINE_EVENT(btrfs__writepage, __extent_writepage,
6511abe9b8aSliubo 
6529a35b637SJeff Mahoney 	TP_PROTO(const struct page *page, const struct inode *inode,
6539a35b637SJeff Mahoney 		 const struct writeback_control *wbc),
6541abe9b8aSliubo 
6551abe9b8aSliubo 	TP_ARGS(page, inode, wbc)
6561abe9b8aSliubo );
6571abe9b8aSliubo 
6581abe9b8aSliubo TRACE_EVENT(btrfs_writepage_end_io_hook,
6591abe9b8aSliubo 
66038a39ac7SQu Wenruo 	TP_PROTO(const struct btrfs_inode *inode, u64 start, u64 end,
66138a39ac7SQu Wenruo 		 int uptodate),
6621abe9b8aSliubo 
66338a39ac7SQu Wenruo 	TP_ARGS(inode, start, end, uptodate),
6641abe9b8aSliubo 
665bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
666f8f8e189SDavid Sterba 		__field(	u64,	 ino		)
6671abe9b8aSliubo 		__field(	u64,	 start		)
6681abe9b8aSliubo 		__field(	u64,	 end		)
6691abe9b8aSliubo 		__field(	int,	 uptodate	)
6701abe9b8aSliubo 		__field(	u64,    root_objectid	)
6711abe9b8aSliubo 	),
6721abe9b8aSliubo 
67338a39ac7SQu Wenruo 	TP_fast_assign_btrfs(inode->root->fs_info,
67438a39ac7SQu Wenruo 		__entry->ino	= btrfs_ino(inode);
6751abe9b8aSliubo 		__entry->start	= start;
6761abe9b8aSliubo 		__entry->end	= end;
6771abe9b8aSliubo 		__entry->uptodate = uptodate;
67838a39ac7SQu Wenruo 		__entry->root_objectid = inode->root->root_key.objectid;
6791abe9b8aSliubo 	),
6801abe9b8aSliubo 
68138a39ac7SQu Wenruo 	TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu end=%llu uptodate=%d",
6821abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
68338a39ac7SQu Wenruo 		  __entry->ino, __entry->start,
6848eec8463SDavid Sterba 		  __entry->end, __entry->uptodate)
6851abe9b8aSliubo );
6861abe9b8aSliubo 
6871abe9b8aSliubo TRACE_EVENT(btrfs_sync_file,
6881abe9b8aSliubo 
6899a35b637SJeff Mahoney 	TP_PROTO(const struct file *file, int datasync),
6901abe9b8aSliubo 
6911abe9b8aSliubo 	TP_ARGS(file, datasync),
6921abe9b8aSliubo 
693bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
694f8f8e189SDavid Sterba 		__field(	u64,	ino		)
695f8f8e189SDavid Sterba 		__field(	u64,	parent		)
6961abe9b8aSliubo 		__field(	int,    datasync	)
6971abe9b8aSliubo 		__field(	u64,    root_objectid	)
6981abe9b8aSliubo 	),
6991abe9b8aSliubo 
7001abe9b8aSliubo 	TP_fast_assign(
7019a35b637SJeff Mahoney 		const struct dentry *dentry = file->f_path.dentry;
7029a35b637SJeff Mahoney 		const struct inode *inode = d_inode(dentry);
7031abe9b8aSliubo 
704bc074524SJeff Mahoney 		TP_fast_assign_fsid(btrfs_sb(file->f_path.dentry->d_sb));
705f8f8e189SDavid Sterba 		__entry->ino		= btrfs_ino(BTRFS_I(inode));
706f8f8e189SDavid Sterba 		__entry->parent		= btrfs_ino(BTRFS_I(d_inode(dentry->d_parent)));
7071abe9b8aSliubo 		__entry->datasync	= datasync;
7081abe9b8aSliubo 		__entry->root_objectid	=
7091abe9b8aSliubo 				 BTRFS_I(inode)->root->root_key.objectid;
7101abe9b8aSliubo 	),
7111abe9b8aSliubo 
712f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) ino=%llu parent=%llu datasync=%d",
7131abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
7148eec8463SDavid Sterba 		  __entry->ino,
7158eec8463SDavid Sterba 		  __entry->parent,
7161abe9b8aSliubo 		  __entry->datasync)
7171abe9b8aSliubo );
7181abe9b8aSliubo 
7191abe9b8aSliubo TRACE_EVENT(btrfs_sync_fs,
7201abe9b8aSliubo 
7219a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, int wait),
7221abe9b8aSliubo 
723bc074524SJeff Mahoney 	TP_ARGS(fs_info, wait),
7241abe9b8aSliubo 
725bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
7261abe9b8aSliubo 		__field(	int,  wait		)
7271abe9b8aSliubo 	),
7281abe9b8aSliubo 
729bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
7301abe9b8aSliubo 		__entry->wait	= wait;
7311abe9b8aSliubo 	),
7321abe9b8aSliubo 
733bc074524SJeff Mahoney 	TP_printk_btrfs("wait=%d", __entry->wait)
7341abe9b8aSliubo );
7351abe9b8aSliubo 
736c83f8effSJosef Bacik TRACE_EVENT(btrfs_add_block_group,
737c83f8effSJosef Bacik 
7389a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
73932da5386SDavid Sterba 		 const struct btrfs_block_group *block_group, int create),
740c83f8effSJosef Bacik 
741c83f8effSJosef Bacik 	TP_ARGS(fs_info, block_group, create),
742c83f8effSJosef Bacik 
7432e63e62dSDavid Sterba 	TP_STRUCT__entry_btrfs(
744c83f8effSJosef Bacik 		__field(	u64,	offset			)
745c83f8effSJosef Bacik 		__field(	u64,	size			)
746c83f8effSJosef Bacik 		__field(	u64,	flags			)
747c83f8effSJosef Bacik 		__field(	u64,	bytes_used		)
748c83f8effSJosef Bacik 		__field(	u64,	bytes_super		)
749c83f8effSJosef Bacik 		__field(	int,	create			)
750c83f8effSJosef Bacik 	),
751c83f8effSJosef Bacik 
7522e63e62dSDavid Sterba 	TP_fast_assign_btrfs(fs_info,
753b3470b5dSDavid Sterba 		__entry->offset		= block_group->start;
754b3470b5dSDavid Sterba 		__entry->size		= block_group->length;
755c83f8effSJosef Bacik 		__entry->flags		= block_group->flags;
756bf38be65SDavid Sterba 		__entry->bytes_used	= block_group->used;
757c83f8effSJosef Bacik 		__entry->bytes_super	= block_group->bytes_super;
758c83f8effSJosef Bacik 		__entry->create		= create;
759c83f8effSJosef Bacik 	),
760c83f8effSJosef Bacik 
7612e63e62dSDavid Sterba 	TP_printk_btrfs("block_group offset=%llu size=%llu "
762562a7a07SDavid Sterba 		  "flags=%llu(%s) bytes_used=%llu bytes_super=%llu "
7632e63e62dSDavid Sterba 		  "create=%d",
7648eec8463SDavid Sterba 		  __entry->offset,
7658eec8463SDavid Sterba 		  __entry->size,
7668eec8463SDavid Sterba 		  __entry->flags,
767c83f8effSJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
768c83f8effSJosef Bacik 				BTRFS_GROUP_FLAGS),
7698eec8463SDavid Sterba 		  __entry->bytes_used,
7708eec8463SDavid Sterba 		  __entry->bytes_super, __entry->create)
771c83f8effSJosef Bacik );
772c83f8effSJosef Bacik 
7731abe9b8aSliubo #define show_ref_action(action)						\
7741abe9b8aSliubo 	__print_symbolic(action,					\
7751abe9b8aSliubo 		{ BTRFS_ADD_DELAYED_REF,    "ADD_DELAYED_REF" },	\
7761abe9b8aSliubo 		{ BTRFS_DROP_DELAYED_REF,   "DROP_DELAYED_REF" },	\
7771abe9b8aSliubo 		{ BTRFS_ADD_DELAYED_EXTENT, "ADD_DELAYED_EXTENT" }, 	\
7781abe9b8aSliubo 		{ BTRFS_UPDATE_DELAYED_HEAD, "UPDATE_DELAYED_HEAD" })
7791abe9b8aSliubo 
7801abe9b8aSliubo 
781599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_tree_ref,
7821abe9b8aSliubo 
7839a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
7849a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
7859a35b637SJeff Mahoney 		 const struct btrfs_delayed_tree_ref *full_ref,
7861abe9b8aSliubo 		 int action),
7871abe9b8aSliubo 
788bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action),
7891abe9b8aSliubo 
790bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
7911abe9b8aSliubo 		__field(	u64,  bytenr		)
7921abe9b8aSliubo 		__field(	u64,  num_bytes		)
7931abe9b8aSliubo 		__field(	int,  action		)
7941abe9b8aSliubo 		__field(	u64,  parent		)
7951abe9b8aSliubo 		__field(	u64,  ref_root		)
7961abe9b8aSliubo 		__field(	int,  level		)
7971abe9b8aSliubo 		__field(	int,  type		)
798dea7d76eSLiu Bo 		__field(	u64,  seq		)
7991abe9b8aSliubo 	),
8001abe9b8aSliubo 
801bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
8021abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
8031abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
8041abe9b8aSliubo 		__entry->action		= action;
8051abe9b8aSliubo 		__entry->parent		= full_ref->parent;
8061abe9b8aSliubo 		__entry->ref_root	= full_ref->root;
8071abe9b8aSliubo 		__entry->level		= full_ref->level;
8081abe9b8aSliubo 		__entry->type		= ref->type;
809dea7d76eSLiu Bo 		__entry->seq		= ref->seq;
8101abe9b8aSliubo 	),
8111abe9b8aSliubo 
812562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
813562a7a07SDavid Sterba 		  "parent=%llu(%s) ref_root=%llu(%s) level=%d "
814562a7a07SDavid Sterba 		  "type=%s seq=%llu",
8158eec8463SDavid Sterba 		  __entry->bytenr,
8168eec8463SDavid Sterba 		  __entry->num_bytes,
8171abe9b8aSliubo 		  show_ref_action(__entry->action),
8181abe9b8aSliubo 		  show_root_type(__entry->parent),
8191abe9b8aSliubo 		  show_root_type(__entry->ref_root),
820dea7d76eSLiu Bo 		  __entry->level, show_ref_type(__entry->type),
8218eec8463SDavid Sterba 		  __entry->seq)
8221abe9b8aSliubo );
8231abe9b8aSliubo 
824599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_tree_ref,  add_delayed_tree_ref,
825599c75ecSLiu Bo 
8269a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8279a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8289a35b637SJeff Mahoney 		 const struct btrfs_delayed_tree_ref *full_ref,
829599c75ecSLiu Bo 		 int action),
830599c75ecSLiu Bo 
831bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
832599c75ecSLiu Bo );
833599c75ecSLiu Bo 
834599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_tree_ref,  run_delayed_tree_ref,
835599c75ecSLiu Bo 
8369a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8379a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8389a35b637SJeff Mahoney 		 const struct btrfs_delayed_tree_ref *full_ref,
839599c75ecSLiu Bo 		 int action),
840599c75ecSLiu Bo 
841bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
842599c75ecSLiu Bo );
843599c75ecSLiu Bo 
844599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_data_ref,
8451abe9b8aSliubo 
8469a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8479a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8489a35b637SJeff Mahoney 		 const struct btrfs_delayed_data_ref *full_ref,
8491abe9b8aSliubo 		 int action),
8501abe9b8aSliubo 
851bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action),
8521abe9b8aSliubo 
853bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
8541abe9b8aSliubo 		__field(	u64,  bytenr		)
8551abe9b8aSliubo 		__field(	u64,  num_bytes		)
8561abe9b8aSliubo 		__field(	int,  action		)
8571abe9b8aSliubo 		__field(	u64,  parent		)
8581abe9b8aSliubo 		__field(	u64,  ref_root		)
8591abe9b8aSliubo 		__field(	u64,  owner		)
8601abe9b8aSliubo 		__field(	u64,  offset		)
8611abe9b8aSliubo 		__field(	int,  type		)
862dea7d76eSLiu Bo 		__field(	u64,  seq		)
8631abe9b8aSliubo 	),
8641abe9b8aSliubo 
865bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
8661abe9b8aSliubo 		__entry->bytenr		= ref->bytenr;
8671abe9b8aSliubo 		__entry->num_bytes	= ref->num_bytes;
8681abe9b8aSliubo 		__entry->action		= action;
8691abe9b8aSliubo 		__entry->parent		= full_ref->parent;
8701abe9b8aSliubo 		__entry->ref_root	= full_ref->root;
8711abe9b8aSliubo 		__entry->owner		= full_ref->objectid;
8721abe9b8aSliubo 		__entry->offset		= full_ref->offset;
8731abe9b8aSliubo 		__entry->type		= ref->type;
874dea7d76eSLiu Bo 		__entry->seq		= ref->seq;
8751abe9b8aSliubo 	),
8761abe9b8aSliubo 
877562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
878562a7a07SDavid Sterba 		  "parent=%llu(%s) ref_root=%llu(%s) owner=%llu "
879562a7a07SDavid Sterba 		  "offset=%llu type=%s seq=%llu",
8808eec8463SDavid Sterba 		  __entry->bytenr,
8818eec8463SDavid Sterba 		  __entry->num_bytes,
8821abe9b8aSliubo 		  show_ref_action(__entry->action),
8831abe9b8aSliubo 		  show_root_type(__entry->parent),
8841abe9b8aSliubo 		  show_root_type(__entry->ref_root),
8858eec8463SDavid Sterba 		  __entry->owner,
8868eec8463SDavid Sterba 		  __entry->offset,
887dea7d76eSLiu Bo 		  show_ref_type(__entry->type),
8888eec8463SDavid Sterba 		  __entry->seq)
8891abe9b8aSliubo );
8901abe9b8aSliubo 
891599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_data_ref,  add_delayed_data_ref,
892599c75ecSLiu Bo 
8939a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
8949a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
8959a35b637SJeff Mahoney 		 const struct btrfs_delayed_data_ref *full_ref,
896599c75ecSLiu Bo 		 int action),
897599c75ecSLiu Bo 
898bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
899599c75ecSLiu Bo );
900599c75ecSLiu Bo 
901599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_data_ref,  run_delayed_data_ref,
902599c75ecSLiu Bo 
9039a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9049a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_node *ref,
9059a35b637SJeff Mahoney 		 const struct btrfs_delayed_data_ref *full_ref,
906599c75ecSLiu Bo 		 int action),
907599c75ecSLiu Bo 
908bc074524SJeff Mahoney 	TP_ARGS(fs_info, ref, full_ref, action)
909599c75ecSLiu Bo );
910599c75ecSLiu Bo 
911599c75ecSLiu Bo DECLARE_EVENT_CLASS(btrfs_delayed_ref_head,
9121abe9b8aSliubo 
9139a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9149a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_head *head_ref,
9151abe9b8aSliubo 		 int action),
9161abe9b8aSliubo 
917d278850eSJosef Bacik 	TP_ARGS(fs_info, head_ref, action),
9181abe9b8aSliubo 
919bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
9201abe9b8aSliubo 		__field(	u64,  bytenr		)
9211abe9b8aSliubo 		__field(	u64,  num_bytes		)
9221abe9b8aSliubo 		__field(	int,  action		)
9231abe9b8aSliubo 		__field(	int,  is_data		)
9241abe9b8aSliubo 	),
9251abe9b8aSliubo 
926bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
927d278850eSJosef Bacik 		__entry->bytenr		= head_ref->bytenr;
928d278850eSJosef Bacik 		__entry->num_bytes	= head_ref->num_bytes;
9291abe9b8aSliubo 		__entry->action		= action;
9301abe9b8aSliubo 		__entry->is_data	= head_ref->is_data;
9311abe9b8aSliubo 	),
9321abe9b8aSliubo 
933562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s is_data=%d",
9348eec8463SDavid Sterba 		  __entry->bytenr,
9358eec8463SDavid Sterba 		  __entry->num_bytes,
9361abe9b8aSliubo 		  show_ref_action(__entry->action),
9371abe9b8aSliubo 		  __entry->is_data)
9381abe9b8aSliubo );
9391abe9b8aSliubo 
940599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_ref_head,  add_delayed_ref_head,
941599c75ecSLiu Bo 
9429a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9439a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_head *head_ref,
944599c75ecSLiu Bo 		 int action),
945599c75ecSLiu Bo 
946d278850eSJosef Bacik 	TP_ARGS(fs_info, head_ref, action)
947599c75ecSLiu Bo );
948599c75ecSLiu Bo 
949599c75ecSLiu Bo DEFINE_EVENT(btrfs_delayed_ref_head,  run_delayed_ref_head,
950599c75ecSLiu Bo 
9519a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9529a35b637SJeff Mahoney 		 const struct btrfs_delayed_ref_head *head_ref,
953599c75ecSLiu Bo 		 int action),
954599c75ecSLiu Bo 
955d278850eSJosef Bacik 	TP_ARGS(fs_info, head_ref, action)
956599c75ecSLiu Bo );
957599c75ecSLiu Bo 
9581abe9b8aSliubo #define show_chunk_type(type)					\
9591abe9b8aSliubo 	__print_flags(type, "|",				\
9601abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_DATA, 	"DATA"	},	\
9611abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_SYSTEM, 	"SYSTEM"},	\
9621abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_METADATA, 	"METADATA"},	\
9631abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_RAID0, 	"RAID0" },	\
9641abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_RAID1, 	"RAID1" },	\
9651abe9b8aSliubo 		{ BTRFS_BLOCK_GROUP_DUP, 	"DUP"	},	\
966e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID10, 	"RAID10"},	\
967e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID5, 	"RAID5"	},	\
968e112e2b4SLiu Bo 		{ BTRFS_BLOCK_GROUP_RAID6, 	"RAID6"	})
9691abe9b8aSliubo 
9701abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__chunk,
9711abe9b8aSliubo 
9729a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
9739a35b637SJeff Mahoney 		 const struct map_lookup *map, u64 offset, u64 size),
9741abe9b8aSliubo 
9756bccf3abSJeff Mahoney 	TP_ARGS(fs_info, map, offset, size),
9761abe9b8aSliubo 
977bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
9781abe9b8aSliubo 		__field(	int,  num_stripes		)
9791abe9b8aSliubo 		__field(	u64,  type			)
9801abe9b8aSliubo 		__field(	int,  sub_stripes		)
9811abe9b8aSliubo 		__field(	u64,  offset			)
9821abe9b8aSliubo 		__field(	u64,  size			)
9831abe9b8aSliubo 		__field(	u64,  root_objectid		)
9841abe9b8aSliubo 	),
9851abe9b8aSliubo 
9866bccf3abSJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
9871abe9b8aSliubo 		__entry->num_stripes	= map->num_stripes;
9881abe9b8aSliubo 		__entry->type		= map->type;
9891abe9b8aSliubo 		__entry->sub_stripes	= map->sub_stripes;
9901abe9b8aSliubo 		__entry->offset		= offset;
9911abe9b8aSliubo 		__entry->size		= size;
9926bccf3abSJeff Mahoney 		__entry->root_objectid	= fs_info->chunk_root->root_key.objectid;
9931abe9b8aSliubo 	),
9941abe9b8aSliubo 
995562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) offset=%llu size=%llu "
996562a7a07SDavid Sterba 		  "num_stripes=%d sub_stripes=%d type=%s",
9971abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
9988eec8463SDavid Sterba 		  __entry->offset,
9998eec8463SDavid Sterba 		  __entry->size,
10001abe9b8aSliubo 		  __entry->num_stripes, __entry->sub_stripes,
10011abe9b8aSliubo 		  show_chunk_type(__entry->type))
10021abe9b8aSliubo );
10031abe9b8aSliubo 
10041abe9b8aSliubo DEFINE_EVENT(btrfs__chunk,  btrfs_chunk_alloc,
10051abe9b8aSliubo 
10069a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
10079a35b637SJeff Mahoney 		 const struct map_lookup *map, u64 offset, u64 size),
10081abe9b8aSliubo 
10096bccf3abSJeff Mahoney 	TP_ARGS(fs_info, map, offset, size)
10101abe9b8aSliubo );
10111abe9b8aSliubo 
10121abe9b8aSliubo DEFINE_EVENT(btrfs__chunk,  btrfs_chunk_free,
10131abe9b8aSliubo 
10149a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
10159a35b637SJeff Mahoney 		 const struct map_lookup *map, u64 offset, u64 size),
10161abe9b8aSliubo 
10176bccf3abSJeff Mahoney 	TP_ARGS(fs_info, map, offset, size)
10181abe9b8aSliubo );
10191abe9b8aSliubo 
10201abe9b8aSliubo TRACE_EVENT(btrfs_cow_block,
10211abe9b8aSliubo 
10229a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_root *root, const struct extent_buffer *buf,
10239a35b637SJeff Mahoney 		 const struct extent_buffer *cow),
10241abe9b8aSliubo 
10251abe9b8aSliubo 	TP_ARGS(root, buf, cow),
10261abe9b8aSliubo 
1027bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
10281abe9b8aSliubo 		__field(	u64,  root_objectid		)
10291abe9b8aSliubo 		__field(	u64,  buf_start			)
10301abe9b8aSliubo 		__field(	int,  refs			)
10311abe9b8aSliubo 		__field(	u64,  cow_start			)
10321abe9b8aSliubo 		__field(	int,  buf_level			)
10331abe9b8aSliubo 		__field(	int,  cow_level			)
10341abe9b8aSliubo 	),
10351abe9b8aSliubo 
1036bc074524SJeff Mahoney 	TP_fast_assign_btrfs(root->fs_info,
10371abe9b8aSliubo 		__entry->root_objectid	= root->root_key.objectid;
10381abe9b8aSliubo 		__entry->buf_start	= buf->start;
10391abe9b8aSliubo 		__entry->refs		= atomic_read(&buf->refs);
10401abe9b8aSliubo 		__entry->cow_start	= cow->start;
10411abe9b8aSliubo 		__entry->buf_level	= btrfs_header_level(buf);
10421abe9b8aSliubo 		__entry->cow_level	= btrfs_header_level(cow);
10431abe9b8aSliubo 	),
10441abe9b8aSliubo 
1045562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) refs=%d orig_buf=%llu "
1046562a7a07SDavid Sterba 		  "(orig_level=%d) cow_buf=%llu (cow_level=%d)",
10471abe9b8aSliubo 		  show_root_type(__entry->root_objectid),
10481abe9b8aSliubo 		  __entry->refs,
10498eec8463SDavid Sterba 		  __entry->buf_start,
10501abe9b8aSliubo 		  __entry->buf_level,
10518eec8463SDavid Sterba 		  __entry->cow_start,
10521abe9b8aSliubo 		  __entry->cow_level)
10531abe9b8aSliubo );
10541abe9b8aSliubo 
10558c2a3ca2SJosef Bacik TRACE_EVENT(btrfs_space_reservation,
10568c2a3ca2SJosef Bacik 
10571d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info, const char *type, u64 val,
10588c2a3ca2SJosef Bacik 		 u64 bytes, int reserve),
10598c2a3ca2SJosef Bacik 
10608c2a3ca2SJosef Bacik 	TP_ARGS(fs_info, type, val, bytes, reserve),
10618c2a3ca2SJosef Bacik 
1062bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
10638c2a3ca2SJosef Bacik 		__string(	type,	type			)
10648c2a3ca2SJosef Bacik 		__field(	u64,	val			)
10658c2a3ca2SJosef Bacik 		__field(	u64,	bytes			)
10668c2a3ca2SJosef Bacik 		__field(	int,	reserve			)
10678c2a3ca2SJosef Bacik 	),
10688c2a3ca2SJosef Bacik 
1069bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
10708c2a3ca2SJosef Bacik 		__assign_str(type, type);
10718c2a3ca2SJosef Bacik 		__entry->val		= val;
10728c2a3ca2SJosef Bacik 		__entry->bytes		= bytes;
10738c2a3ca2SJosef Bacik 		__entry->reserve	= reserve;
10748c2a3ca2SJosef Bacik 	),
10758c2a3ca2SJosef Bacik 
10765439c7f5SDavid Sterba 	TP_printk_btrfs("%s: %llu %s %llu", __get_str(type), __entry->val,
1077bc074524SJeff Mahoney 			__entry->reserve ? "reserve" : "release",
10788c2a3ca2SJosef Bacik 			__entry->bytes)
10798c2a3ca2SJosef Bacik );
10808c2a3ca2SJosef Bacik 
1081f376df2bSJosef Bacik TRACE_EVENT(btrfs_trigger_flush,
1082f376df2bSJosef Bacik 
10839a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 bytes,
10841d2e7c7cSDavid Sterba 		 int flush, const char *reason),
1085f376df2bSJosef Bacik 
1086f376df2bSJosef Bacik 	TP_ARGS(fs_info, flags, bytes, flush, reason),
1087f376df2bSJosef Bacik 
10882e63e62dSDavid Sterba 	TP_STRUCT__entry_btrfs(
1089f376df2bSJosef Bacik 		__field(	u64,	flags			)
1090f376df2bSJosef Bacik 		__field(	u64,	bytes			)
1091f376df2bSJosef Bacik 		__field(	int,	flush			)
1092f376df2bSJosef Bacik 		__string(	reason,	reason			)
1093f376df2bSJosef Bacik 	),
1094f376df2bSJosef Bacik 
10952e63e62dSDavid Sterba 	TP_fast_assign_btrfs(fs_info,
1096f376df2bSJosef Bacik 		__entry->flags	= flags;
1097f376df2bSJosef Bacik 		__entry->bytes	= bytes;
1098f376df2bSJosef Bacik 		__entry->flush	= flush;
109978c14b38SJoe Perches 		__assign_str(reason, reason);
1100f376df2bSJosef Bacik 	),
1101f376df2bSJosef Bacik 
11022e63e62dSDavid Sterba 	TP_printk_btrfs("%s: flush=%d(%s) flags=%llu(%s) bytes=%llu",
11032e63e62dSDavid Sterba 		  __get_str(reason), __entry->flush,
110445e31869SNikolay Borisov 		  __print_symbolic(__entry->flush, FLUSH_ACTIONS),
11058eec8463SDavid Sterba 		  __entry->flags,
1106f376df2bSJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
1107f376df2bSJosef Bacik 				BTRFS_GROUP_FLAGS),
11088eec8463SDavid Sterba 		  __entry->bytes)
1109f376df2bSJosef Bacik );
1110f376df2bSJosef Bacik 
1111f376df2bSJosef Bacik 
1112f376df2bSJosef Bacik TRACE_EVENT(btrfs_flush_space,
1113f376df2bSJosef Bacik 
11149a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 num_bytes,
11154b02b00fSJosef Bacik 		 int state, int ret, bool for_preempt),
1116f376df2bSJosef Bacik 
11174b02b00fSJosef Bacik 	TP_ARGS(fs_info, flags, num_bytes, state, ret, for_preempt),
1118f376df2bSJosef Bacik 
11192e63e62dSDavid Sterba 	TP_STRUCT__entry_btrfs(
1120f376df2bSJosef Bacik 		__field(	u64,	flags			)
1121f376df2bSJosef Bacik 		__field(	u64,	num_bytes		)
1122f376df2bSJosef Bacik 		__field(	int,	state			)
1123f376df2bSJosef Bacik 		__field(	int,	ret			)
11244b02b00fSJosef Bacik 		__field(       bool,	for_preempt		)
1125f376df2bSJosef Bacik 	),
1126f376df2bSJosef Bacik 
11272e63e62dSDavid Sterba 	TP_fast_assign_btrfs(fs_info,
1128f376df2bSJosef Bacik 		__entry->flags		=	flags;
1129f376df2bSJosef Bacik 		__entry->num_bytes	=	num_bytes;
1130f376df2bSJosef Bacik 		__entry->state		=	state;
1131f376df2bSJosef Bacik 		__entry->ret		=	ret;
11324b02b00fSJosef Bacik 		__entry->for_preempt	=	for_preempt;
1133f376df2bSJosef Bacik 	),
1134f376df2bSJosef Bacik 
11354b02b00fSJosef Bacik 	TP_printk_btrfs("state=%d(%s) flags=%llu(%s) num_bytes=%llu ret=%d for_preempt=%d",
11362e63e62dSDavid Sterba 		  __entry->state,
1137f0cdd15cSNikolay Borisov 		  __print_symbolic(__entry->state, FLUSH_STATES),
11388eec8463SDavid Sterba 		  __entry->flags,
1139f376df2bSJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
1140f376df2bSJosef Bacik 				BTRFS_GROUP_FLAGS),
11414b02b00fSJosef Bacik 		  __entry->num_bytes, __entry->ret, __entry->for_preempt)
1142f376df2bSJosef Bacik );
1143f376df2bSJosef Bacik 
11441abe9b8aSliubo DECLARE_EVENT_CLASS(btrfs__reserved_extent,
11451abe9b8aSliubo 
11469a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
11471abe9b8aSliubo 
114871ff6437SJeff Mahoney 	TP_ARGS(fs_info, start, len),
11491abe9b8aSliubo 
1150bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
11511abe9b8aSliubo 		__field(	u64,  start			)
11521abe9b8aSliubo 		__field(	u64,  len			)
11531abe9b8aSliubo 	),
11541abe9b8aSliubo 
115571ff6437SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
11561abe9b8aSliubo 		__entry->start		= start;
11571abe9b8aSliubo 		__entry->len		= len;
11581abe9b8aSliubo 	),
11591abe9b8aSliubo 
1160562a7a07SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) start=%llu len=%llu",
116171ff6437SJeff Mahoney 		  show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
11628eec8463SDavid Sterba 		  __entry->start,
11638eec8463SDavid Sterba 		  __entry->len)
11641abe9b8aSliubo );
11651abe9b8aSliubo 
11661abe9b8aSliubo DEFINE_EVENT(btrfs__reserved_extent,  btrfs_reserved_extent_alloc,
11671abe9b8aSliubo 
11689a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
11691abe9b8aSliubo 
117071ff6437SJeff Mahoney 	TP_ARGS(fs_info, start, len)
11711abe9b8aSliubo );
11721abe9b8aSliubo 
11731abe9b8aSliubo DEFINE_EVENT(btrfs__reserved_extent,  btrfs_reserved_extent_free,
11741abe9b8aSliubo 
11759a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
11761abe9b8aSliubo 
117771ff6437SJeff Mahoney 	TP_ARGS(fs_info, start, len)
11781abe9b8aSliubo );
11791abe9b8aSliubo 
11803f7de037SJosef Bacik TRACE_EVENT(find_free_extent,
11813f7de037SJosef Bacik 
1182437490feSQu Wenruo 	TP_PROTO(const struct btrfs_root *root, u64 num_bytes,
11839a35b637SJeff Mahoney 		 u64 empty_size, u64 data),
11843f7de037SJosef Bacik 
1185437490feSQu Wenruo 	TP_ARGS(root, num_bytes, empty_size, data),
11863f7de037SJosef Bacik 
1187bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
1188437490feSQu Wenruo 		__field(	u64,	root_objectid		)
11893f7de037SJosef Bacik 		__field(	u64,	num_bytes		)
11903f7de037SJosef Bacik 		__field(	u64,	empty_size		)
11913f7de037SJosef Bacik 		__field(	u64,	data			)
11923f7de037SJosef Bacik 	),
11933f7de037SJosef Bacik 
1194437490feSQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
1195437490feSQu Wenruo 		__entry->root_objectid	= root->root_key.objectid;
11963f7de037SJosef Bacik 		__entry->num_bytes	= num_bytes;
11973f7de037SJosef Bacik 		__entry->empty_size	= empty_size;
11983f7de037SJosef Bacik 		__entry->data		= data;
11993f7de037SJosef Bacik 	),
12003f7de037SJosef Bacik 
12015439c7f5SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) len=%llu empty_size=%llu flags=%llu(%s)",
1202437490feSQu Wenruo 		  show_root_type(__entry->root_objectid),
12033f7de037SJosef Bacik 		  __entry->num_bytes, __entry->empty_size, __entry->data,
12043f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->data, "|",
12053f7de037SJosef Bacik 				 BTRFS_GROUP_FLAGS))
12063f7de037SJosef Bacik );
12073f7de037SJosef Bacik 
12083f7de037SJosef Bacik DECLARE_EVENT_CLASS(btrfs__reserve_extent,
12093f7de037SJosef Bacik 
121032da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12113f7de037SJosef Bacik 		 u64 len),
12123f7de037SJosef Bacik 
12133dca5c94SQu Wenruo 	TP_ARGS(block_group, start, len),
12143f7de037SJosef Bacik 
1215bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
12163f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
12173f7de037SJosef Bacik 		__field(	u64,	flags			)
12183f7de037SJosef Bacik 		__field(	u64,	start			)
12193f7de037SJosef Bacik 		__field(	u64,	len			)
12203f7de037SJosef Bacik 	),
12213f7de037SJosef Bacik 
12223dca5c94SQu Wenruo 	TP_fast_assign_btrfs(block_group->fs_info,
1223b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
12243f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
12253f7de037SJosef Bacik 		__entry->start		= start;
12263f7de037SJosef Bacik 		__entry->len		= len;
12273f7de037SJosef Bacik 	),
12283f7de037SJosef Bacik 
12295439c7f5SDavid Sterba 	TP_printk_btrfs("root=%llu(%s) block_group=%llu flags=%llu(%s) "
12305439c7f5SDavid Sterba 		  "start=%llu len=%llu",
123171ff6437SJeff Mahoney 		  show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
123271ff6437SJeff Mahoney 		  __entry->bg_objectid,
12333f7de037SJosef Bacik 		  __entry->flags, __print_flags((unsigned long)__entry->flags,
12343f7de037SJosef Bacik 						"|", BTRFS_GROUP_FLAGS),
12353f7de037SJosef Bacik 		  __entry->start, __entry->len)
12363f7de037SJosef Bacik );
12373f7de037SJosef Bacik 
12383f7de037SJosef Bacik DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent,
12393f7de037SJosef Bacik 
124032da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12413f7de037SJosef Bacik 		 u64 len),
12423f7de037SJosef Bacik 
12433dca5c94SQu Wenruo 	TP_ARGS(block_group, start, len)
12443f7de037SJosef Bacik );
12453f7de037SJosef Bacik 
12463f7de037SJosef Bacik DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
12473f7de037SJosef Bacik 
124832da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12493f7de037SJosef Bacik 		 u64 len),
12503f7de037SJosef Bacik 
12513dca5c94SQu Wenruo 	TP_ARGS(block_group, start, len)
12523f7de037SJosef Bacik );
12533f7de037SJosef Bacik 
12543f7de037SJosef Bacik TRACE_EVENT(btrfs_find_cluster,
12553f7de037SJosef Bacik 
125632da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
12573f7de037SJosef Bacik 		 u64 bytes, u64 empty_size, u64 min_bytes),
12583f7de037SJosef Bacik 
12593f7de037SJosef Bacik 	TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
12603f7de037SJosef Bacik 
1261bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
12623f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
12633f7de037SJosef Bacik 		__field(	u64,	flags			)
12643f7de037SJosef Bacik 		__field(	u64,	start			)
12653f7de037SJosef Bacik 		__field(	u64,	bytes			)
12663f7de037SJosef Bacik 		__field(	u64,	empty_size		)
12673f7de037SJosef Bacik 		__field(	u64,	min_bytes		)
12683f7de037SJosef Bacik 	),
12693f7de037SJosef Bacik 
1270bc074524SJeff Mahoney 	TP_fast_assign_btrfs(block_group->fs_info,
1271b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
12723f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
12733f7de037SJosef Bacik 		__entry->start		= start;
12743f7de037SJosef Bacik 		__entry->bytes		= bytes;
12753f7de037SJosef Bacik 		__entry->empty_size	= empty_size;
12763f7de037SJosef Bacik 		__entry->min_bytes	= min_bytes;
12773f7de037SJosef Bacik 	),
12783f7de037SJosef Bacik 
12795439c7f5SDavid Sterba 	TP_printk_btrfs("block_group=%llu flags=%llu(%s) start=%llu len=%llu "
12805439c7f5SDavid Sterba 		  "empty_size=%llu min_bytes=%llu", __entry->bg_objectid,
12813f7de037SJosef Bacik 		  __entry->flags,
12823f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
12833f7de037SJosef Bacik 				BTRFS_GROUP_FLAGS), __entry->start,
12843f7de037SJosef Bacik 		  __entry->bytes, __entry->empty_size,  __entry->min_bytes)
12853f7de037SJosef Bacik );
12863f7de037SJosef Bacik 
12873f7de037SJosef Bacik TRACE_EVENT(btrfs_failed_cluster_setup,
12883f7de037SJosef Bacik 
128932da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group),
12903f7de037SJosef Bacik 
12913f7de037SJosef Bacik 	TP_ARGS(block_group),
12923f7de037SJosef Bacik 
1293bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
12943f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
12953f7de037SJosef Bacik 	),
12963f7de037SJosef Bacik 
1297bc074524SJeff Mahoney 	TP_fast_assign_btrfs(block_group->fs_info,
1298b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
12993f7de037SJosef Bacik 	),
13003f7de037SJosef Bacik 
13015439c7f5SDavid Sterba 	TP_printk_btrfs("block_group=%llu", __entry->bg_objectid)
13023f7de037SJosef Bacik );
13033f7de037SJosef Bacik 
13043f7de037SJosef Bacik TRACE_EVENT(btrfs_setup_cluster,
13053f7de037SJosef Bacik 
130632da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *block_group,
13079a35b637SJeff Mahoney 		 const struct btrfs_free_cluster *cluster,
13089a35b637SJeff Mahoney 		 u64 size, int bitmap),
13093f7de037SJosef Bacik 
13103f7de037SJosef Bacik 	TP_ARGS(block_group, cluster, size, bitmap),
13113f7de037SJosef Bacik 
1312bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
13133f7de037SJosef Bacik 		__field(	u64,	bg_objectid		)
13143f7de037SJosef Bacik 		__field(	u64,	flags			)
13153f7de037SJosef Bacik 		__field(	u64,	start			)
13163f7de037SJosef Bacik 		__field(	u64,	max_size		)
13173f7de037SJosef Bacik 		__field(	u64,	size			)
13183f7de037SJosef Bacik 		__field(	int,	bitmap			)
13193f7de037SJosef Bacik 	),
13203f7de037SJosef Bacik 
1321bc074524SJeff Mahoney 	TP_fast_assign_btrfs(block_group->fs_info,
1322b3470b5dSDavid Sterba 		__entry->bg_objectid	= block_group->start;
13233f7de037SJosef Bacik 		__entry->flags		= block_group->flags;
13243f7de037SJosef Bacik 		__entry->start		= cluster->window_start;
13253f7de037SJosef Bacik 		__entry->max_size	= cluster->max_size;
13263f7de037SJosef Bacik 		__entry->size		= size;
13273f7de037SJosef Bacik 		__entry->bitmap		= bitmap;
13283f7de037SJosef Bacik 	),
13293f7de037SJosef Bacik 
13305439c7f5SDavid Sterba 	TP_printk_btrfs("block_group=%llu flags=%llu(%s) window_start=%llu "
13315439c7f5SDavid Sterba 		  "size=%llu max_size=%llu bitmap=%d",
13323f7de037SJosef Bacik 		  __entry->bg_objectid,
13333f7de037SJosef Bacik 		  __entry->flags,
13343f7de037SJosef Bacik 		  __print_flags((unsigned long)__entry->flags, "|",
13353f7de037SJosef Bacik 				BTRFS_GROUP_FLAGS), __entry->start,
13363f7de037SJosef Bacik 		  __entry->size, __entry->max_size, __entry->bitmap)
13373f7de037SJosef Bacik );
13383f7de037SJosef Bacik 
1339143bede5SJeff Mahoney struct extent_state;
1340143bede5SJeff Mahoney TRACE_EVENT(alloc_extent_state,
1341143bede5SJeff Mahoney 
13429a35b637SJeff Mahoney 	TP_PROTO(const struct extent_state *state,
13439a35b637SJeff Mahoney 		 gfp_t mask, unsigned long IP),
1344143bede5SJeff Mahoney 
1345143bede5SJeff Mahoney 	TP_ARGS(state, mask, IP),
1346143bede5SJeff Mahoney 
1347143bede5SJeff Mahoney 	TP_STRUCT__entry(
13489a35b637SJeff Mahoney 		__field(const struct extent_state *, state)
1349fe573327SVasily Averin 		__field(unsigned long, mask)
135094c3f6c6SDavid Sterba 		__field(const void*, ip)
1351143bede5SJeff Mahoney 	),
1352143bede5SJeff Mahoney 
1353143bede5SJeff Mahoney 	TP_fast_assign(
1354143bede5SJeff Mahoney 		__entry->state	= state,
1355fe573327SVasily Averin 		__entry->mask	= (__force unsigned long)mask,
135694c3f6c6SDavid Sterba 		__entry->ip	= (const void *)IP
1357143bede5SJeff Mahoney 	),
1358143bede5SJeff Mahoney 
1359562a7a07SDavid Sterba 	TP_printk("state=%p mask=%s caller=%pS", __entry->state,
136094c3f6c6SDavid Sterba 		  show_gfp_flags(__entry->mask), __entry->ip)
1361143bede5SJeff Mahoney );
1362143bede5SJeff Mahoney 
1363143bede5SJeff Mahoney TRACE_EVENT(free_extent_state,
1364143bede5SJeff Mahoney 
13659a35b637SJeff Mahoney 	TP_PROTO(const struct extent_state *state, unsigned long IP),
1366143bede5SJeff Mahoney 
1367143bede5SJeff Mahoney 	TP_ARGS(state, IP),
1368143bede5SJeff Mahoney 
1369143bede5SJeff Mahoney 	TP_STRUCT__entry(
13709a35b637SJeff Mahoney 		__field(const struct extent_state *, state)
137194c3f6c6SDavid Sterba 		__field(const void*, ip)
1372143bede5SJeff Mahoney 	),
1373143bede5SJeff Mahoney 
1374143bede5SJeff Mahoney 	TP_fast_assign(
1375143bede5SJeff Mahoney 		__entry->state	= state,
137694c3f6c6SDavid Sterba 		__entry->ip = (const void *)IP
1377143bede5SJeff Mahoney 	),
1378143bede5SJeff Mahoney 
137994c3f6c6SDavid Sterba 	TP_printk("state=%p caller=%pS", __entry->state, __entry->ip)
1380143bede5SJeff Mahoney );
1381143bede5SJeff Mahoney 
138252483bc2SQu Wenruo DECLARE_EVENT_CLASS(btrfs__work,
138352483bc2SQu Wenruo 
13849a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
138552483bc2SQu Wenruo 
138652483bc2SQu Wenruo 	TP_ARGS(work),
138752483bc2SQu Wenruo 
1388bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
13899a35b637SJeff Mahoney 		__field(	const void *,	work			)
13909a35b637SJeff Mahoney 		__field(	const void *,	wq			)
13919a35b637SJeff Mahoney 		__field(	const void *,	func			)
13929a35b637SJeff Mahoney 		__field(	const void *,	ordered_func		)
13939a35b637SJeff Mahoney 		__field(	const void *,	ordered_free		)
13949a35b637SJeff Mahoney 		__field(	const void *,	normal_work		)
139552483bc2SQu Wenruo 	),
139652483bc2SQu Wenruo 
1397bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_work_owner(work),
139852483bc2SQu Wenruo 		__entry->work		= work;
139952483bc2SQu Wenruo 		__entry->wq		= work->wq;
140052483bc2SQu Wenruo 		__entry->func		= work->func;
140152483bc2SQu Wenruo 		__entry->ordered_func	= work->ordered_func;
140252483bc2SQu Wenruo 		__entry->ordered_free	= work->ordered_free;
1403b38a6258SLiu Bo 		__entry->normal_work	= &work->normal_work;
140452483bc2SQu Wenruo 	),
140552483bc2SQu Wenruo 
1406d75f773cSSakari Ailus 	TP_printk_btrfs("work=%p (normal_work=%p) wq=%p func=%ps ordered_func=%p "
1407b38a6258SLiu Bo 		  "ordered_free=%p",
1408b38a6258SLiu Bo 		  __entry->work, __entry->normal_work, __entry->wq,
1409b38a6258SLiu Bo 		   __entry->func, __entry->ordered_func, __entry->ordered_free)
141052483bc2SQu Wenruo );
141152483bc2SQu Wenruo 
1412ac0c7cf8SDavid Sterba /*
1413c9eb55dbSOmar Sandoval  * For situations when the work is freed, we pass fs_info and a tag that matches
1414c9eb55dbSOmar Sandoval  * the address of the work structure so it can be paired with the scheduling
1415c9eb55dbSOmar Sandoval  * event. DO NOT add anything here that dereferences wtag.
1416ac0c7cf8SDavid Sterba  */
141752483bc2SQu Wenruo DECLARE_EVENT_CLASS(btrfs__work__done,
141852483bc2SQu Wenruo 
14199a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
142052483bc2SQu Wenruo 
1421ac0c7cf8SDavid Sterba 	TP_ARGS(fs_info, wtag),
142252483bc2SQu Wenruo 
1423bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
14249a35b637SJeff Mahoney 		__field(	const void *,	wtag			)
142552483bc2SQu Wenruo 	),
142652483bc2SQu Wenruo 
1427ac0c7cf8SDavid Sterba 	TP_fast_assign_btrfs(fs_info,
1428ac0c7cf8SDavid Sterba 		__entry->wtag		= wtag;
142952483bc2SQu Wenruo 	),
143052483bc2SQu Wenruo 
1431ac0c7cf8SDavid Sterba 	TP_printk_btrfs("work->%p", __entry->wtag)
143252483bc2SQu Wenruo );
143352483bc2SQu Wenruo 
143452483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_work_queued,
143552483bc2SQu Wenruo 
14369a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
143752483bc2SQu Wenruo 
143852483bc2SQu Wenruo 	TP_ARGS(work)
143952483bc2SQu Wenruo );
144052483bc2SQu Wenruo 
144152483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_work_sched,
144252483bc2SQu Wenruo 
14439a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
144452483bc2SQu Wenruo 
144552483bc2SQu Wenruo 	TP_ARGS(work)
144652483bc2SQu Wenruo );
144752483bc2SQu Wenruo 
144852483bc2SQu Wenruo DEFINE_EVENT(btrfs__work__done, btrfs_all_work_done,
144952483bc2SQu Wenruo 
14509a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
145152483bc2SQu Wenruo 
1452ac0c7cf8SDavid Sterba 	TP_ARGS(fs_info, wtag)
145352483bc2SQu Wenruo );
145452483bc2SQu Wenruo 
145552483bc2SQu Wenruo DEFINE_EVENT(btrfs__work, btrfs_ordered_sched,
145652483bc2SQu Wenruo 
14579a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_work *work),
145852483bc2SQu Wenruo 
145952483bc2SQu Wenruo 	TP_ARGS(work)
146052483bc2SQu Wenruo );
146152483bc2SQu Wenruo 
1462a31b4a43SChristoph Hellwig DECLARE_EVENT_CLASS(btrfs_workqueue,
1463c3a46891SQu Wenruo 
1464a31b4a43SChristoph Hellwig 	TP_PROTO(const struct btrfs_workqueue *wq, const char *name),
1465c3a46891SQu Wenruo 
1466a31b4a43SChristoph Hellwig 	TP_ARGS(wq, name),
1467c3a46891SQu Wenruo 
1468bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
14699a35b637SJeff Mahoney 		__field(	const void *,	wq			)
1470c3a46891SQu Wenruo 		__string(	name,	name			)
1471c3a46891SQu Wenruo 	),
1472c3a46891SQu Wenruo 
1473bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
1474c3a46891SQu Wenruo 		__entry->wq		= wq;
1475c3a46891SQu Wenruo 		__assign_str(name, name);
1476c3a46891SQu Wenruo 	),
1477c3a46891SQu Wenruo 
1478a31b4a43SChristoph Hellwig 	TP_printk_btrfs("name=%s wq=%p", __get_str(name),
1479c3a46891SQu Wenruo 		  __entry->wq)
1480c3a46891SQu Wenruo );
1481c3a46891SQu Wenruo 
1482a31b4a43SChristoph Hellwig DEFINE_EVENT(btrfs_workqueue, btrfs_workqueue_alloc,
1483c3a46891SQu Wenruo 
1484a31b4a43SChristoph Hellwig 	TP_PROTO(const struct btrfs_workqueue *wq, const char *name),
1485c3a46891SQu Wenruo 
1486a31b4a43SChristoph Hellwig 	TP_ARGS(wq, name)
1487c3a46891SQu Wenruo );
1488c3a46891SQu Wenruo 
1489a31b4a43SChristoph Hellwig DECLARE_EVENT_CLASS(btrfs_workqueue_done,
1490c3a46891SQu Wenruo 
1491a31b4a43SChristoph Hellwig 	TP_PROTO(const struct btrfs_workqueue *wq),
1492c3a46891SQu Wenruo 
1493c3a46891SQu Wenruo 	TP_ARGS(wq),
1494c3a46891SQu Wenruo 
1495bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
14969a35b637SJeff Mahoney 		__field(	const void *,	wq		)
1497c3a46891SQu Wenruo 	),
1498c3a46891SQu Wenruo 
1499bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
1500c3a46891SQu Wenruo 		__entry->wq		= wq;
1501c3a46891SQu Wenruo 	),
1502c3a46891SQu Wenruo 
1503bc074524SJeff Mahoney 	TP_printk_btrfs("wq=%p", __entry->wq)
1504c3a46891SQu Wenruo );
1505c3a46891SQu Wenruo 
1506a31b4a43SChristoph Hellwig DEFINE_EVENT(btrfs_workqueue_done, btrfs_workqueue_destroy,
1507c3a46891SQu Wenruo 
1508a31b4a43SChristoph Hellwig 	TP_PROTO(const struct btrfs_workqueue *wq),
1509c3a46891SQu Wenruo 
1510c3a46891SQu Wenruo 	TP_ARGS(wq)
1511c3a46891SQu Wenruo );
151252483bc2SQu Wenruo 
151381fb6f77SQu Wenruo #define BTRFS_QGROUP_OPERATIONS				\
151481fb6f77SQu Wenruo 	{ QGROUP_RESERVE,	"reserve"	},	\
151581fb6f77SQu Wenruo 	{ QGROUP_RELEASE,	"release"	},	\
151681fb6f77SQu Wenruo 	{ QGROUP_FREE,		"free"		}
151781fb6f77SQu Wenruo 
151881fb6f77SQu Wenruo DECLARE_EVENT_CLASS(btrfs__qgroup_rsv_data,
151981fb6f77SQu Wenruo 
15209a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode, u64 start, u64 len,
15219a35b637SJeff Mahoney 		 u64 reserved, int op),
152281fb6f77SQu Wenruo 
152381fb6f77SQu Wenruo 	TP_ARGS(inode, start, len, reserved, op),
152481fb6f77SQu Wenruo 
1525bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
152681fb6f77SQu Wenruo 		__field(	u64,		rootid		)
1527f8f8e189SDavid Sterba 		__field(	u64,		ino		)
152881fb6f77SQu Wenruo 		__field(	u64,		start		)
152981fb6f77SQu Wenruo 		__field(	u64,		len		)
153081fb6f77SQu Wenruo 		__field(	u64,		reserved	)
153181fb6f77SQu Wenruo 		__field(	int,		op		)
153281fb6f77SQu Wenruo 	),
153381fb6f77SQu Wenruo 
1534bc074524SJeff Mahoney 	TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
15354fd786e6SMisono Tomohiro 		__entry->rootid		=
15364fd786e6SMisono Tomohiro 			BTRFS_I(inode)->root->root_key.objectid;
1537f8f8e189SDavid Sterba 		__entry->ino		= btrfs_ino(BTRFS_I(inode));
153881fb6f77SQu Wenruo 		__entry->start		= start;
153981fb6f77SQu Wenruo 		__entry->len		= len;
154081fb6f77SQu Wenruo 		__entry->reserved	= reserved;
154181fb6f77SQu Wenruo 		__entry->op		= op;
154281fb6f77SQu Wenruo 	),
154381fb6f77SQu Wenruo 
1544f8f8e189SDavid Sterba 	TP_printk_btrfs("root=%llu ino=%llu start=%llu len=%llu reserved=%llu op=%s",
154581fb6f77SQu Wenruo 		  __entry->rootid, __entry->ino, __entry->start, __entry->len,
154681fb6f77SQu Wenruo 		  __entry->reserved,
154781fb6f77SQu Wenruo 		  __print_flags((unsigned long)__entry->op, "",
154881fb6f77SQu Wenruo 				BTRFS_QGROUP_OPERATIONS)
154981fb6f77SQu Wenruo 	)
155081fb6f77SQu Wenruo );
155181fb6f77SQu Wenruo 
155281fb6f77SQu Wenruo DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_reserve_data,
155381fb6f77SQu Wenruo 
15549a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode, u64 start, u64 len,
15559a35b637SJeff Mahoney 		 u64 reserved, int op),
155681fb6f77SQu Wenruo 
155781fb6f77SQu Wenruo 	TP_ARGS(inode, start, len, reserved, op)
155881fb6f77SQu Wenruo );
155981fb6f77SQu Wenruo 
156081fb6f77SQu Wenruo DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_release_data,
156181fb6f77SQu Wenruo 
15629a35b637SJeff Mahoney 	TP_PROTO(const struct inode *inode, u64 start, u64 len,
15639a35b637SJeff Mahoney 		 u64 reserved, int op),
156481fb6f77SQu Wenruo 
156581fb6f77SQu Wenruo 	TP_ARGS(inode, start, len, reserved, op)
156681fb6f77SQu Wenruo );
156781fb6f77SQu Wenruo 
15680f5dcf8dSMark Fasheh DECLARE_EVENT_CLASS(btrfs_qgroup_extent,
15699a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
15709a35b637SJeff Mahoney 		 const struct btrfs_qgroup_extent_record *rec),
15710f5dcf8dSMark Fasheh 
1572bc074524SJeff Mahoney 	TP_ARGS(fs_info, rec),
15730f5dcf8dSMark Fasheh 
1574bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
15750f5dcf8dSMark Fasheh 		__field(	u64,  bytenr		)
15760f5dcf8dSMark Fasheh 		__field(	u64,  num_bytes		)
15770f5dcf8dSMark Fasheh 	),
15780f5dcf8dSMark Fasheh 
1579bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
15800f5dcf8dSMark Fasheh 		__entry->bytenr		= rec->bytenr,
15810f5dcf8dSMark Fasheh 		__entry->num_bytes	= rec->num_bytes;
15820f5dcf8dSMark Fasheh 	),
15830f5dcf8dSMark Fasheh 
1584562a7a07SDavid Sterba 	TP_printk_btrfs("bytenr=%llu num_bytes=%llu",
158594c3f6c6SDavid Sterba 		  __entry->bytenr, __entry->num_bytes)
15860f5dcf8dSMark Fasheh );
15870f5dcf8dSMark Fasheh 
15880f5dcf8dSMark Fasheh DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_account_extents,
15890f5dcf8dSMark Fasheh 
15909a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
15919a35b637SJeff Mahoney 		 const struct btrfs_qgroup_extent_record *rec),
15920f5dcf8dSMark Fasheh 
1593bc074524SJeff Mahoney 	TP_ARGS(fs_info, rec)
15940f5dcf8dSMark Fasheh );
15950f5dcf8dSMark Fasheh 
159650b3e040SQu Wenruo DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_trace_extent,
15970f5dcf8dSMark Fasheh 
15989a35b637SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
15999a35b637SJeff Mahoney 		 const struct btrfs_qgroup_extent_record *rec),
16000f5dcf8dSMark Fasheh 
1601bc074524SJeff Mahoney 	TP_ARGS(fs_info, rec)
16020f5dcf8dSMark Fasheh );
16030f5dcf8dSMark Fasheh 
1604c337e7b0SQu Wenruo TRACE_EVENT(qgroup_num_dirty_extents,
1605c337e7b0SQu Wenruo 
1606c337e7b0SQu Wenruo 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 transid,
1607c337e7b0SQu Wenruo 		 u64 num_dirty_extents),
1608c337e7b0SQu Wenruo 
1609c337e7b0SQu Wenruo 	TP_ARGS(fs_info, transid, num_dirty_extents),
1610c337e7b0SQu Wenruo 
1611c337e7b0SQu Wenruo 	TP_STRUCT__entry_btrfs(
1612c337e7b0SQu Wenruo 		__field(	u64, transid			)
1613c337e7b0SQu Wenruo 		__field(	u64, num_dirty_extents		)
1614c337e7b0SQu Wenruo 	),
1615c337e7b0SQu Wenruo 
1616c337e7b0SQu Wenruo 	TP_fast_assign_btrfs(fs_info,
1617c337e7b0SQu Wenruo 		__entry->transid	   = transid;
1618c337e7b0SQu Wenruo 		__entry->num_dirty_extents = num_dirty_extents;
1619c337e7b0SQu Wenruo 	),
1620c337e7b0SQu Wenruo 
1621c337e7b0SQu Wenruo 	TP_printk_btrfs("transid=%llu num_dirty_extents=%llu",
1622c337e7b0SQu Wenruo 		__entry->transid, __entry->num_dirty_extents)
1623c337e7b0SQu Wenruo );
1624c337e7b0SQu Wenruo 
16250f5dcf8dSMark Fasheh TRACE_EVENT(btrfs_qgroup_account_extent,
16260f5dcf8dSMark Fasheh 
1627c9f6f3cdSQu Wenruo 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 transid, u64 bytenr,
1628bc074524SJeff Mahoney 		 u64 num_bytes, u64 nr_old_roots, u64 nr_new_roots),
16290f5dcf8dSMark Fasheh 
1630c9f6f3cdSQu Wenruo 	TP_ARGS(fs_info, transid, bytenr, num_bytes, nr_old_roots,
1631c9f6f3cdSQu Wenruo 		nr_new_roots),
16320f5dcf8dSMark Fasheh 
1633bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
1634c9f6f3cdSQu Wenruo 		__field(	u64,  transid			)
16350f5dcf8dSMark Fasheh 		__field(	u64,  bytenr			)
16360f5dcf8dSMark Fasheh 		__field(	u64,  num_bytes			)
16370f5dcf8dSMark Fasheh 		__field(	u64,  nr_old_roots		)
16380f5dcf8dSMark Fasheh 		__field(	u64,  nr_new_roots		)
16390f5dcf8dSMark Fasheh 	),
16400f5dcf8dSMark Fasheh 
1641bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
1642c9f6f3cdSQu Wenruo 		__entry->transid	= transid;
16430f5dcf8dSMark Fasheh 		__entry->bytenr		= bytenr;
16440f5dcf8dSMark Fasheh 		__entry->num_bytes	= num_bytes;
16450f5dcf8dSMark Fasheh 		__entry->nr_old_roots	= nr_old_roots;
16460f5dcf8dSMark Fasheh 		__entry->nr_new_roots	= nr_new_roots;
16470f5dcf8dSMark Fasheh 	),
16480f5dcf8dSMark Fasheh 
1649c9f6f3cdSQu Wenruo 	TP_printk_btrfs(
1650c9f6f3cdSQu Wenruo "transid=%llu bytenr=%llu num_bytes=%llu nr_old_roots=%llu nr_new_roots=%llu",
1651c9f6f3cdSQu Wenruo 		__entry->transid,
16520f5dcf8dSMark Fasheh 		__entry->bytenr,
16530f5dcf8dSMark Fasheh 		__entry->num_bytes,
16540f5dcf8dSMark Fasheh 		__entry->nr_old_roots,
16550f5dcf8dSMark Fasheh 		__entry->nr_new_roots)
16560f5dcf8dSMark Fasheh );
16570f5dcf8dSMark Fasheh 
16580f5dcf8dSMark Fasheh TRACE_EVENT(qgroup_update_counters,
16590f5dcf8dSMark Fasheh 
16608b317901SQu Wenruo 	TP_PROTO(const struct btrfs_fs_info *fs_info,
16611d2e7c7cSDavid Sterba 		 const struct btrfs_qgroup *qgroup,
1662bc074524SJeff Mahoney 		 u64 cur_old_count, u64 cur_new_count),
16630f5dcf8dSMark Fasheh 
16648b317901SQu Wenruo 	TP_ARGS(fs_info, qgroup, cur_old_count, cur_new_count),
16650f5dcf8dSMark Fasheh 
1666bc074524SJeff Mahoney 	TP_STRUCT__entry_btrfs(
16670f5dcf8dSMark Fasheh 		__field(	u64,  qgid			)
16688b317901SQu Wenruo 		__field(	u64,  old_rfer			)
16698b317901SQu Wenruo 		__field(	u64,  old_excl			)
16700f5dcf8dSMark Fasheh 		__field(	u64,  cur_old_count		)
16710f5dcf8dSMark Fasheh 		__field(	u64,  cur_new_count		)
16720f5dcf8dSMark Fasheh 	),
16730f5dcf8dSMark Fasheh 
1674bc074524SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
16758b317901SQu Wenruo 		__entry->qgid		= qgroup->qgroupid;
16768b317901SQu Wenruo 		__entry->old_rfer	= qgroup->rfer;
16778b317901SQu Wenruo 		__entry->old_excl	= qgroup->excl;
16780f5dcf8dSMark Fasheh 		__entry->cur_old_count	= cur_old_count;
16790f5dcf8dSMark Fasheh 		__entry->cur_new_count	= cur_new_count;
16800f5dcf8dSMark Fasheh 	),
16810f5dcf8dSMark Fasheh 
16828b317901SQu Wenruo 	TP_printk_btrfs("qgid=%llu old_rfer=%llu old_excl=%llu cur_old_count=%llu cur_new_count=%llu",
16838b317901SQu Wenruo 		  __entry->qgid, __entry->old_rfer, __entry->old_excl,
16848b317901SQu Wenruo 		  __entry->cur_old_count, __entry->cur_new_count)
16850f5dcf8dSMark Fasheh );
16860f5dcf8dSMark Fasheh 
16873159fe7bSQu Wenruo TRACE_EVENT(qgroup_update_reserve,
16883159fe7bSQu Wenruo 
16893159fe7bSQu Wenruo 	TP_PROTO(struct btrfs_fs_info *fs_info, struct btrfs_qgroup *qgroup,
169064ee4e75SQu Wenruo 		 s64 diff, int type),
16913159fe7bSQu Wenruo 
169264ee4e75SQu Wenruo 	TP_ARGS(fs_info, qgroup, diff, type),
16933159fe7bSQu Wenruo 
16943159fe7bSQu Wenruo 	TP_STRUCT__entry_btrfs(
16953159fe7bSQu Wenruo 		__field(	u64,	qgid			)
16963159fe7bSQu Wenruo 		__field(	u64,	cur_reserved		)
16973159fe7bSQu Wenruo 		__field(	s64,	diff			)
169864ee4e75SQu Wenruo 		__field(	int,	type			)
16993159fe7bSQu Wenruo 	),
17003159fe7bSQu Wenruo 
17013159fe7bSQu Wenruo 	TP_fast_assign_btrfs(fs_info,
17023159fe7bSQu Wenruo 		__entry->qgid		= qgroup->qgroupid;
170364ee4e75SQu Wenruo 		__entry->cur_reserved	= qgroup->rsv.values[type];
17043159fe7bSQu Wenruo 		__entry->diff		= diff;
17051b2442b4SQu Wenruo 		__entry->type		= type;
17063159fe7bSQu Wenruo 	),
17073159fe7bSQu Wenruo 
170864ee4e75SQu Wenruo 	TP_printk_btrfs("qgid=%llu type=%s cur_reserved=%llu diff=%lld",
17091cb1f0b2SNikolay Borisov 		__entry->qgid, __print_symbolic(__entry->type, QGROUP_RSV_TYPES),
171064ee4e75SQu Wenruo 		__entry->cur_reserved, __entry->diff)
17113159fe7bSQu Wenruo );
17123159fe7bSQu Wenruo 
17133159fe7bSQu Wenruo TRACE_EVENT(qgroup_meta_reserve,
17143159fe7bSQu Wenruo 
17154ee0d883SQu Wenruo 	TP_PROTO(struct btrfs_root *root, s64 diff, int type),
17163159fe7bSQu Wenruo 
17174ee0d883SQu Wenruo 	TP_ARGS(root, diff, type),
17183159fe7bSQu Wenruo 
17193159fe7bSQu Wenruo 	TP_STRUCT__entry_btrfs(
17203159fe7bSQu Wenruo 		__field(	u64,	refroot			)
17213159fe7bSQu Wenruo 		__field(	s64,	diff			)
17224ee0d883SQu Wenruo 		__field(	int,	type			)
17233159fe7bSQu Wenruo 	),
17243159fe7bSQu Wenruo 
17253159fe7bSQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
17264fd786e6SMisono Tomohiro 		__entry->refroot	= root->root_key.objectid;
17273159fe7bSQu Wenruo 		__entry->diff		= diff;
17281b2442b4SQu Wenruo 		__entry->type		= type;
17293159fe7bSQu Wenruo 	),
17303159fe7bSQu Wenruo 
17314ee0d883SQu Wenruo 	TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
17324ee0d883SQu Wenruo 		show_root_type(__entry->refroot),
17331cb1f0b2SNikolay Borisov 		__print_symbolic(__entry->type, QGROUP_RSV_TYPES), __entry->diff)
17344ee0d883SQu Wenruo );
17354ee0d883SQu Wenruo 
17364ee0d883SQu Wenruo TRACE_EVENT(qgroup_meta_convert,
17374ee0d883SQu Wenruo 
17384ee0d883SQu Wenruo 	TP_PROTO(struct btrfs_root *root, s64 diff),
17394ee0d883SQu Wenruo 
17404ee0d883SQu Wenruo 	TP_ARGS(root, diff),
17414ee0d883SQu Wenruo 
17424ee0d883SQu Wenruo 	TP_STRUCT__entry_btrfs(
17434ee0d883SQu Wenruo 		__field(	u64,	refroot			)
17444ee0d883SQu Wenruo 		__field(	s64,	diff			)
17454ee0d883SQu Wenruo 	),
17464ee0d883SQu Wenruo 
17474ee0d883SQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
17484fd786e6SMisono Tomohiro 		__entry->refroot	= root->root_key.objectid;
17494ee0d883SQu Wenruo 		__entry->diff		= diff;
17504ee0d883SQu Wenruo 	),
17514ee0d883SQu Wenruo 
17524ee0d883SQu Wenruo 	TP_printk_btrfs("refroot=%llu(%s) type=%s->%s diff=%lld",
17534ee0d883SQu Wenruo 		show_root_type(__entry->refroot),
17541cb1f0b2SNikolay Borisov 		__print_symbolic(BTRFS_QGROUP_RSV_META_PREALLOC, QGROUP_RSV_TYPES),
17551cb1f0b2SNikolay Borisov 		__print_symbolic(BTRFS_QGROUP_RSV_META_PERTRANS, QGROUP_RSV_TYPES),
17564ee0d883SQu Wenruo 		__entry->diff)
17574ee0d883SQu Wenruo );
17584ee0d883SQu Wenruo 
17594ee0d883SQu Wenruo TRACE_EVENT(qgroup_meta_free_all_pertrans,
17604ee0d883SQu Wenruo 
17614ee0d883SQu Wenruo 	TP_PROTO(struct btrfs_root *root),
17624ee0d883SQu Wenruo 
17634ee0d883SQu Wenruo 	TP_ARGS(root),
17644ee0d883SQu Wenruo 
17654ee0d883SQu Wenruo 	TP_STRUCT__entry_btrfs(
17664ee0d883SQu Wenruo 		__field(	u64,	refroot			)
17674ee0d883SQu Wenruo 		__field(	s64,	diff			)
17684ee0d883SQu Wenruo 		__field(	int,	type			)
17694ee0d883SQu Wenruo 	),
17704ee0d883SQu Wenruo 
17714ee0d883SQu Wenruo 	TP_fast_assign_btrfs(root->fs_info,
17724fd786e6SMisono Tomohiro 		__entry->refroot	= root->root_key.objectid;
17734ee0d883SQu Wenruo 		spin_lock(&root->qgroup_meta_rsv_lock);
17744ee0d883SQu Wenruo 		__entry->diff		= -(s64)root->qgroup_meta_rsv_pertrans;
17754ee0d883SQu Wenruo 		spin_unlock(&root->qgroup_meta_rsv_lock);
17764ee0d883SQu Wenruo 		__entry->type		= BTRFS_QGROUP_RSV_META_PERTRANS;
17774ee0d883SQu Wenruo 	),
17784ee0d883SQu Wenruo 
17794ee0d883SQu Wenruo 	TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
17804ee0d883SQu Wenruo 		show_root_type(__entry->refroot),
17811cb1f0b2SNikolay Borisov 		__print_symbolic(__entry->type, QGROUP_RSV_TYPES), __entry->diff)
17823159fe7bSQu Wenruo );
17833159fe7bSQu Wenruo 
178400142756SJeff Mahoney DECLARE_EVENT_CLASS(btrfs__prelim_ref,
178500142756SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
178600142756SJeff Mahoney 		 const struct prelim_ref *oldref,
178700142756SJeff Mahoney 		 const struct prelim_ref *newref, u64 tree_size),
178800142756SJeff Mahoney 	TP_ARGS(fs_info, newref, oldref, tree_size),
178900142756SJeff Mahoney 
179000142756SJeff Mahoney 	TP_STRUCT__entry_btrfs(
179100142756SJeff Mahoney 		__field(	u64,  root_id		)
179200142756SJeff Mahoney 		__field(	u64,  objectid		)
179300142756SJeff Mahoney 		__field(	 u8,  type		)
179400142756SJeff Mahoney 		__field(	u64,  offset		)
179500142756SJeff Mahoney 		__field(	int,  level		)
179600142756SJeff Mahoney 		__field(	int,  old_count		)
179700142756SJeff Mahoney 		__field(	u64,  parent		)
179800142756SJeff Mahoney 		__field(	u64,  bytenr		)
179900142756SJeff Mahoney 		__field(	int,  mod_count		)
180000142756SJeff Mahoney 		__field(	u64,  tree_size		)
180100142756SJeff Mahoney 	),
180200142756SJeff Mahoney 
180300142756SJeff Mahoney 	TP_fast_assign_btrfs(fs_info,
180400142756SJeff Mahoney 		__entry->root_id	= oldref->root_id;
180500142756SJeff Mahoney 		__entry->objectid	= oldref->key_for_search.objectid;
180600142756SJeff Mahoney 		__entry->type		= oldref->key_for_search.type;
180700142756SJeff Mahoney 		__entry->offset		= oldref->key_for_search.offset;
180800142756SJeff Mahoney 		__entry->level		= oldref->level;
180900142756SJeff Mahoney 		__entry->old_count	= oldref->count;
181000142756SJeff Mahoney 		__entry->parent		= oldref->parent;
181100142756SJeff Mahoney 		__entry->bytenr		= oldref->wanted_disk_byte;
181200142756SJeff Mahoney 		__entry->mod_count	= newref ? newref->count : 0;
181300142756SJeff Mahoney 		__entry->tree_size	= tree_size;
181400142756SJeff Mahoney 	),
181500142756SJeff Mahoney 
181600142756SJeff 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",
18178eec8463SDavid Sterba 			__entry->root_id,
18188eec8463SDavid Sterba 			__entry->objectid, __entry->type,
18198eec8463SDavid Sterba 			__entry->offset, __entry->level,
182000142756SJeff Mahoney 			__entry->old_count, __entry->mod_count,
182100142756SJeff Mahoney 			__entry->old_count + __entry->mod_count,
18228eec8463SDavid Sterba 			__entry->parent,
18238eec8463SDavid Sterba 			__entry->bytenr,
18248eec8463SDavid Sterba 			__entry->tree_size)
182500142756SJeff Mahoney );
182600142756SJeff Mahoney 
182700142756SJeff Mahoney DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_merge,
182800142756SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
182900142756SJeff Mahoney 		 const struct prelim_ref *oldref,
183000142756SJeff Mahoney 		 const struct prelim_ref *newref, u64 tree_size),
183100142756SJeff Mahoney 	TP_ARGS(fs_info, oldref, newref, tree_size)
183200142756SJeff Mahoney );
183300142756SJeff Mahoney 
183400142756SJeff Mahoney DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_insert,
183500142756SJeff Mahoney 	TP_PROTO(const struct btrfs_fs_info *fs_info,
183600142756SJeff Mahoney 		 const struct prelim_ref *oldref,
183700142756SJeff Mahoney 		 const struct prelim_ref *newref, u64 tree_size),
183800142756SJeff Mahoney 	TP_ARGS(fs_info, oldref, newref, tree_size)
183900142756SJeff Mahoney );
184000142756SJeff Mahoney 
1841dd48d407SJosef Bacik TRACE_EVENT(btrfs_inode_mod_outstanding_extents,
18421d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_root *root, u64 ino, int mod),
1843dd48d407SJosef Bacik 
1844dd48d407SJosef Bacik 	TP_ARGS(root, ino, mod),
1845dd48d407SJosef Bacik 
1846dd48d407SJosef Bacik 	TP_STRUCT__entry_btrfs(
1847dd48d407SJosef Bacik 		__field(	u64, root_objectid	)
1848dd48d407SJosef Bacik 		__field(	u64, ino		)
1849dd48d407SJosef Bacik 		__field(	int, mod		)
1850dd48d407SJosef Bacik 	),
1851dd48d407SJosef Bacik 
1852dd48d407SJosef Bacik 	TP_fast_assign_btrfs(root->fs_info,
18534fd786e6SMisono Tomohiro 		__entry->root_objectid	= root->root_key.objectid;
1854dd48d407SJosef Bacik 		__entry->ino		= ino;
1855dd48d407SJosef Bacik 		__entry->mod		= mod;
1856dd48d407SJosef Bacik 	),
1857dd48d407SJosef Bacik 
1858dd48d407SJosef Bacik 	TP_printk_btrfs("root=%llu(%s) ino=%llu mod=%d",
1859dd48d407SJosef Bacik 			show_root_type(__entry->root_objectid),
18608eec8463SDavid Sterba 			__entry->ino, __entry->mod)
1861dd48d407SJosef Bacik );
18623dca5c94SQu Wenruo 
18634ed0a7a3SQu Wenruo DECLARE_EVENT_CLASS(btrfs__block_group,
186432da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
18654ed0a7a3SQu Wenruo 
18664ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache),
18674ed0a7a3SQu Wenruo 
18684ed0a7a3SQu Wenruo 	TP_STRUCT__entry_btrfs(
18694ed0a7a3SQu Wenruo 		__field(	u64,	bytenr		)
18704ed0a7a3SQu Wenruo 		__field(	u64,	len		)
18714ed0a7a3SQu Wenruo 		__field(	u64,	used		)
18724ed0a7a3SQu Wenruo 		__field(	u64,	flags		)
18734ed0a7a3SQu Wenruo 	),
18744ed0a7a3SQu Wenruo 
18754ed0a7a3SQu Wenruo 	TP_fast_assign_btrfs(bg_cache->fs_info,
1876b3470b5dSDavid Sterba 		__entry->bytenr = bg_cache->start,
1877b3470b5dSDavid Sterba 		__entry->len	= bg_cache->length,
1878bf38be65SDavid Sterba 		__entry->used	= bg_cache->used;
18794ed0a7a3SQu Wenruo 		__entry->flags	= bg_cache->flags;
18804ed0a7a3SQu Wenruo 	),
18814ed0a7a3SQu Wenruo 
18824ed0a7a3SQu Wenruo 	TP_printk_btrfs("bg bytenr=%llu len=%llu used=%llu flags=%llu(%s)",
18834ed0a7a3SQu Wenruo 		__entry->bytenr, __entry->len, __entry->used, __entry->flags,
18844ed0a7a3SQu Wenruo 		__print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS))
18854ed0a7a3SQu Wenruo );
18864ed0a7a3SQu Wenruo 
18874ed0a7a3SQu Wenruo DEFINE_EVENT(btrfs__block_group, btrfs_remove_block_group,
188832da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
18894ed0a7a3SQu Wenruo 
18904ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache)
18914ed0a7a3SQu Wenruo );
18924ed0a7a3SQu Wenruo 
18934ed0a7a3SQu Wenruo DEFINE_EVENT(btrfs__block_group, btrfs_add_unused_block_group,
189432da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
18954ed0a7a3SQu Wenruo 
18964ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache)
18974ed0a7a3SQu Wenruo );
18984ed0a7a3SQu Wenruo 
189918bb8bbfSJohannes Thumshirn DEFINE_EVENT(btrfs__block_group, btrfs_add_reclaim_block_group,
190018bb8bbfSJohannes Thumshirn 	TP_PROTO(const struct btrfs_block_group *bg_cache),
190118bb8bbfSJohannes Thumshirn 
190218bb8bbfSJohannes Thumshirn 	TP_ARGS(bg_cache)
190318bb8bbfSJohannes Thumshirn );
190418bb8bbfSJohannes Thumshirn 
190518bb8bbfSJohannes Thumshirn DEFINE_EVENT(btrfs__block_group, btrfs_reclaim_block_group,
190618bb8bbfSJohannes Thumshirn 	TP_PROTO(const struct btrfs_block_group *bg_cache),
190718bb8bbfSJohannes Thumshirn 
190818bb8bbfSJohannes Thumshirn 	TP_ARGS(bg_cache)
190918bb8bbfSJohannes Thumshirn );
191018bb8bbfSJohannes Thumshirn 
19114ed0a7a3SQu Wenruo DEFINE_EVENT(btrfs__block_group, btrfs_skip_unused_block_group,
191232da5386SDavid Sterba 	TP_PROTO(const struct btrfs_block_group *bg_cache),
19134ed0a7a3SQu Wenruo 
19144ed0a7a3SQu Wenruo 	TP_ARGS(bg_cache)
19154ed0a7a3SQu Wenruo );
19164ed0a7a3SQu Wenruo 
1917a1d19847SQu Wenruo TRACE_EVENT(btrfs_set_extent_bit,
1918a1d19847SQu Wenruo 	TP_PROTO(const struct extent_io_tree *tree,
1919a1d19847SQu Wenruo 		 u64 start, u64 len, unsigned set_bits),
1920a1d19847SQu Wenruo 
1921a1d19847SQu Wenruo 	TP_ARGS(tree, start, len, set_bits),
1922a1d19847SQu Wenruo 
1923a1d19847SQu Wenruo 	TP_STRUCT__entry_btrfs(
1924a1d19847SQu Wenruo 		__field(	unsigned,	owner	)
1925a1d19847SQu Wenruo 		__field(	u64,		ino	)
1926a1d19847SQu Wenruo 		__field(	u64,		rootid	)
1927a1d19847SQu Wenruo 		__field(	u64,		start	)
1928a1d19847SQu Wenruo 		__field(	u64,		len	)
1929a1d19847SQu Wenruo 		__field(	unsigned,	set_bits)
1930a1d19847SQu Wenruo 	),
1931a1d19847SQu Wenruo 
1932a1d19847SQu Wenruo 	TP_fast_assign_btrfs(tree->fs_info,
1933a1d19847SQu Wenruo 		__entry->owner = tree->owner;
1934a1d19847SQu Wenruo 		if (tree->private_data) {
19351d2e7c7cSDavid Sterba 			const struct inode *inode = tree->private_data;
1936a1d19847SQu Wenruo 
1937a1d19847SQu Wenruo 			__entry->ino	= btrfs_ino(BTRFS_I(inode));
1938a1d19847SQu Wenruo 			__entry->rootid	=
1939a1d19847SQu Wenruo 				BTRFS_I(inode)->root->root_key.objectid;
1940a1d19847SQu Wenruo 		} else {
1941a1d19847SQu Wenruo 			__entry->ino	= 0;
1942a1d19847SQu Wenruo 			__entry->rootid	= 0;
1943a1d19847SQu Wenruo 		}
1944a1d19847SQu Wenruo 		__entry->start		= start;
1945a1d19847SQu Wenruo 		__entry->len		= len;
1946a1d19847SQu Wenruo 		__entry->set_bits	= set_bits;
1947a1d19847SQu Wenruo 	),
1948a1d19847SQu Wenruo 
1949a1d19847SQu Wenruo 	TP_printk_btrfs(
1950a1d19847SQu Wenruo 		"io_tree=%s ino=%llu root=%llu start=%llu len=%llu set_bits=%s",
1951c92bb304SNikolay Borisov 		__print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
1952a1d19847SQu Wenruo 		__entry->rootid, __entry->start, __entry->len,
1953a1d19847SQu Wenruo 		__print_flags(__entry->set_bits, "|", EXTENT_FLAGS))
1954a1d19847SQu Wenruo );
1955a1d19847SQu Wenruo 
1956a1d19847SQu Wenruo TRACE_EVENT(btrfs_clear_extent_bit,
1957a1d19847SQu Wenruo 	TP_PROTO(const struct extent_io_tree *tree,
1958a1d19847SQu Wenruo 		 u64 start, u64 len, unsigned clear_bits),
1959a1d19847SQu Wenruo 
1960a1d19847SQu Wenruo 	TP_ARGS(tree, start, len, clear_bits),
1961a1d19847SQu Wenruo 
1962a1d19847SQu Wenruo 	TP_STRUCT__entry_btrfs(
1963a1d19847SQu Wenruo 		__field(	unsigned,	owner	)
1964a1d19847SQu Wenruo 		__field(	u64,		ino	)
1965a1d19847SQu Wenruo 		__field(	u64,		rootid	)
1966a1d19847SQu Wenruo 		__field(	u64,		start	)
1967a1d19847SQu Wenruo 		__field(	u64,		len	)
1968a1d19847SQu Wenruo 		__field(	unsigned,	clear_bits)
1969a1d19847SQu Wenruo 	),
1970a1d19847SQu Wenruo 
1971a1d19847SQu Wenruo 	TP_fast_assign_btrfs(tree->fs_info,
1972a1d19847SQu Wenruo 		__entry->owner = tree->owner;
1973a1d19847SQu Wenruo 		if (tree->private_data) {
19741d2e7c7cSDavid Sterba 			const struct inode *inode = tree->private_data;
1975a1d19847SQu Wenruo 
1976a1d19847SQu Wenruo 			__entry->ino	= btrfs_ino(BTRFS_I(inode));
1977a1d19847SQu Wenruo 			__entry->rootid	=
1978a1d19847SQu Wenruo 				BTRFS_I(inode)->root->root_key.objectid;
1979a1d19847SQu Wenruo 		} else {
1980a1d19847SQu Wenruo 			__entry->ino	= 0;
1981a1d19847SQu Wenruo 			__entry->rootid	= 0;
1982a1d19847SQu Wenruo 		}
1983a1d19847SQu Wenruo 		__entry->start		= start;
1984a1d19847SQu Wenruo 		__entry->len		= len;
1985a1d19847SQu Wenruo 		__entry->clear_bits	= clear_bits;
1986a1d19847SQu Wenruo 	),
1987a1d19847SQu Wenruo 
1988a1d19847SQu Wenruo 	TP_printk_btrfs(
1989a1d19847SQu Wenruo 		"io_tree=%s ino=%llu root=%llu start=%llu len=%llu clear_bits=%s",
1990c92bb304SNikolay Borisov 		__print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
1991a1d19847SQu Wenruo 		__entry->rootid, __entry->start, __entry->len,
1992a1d19847SQu Wenruo 		__print_flags(__entry->clear_bits, "|", EXTENT_FLAGS))
1993a1d19847SQu Wenruo );
1994a1d19847SQu Wenruo 
1995a1d19847SQu Wenruo TRACE_EVENT(btrfs_convert_extent_bit,
1996a1d19847SQu Wenruo 	TP_PROTO(const struct extent_io_tree *tree,
1997a1d19847SQu Wenruo 		 u64 start, u64 len, unsigned set_bits, unsigned clear_bits),
1998a1d19847SQu Wenruo 
1999a1d19847SQu Wenruo 	TP_ARGS(tree, start, len, set_bits, clear_bits),
2000a1d19847SQu Wenruo 
2001a1d19847SQu Wenruo 	TP_STRUCT__entry_btrfs(
2002a1d19847SQu Wenruo 		__field(	unsigned,	owner	)
2003a1d19847SQu Wenruo 		__field(	u64,		ino	)
2004a1d19847SQu Wenruo 		__field(	u64,		rootid	)
2005a1d19847SQu Wenruo 		__field(	u64,		start	)
2006a1d19847SQu Wenruo 		__field(	u64,		len	)
2007a1d19847SQu Wenruo 		__field(	unsigned,	set_bits)
2008a1d19847SQu Wenruo 		__field(	unsigned,	clear_bits)
2009a1d19847SQu Wenruo 	),
2010a1d19847SQu Wenruo 
2011a1d19847SQu Wenruo 	TP_fast_assign_btrfs(tree->fs_info,
2012a1d19847SQu Wenruo 		__entry->owner = tree->owner;
2013a1d19847SQu Wenruo 		if (tree->private_data) {
20141d2e7c7cSDavid Sterba 			const struct inode *inode = tree->private_data;
2015a1d19847SQu Wenruo 
2016a1d19847SQu Wenruo 			__entry->ino	= btrfs_ino(BTRFS_I(inode));
2017a1d19847SQu Wenruo 			__entry->rootid	=
2018a1d19847SQu Wenruo 				BTRFS_I(inode)->root->root_key.objectid;
2019a1d19847SQu Wenruo 		} else {
2020a1d19847SQu Wenruo 			__entry->ino	= 0;
2021a1d19847SQu Wenruo 			__entry->rootid	= 0;
2022a1d19847SQu Wenruo 		}
2023a1d19847SQu Wenruo 		__entry->start		= start;
2024a1d19847SQu Wenruo 		__entry->len		= len;
2025a1d19847SQu Wenruo 		__entry->set_bits	= set_bits;
2026a1d19847SQu Wenruo 		__entry->clear_bits	= clear_bits;
2027a1d19847SQu Wenruo 	),
2028a1d19847SQu Wenruo 
2029a1d19847SQu Wenruo 	TP_printk_btrfs(
2030a1d19847SQu Wenruo "io_tree=%s ino=%llu root=%llu start=%llu len=%llu set_bits=%s clear_bits=%s",
2031c92bb304SNikolay Borisov 		  __print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
2032a1d19847SQu Wenruo 		  __entry->rootid, __entry->start, __entry->len,
2033a1d19847SQu Wenruo 		  __print_flags(__entry->set_bits , "|", EXTENT_FLAGS),
2034a1d19847SQu Wenruo 		  __print_flags(__entry->clear_bits, "|", EXTENT_FLAGS))
2035a1d19847SQu Wenruo );
2036a1d19847SQu Wenruo 
2037e5ad49e2SJosef Bacik DECLARE_EVENT_CLASS(btrfs_dump_space_info,
20388197766dSJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info,
2039e5ad49e2SJosef Bacik 		 const struct btrfs_space_info *sinfo),
2040e5ad49e2SJosef Bacik 
2041e5ad49e2SJosef Bacik 	TP_ARGS(fs_info, sinfo),
2042e5ad49e2SJosef Bacik 
2043e5ad49e2SJosef Bacik 	TP_STRUCT__entry_btrfs(
2044e5ad49e2SJosef Bacik 		__field(	u64,	flags			)
2045e5ad49e2SJosef Bacik 		__field(	u64,	total_bytes		)
2046e5ad49e2SJosef Bacik 		__field(	u64,	bytes_used		)
2047e5ad49e2SJosef Bacik 		__field(	u64,	bytes_pinned		)
2048e5ad49e2SJosef Bacik 		__field(	u64,	bytes_reserved		)
2049e5ad49e2SJosef Bacik 		__field(	u64,	bytes_may_use		)
2050e5ad49e2SJosef Bacik 		__field(	u64,	bytes_readonly		)
2051e5ad49e2SJosef Bacik 		__field(	u64,	reclaim_size		)
2052e5ad49e2SJosef Bacik 		__field(	int,	clamp			)
2053e5ad49e2SJosef Bacik 		__field(	u64,	global_reserved		)
2054e5ad49e2SJosef Bacik 		__field(	u64,	trans_reserved		)
2055e5ad49e2SJosef Bacik 		__field(	u64,	delayed_refs_reserved	)
2056e5ad49e2SJosef Bacik 		__field(	u64,	delayed_reserved	)
2057e5ad49e2SJosef Bacik 		__field(	u64,	free_chunk_space	)
20588197766dSJosef Bacik 		__field(	u64,	delalloc_bytes		)
20598197766dSJosef Bacik 		__field(	u64,	ordered_bytes		)
2060e5ad49e2SJosef Bacik 	),
2061e5ad49e2SJosef Bacik 
2062e5ad49e2SJosef Bacik 	TP_fast_assign_btrfs(fs_info,
2063e5ad49e2SJosef Bacik 		__entry->flags			=	sinfo->flags;
2064e5ad49e2SJosef Bacik 		__entry->total_bytes		=	sinfo->total_bytes;
2065e5ad49e2SJosef Bacik 		__entry->bytes_used		=	sinfo->bytes_used;
2066e5ad49e2SJosef Bacik 		__entry->bytes_pinned		=	sinfo->bytes_pinned;
2067e5ad49e2SJosef Bacik 		__entry->bytes_reserved		=	sinfo->bytes_reserved;
2068e5ad49e2SJosef Bacik 		__entry->bytes_may_use		=	sinfo->bytes_may_use;
2069e5ad49e2SJosef Bacik 		__entry->bytes_readonly		=	sinfo->bytes_readonly;
2070e5ad49e2SJosef Bacik 		__entry->reclaim_size		=	sinfo->reclaim_size;
2071e5ad49e2SJosef Bacik 		__entry->clamp			=	sinfo->clamp;
2072e5ad49e2SJosef Bacik 		__entry->global_reserved	=	fs_info->global_block_rsv.reserved;
2073e5ad49e2SJosef Bacik 		__entry->trans_reserved		=	fs_info->trans_block_rsv.reserved;
2074e5ad49e2SJosef Bacik 		__entry->delayed_refs_reserved	=	fs_info->delayed_refs_rsv.reserved;
2075e5ad49e2SJosef Bacik 		__entry->delayed_reserved	=	fs_info->delayed_block_rsv.reserved;
2076e5ad49e2SJosef Bacik 		__entry->free_chunk_space	=	atomic64_read(&fs_info->free_chunk_space);
20778197766dSJosef Bacik 		__entry->delalloc_bytes		=	percpu_counter_sum_positive(&fs_info->delalloc_bytes);
20788197766dSJosef Bacik 		__entry->ordered_bytes		=	percpu_counter_sum_positive(&fs_info->ordered_bytes);
2079e5ad49e2SJosef Bacik 	),
2080e5ad49e2SJosef Bacik 
2081e5ad49e2SJosef Bacik 	TP_printk_btrfs("flags=%s total_bytes=%llu bytes_used=%llu "
2082e5ad49e2SJosef Bacik 			"bytes_pinned=%llu bytes_reserved=%llu "
2083e5ad49e2SJosef Bacik 			"bytes_may_use=%llu bytes_readonly=%llu "
2084e5ad49e2SJosef Bacik 			"reclaim_size=%llu clamp=%d global_reserved=%llu "
2085e5ad49e2SJosef Bacik 			"trans_reserved=%llu delayed_refs_reserved=%llu "
20868197766dSJosef Bacik 			"delayed_reserved=%llu chunk_free_space=%llu "
20878197766dSJosef Bacik 			"delalloc_bytes=%llu ordered_bytes=%llu",
2088e5ad49e2SJosef Bacik 			__print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS),
2089e5ad49e2SJosef Bacik 			__entry->total_bytes, __entry->bytes_used,
2090e5ad49e2SJosef Bacik 			__entry->bytes_pinned, __entry->bytes_reserved,
2091e5ad49e2SJosef Bacik 			__entry->bytes_may_use, __entry->bytes_readonly,
2092e5ad49e2SJosef Bacik 			__entry->reclaim_size, __entry->clamp,
2093e5ad49e2SJosef Bacik 			__entry->global_reserved, __entry->trans_reserved,
2094e5ad49e2SJosef Bacik 			__entry->delayed_refs_reserved,
20958197766dSJosef Bacik 			__entry->delayed_reserved, __entry->free_chunk_space,
20968197766dSJosef Bacik 			__entry->delalloc_bytes, __entry->ordered_bytes)
2097e5ad49e2SJosef Bacik );
2098e5ad49e2SJosef Bacik 
2099e5ad49e2SJosef Bacik DEFINE_EVENT(btrfs_dump_space_info, btrfs_done_preemptive_reclaim,
21008197766dSJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info,
2101e5ad49e2SJosef Bacik 		 const struct btrfs_space_info *sinfo),
2102e5ad49e2SJosef Bacik 	TP_ARGS(fs_info, sinfo)
2103e5ad49e2SJosef Bacik );
2104e5ad49e2SJosef Bacik 
2105fcdef39cSJosef Bacik DEFINE_EVENT(btrfs_dump_space_info, btrfs_fail_all_tickets,
2106fcdef39cSJosef Bacik 	TP_PROTO(struct btrfs_fs_info *fs_info,
2107fcdef39cSJosef Bacik 		 const struct btrfs_space_info *sinfo),
2108fcdef39cSJosef Bacik 	TP_ARGS(fs_info, sinfo)
2109fcdef39cSJosef Bacik );
2110fcdef39cSJosef Bacik 
2111ac1ea10eSJosef Bacik TRACE_EVENT(btrfs_reserve_ticket,
2112ac1ea10eSJosef Bacik 	TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 bytes,
2113ac1ea10eSJosef Bacik 		 u64 start_ns, int flush, int error),
2114ac1ea10eSJosef Bacik 
2115ac1ea10eSJosef Bacik 	TP_ARGS(fs_info, flags, bytes, start_ns, flush, error),
2116ac1ea10eSJosef Bacik 
2117ac1ea10eSJosef Bacik 	TP_STRUCT__entry_btrfs(
2118ac1ea10eSJosef Bacik 		__field(	u64,	flags		)
2119ac1ea10eSJosef Bacik 		__field(	u64,	bytes		)
2120ac1ea10eSJosef Bacik 		__field(	u64,	start_ns	)
2121ac1ea10eSJosef Bacik 		__field(	int,	flush		)
2122ac1ea10eSJosef Bacik 		__field(	int,	error		)
2123ac1ea10eSJosef Bacik 	),
2124ac1ea10eSJosef Bacik 
2125ac1ea10eSJosef Bacik 	TP_fast_assign_btrfs(fs_info,
2126ac1ea10eSJosef Bacik 		__entry->flags		= flags;
2127ac1ea10eSJosef Bacik 		__entry->bytes		= bytes;
2128ac1ea10eSJosef Bacik 		__entry->start_ns	= start_ns;
2129ac1ea10eSJosef Bacik 		__entry->flush		= flush;
2130ac1ea10eSJosef Bacik 		__entry->error		= error;
2131ac1ea10eSJosef Bacik 	),
2132ac1ea10eSJosef Bacik 
2133ac1ea10eSJosef Bacik 	TP_printk_btrfs("flags=%s bytes=%llu start_ns=%llu flush=%s error=%d",
2134ac1ea10eSJosef Bacik 			__print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS),
2135ac1ea10eSJosef Bacik 			__entry->bytes, __entry->start_ns,
2136ac1ea10eSJosef Bacik 			__print_symbolic(__entry->flush, FLUSH_ACTIONS),
2137ac1ea10eSJosef Bacik 			__entry->error)
2138ac1ea10eSJosef Bacik );
2139ac1ea10eSJosef Bacik 
214034e73cc9SQu Wenruo DECLARE_EVENT_CLASS(btrfs_sleep_tree_lock,
214134e73cc9SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
214234e73cc9SQu Wenruo 
214334e73cc9SQu Wenruo 	TP_ARGS(eb, start_ns),
214434e73cc9SQu Wenruo 
214534e73cc9SQu Wenruo 	TP_STRUCT__entry_btrfs(
214634e73cc9SQu Wenruo 		__field(	u64,	block		)
214734e73cc9SQu Wenruo 		__field(	u64,	generation	)
214834e73cc9SQu Wenruo 		__field(	u64,	start_ns	)
214934e73cc9SQu Wenruo 		__field(	u64,	end_ns		)
215034e73cc9SQu Wenruo 		__field(	u64,	diff_ns		)
215134e73cc9SQu Wenruo 		__field(	u64,	owner		)
215234e73cc9SQu Wenruo 		__field(	int,	is_log_tree	)
215334e73cc9SQu Wenruo 	),
215434e73cc9SQu Wenruo 
215534e73cc9SQu Wenruo 	TP_fast_assign_btrfs(eb->fs_info,
215634e73cc9SQu Wenruo 		__entry->block		= eb->start;
215734e73cc9SQu Wenruo 		__entry->generation	= btrfs_header_generation(eb);
215834e73cc9SQu Wenruo 		__entry->start_ns	= start_ns;
215934e73cc9SQu Wenruo 		__entry->end_ns		= ktime_get_ns();
216034e73cc9SQu Wenruo 		__entry->diff_ns	= __entry->end_ns - start_ns;
216134e73cc9SQu Wenruo 		__entry->owner		= btrfs_header_owner(eb);
216234e73cc9SQu Wenruo 		__entry->is_log_tree	= (eb->log_index >= 0);
216334e73cc9SQu Wenruo 	),
216434e73cc9SQu Wenruo 
216534e73cc9SQu Wenruo 	TP_printk_btrfs(
216634e73cc9SQu Wenruo "block=%llu generation=%llu start_ns=%llu end_ns=%llu diff_ns=%llu owner=%llu is_log_tree=%d",
216734e73cc9SQu Wenruo 		__entry->block, __entry->generation,
216834e73cc9SQu Wenruo 		__entry->start_ns, __entry->end_ns, __entry->diff_ns,
216934e73cc9SQu Wenruo 		__entry->owner, __entry->is_log_tree)
217034e73cc9SQu Wenruo );
217134e73cc9SQu Wenruo 
217234e73cc9SQu Wenruo DEFINE_EVENT(btrfs_sleep_tree_lock, btrfs_tree_read_lock,
217334e73cc9SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
217434e73cc9SQu Wenruo 
217534e73cc9SQu Wenruo 	TP_ARGS(eb, start_ns)
217634e73cc9SQu Wenruo );
217734e73cc9SQu Wenruo 
217834e73cc9SQu Wenruo DEFINE_EVENT(btrfs_sleep_tree_lock, btrfs_tree_lock,
217934e73cc9SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
218034e73cc9SQu Wenruo 
218134e73cc9SQu Wenruo 	TP_ARGS(eb, start_ns)
218234e73cc9SQu Wenruo );
218334e73cc9SQu Wenruo 
218431aab402SQu Wenruo DECLARE_EVENT_CLASS(btrfs_locking_events,
218531aab402SQu Wenruo 	TP_PROTO(const struct extent_buffer *eb),
218631aab402SQu Wenruo 
218731aab402SQu Wenruo 	TP_ARGS(eb),
218831aab402SQu Wenruo 
218931aab402SQu Wenruo 	TP_STRUCT__entry_btrfs(
219031aab402SQu Wenruo 		__field(	u64,	block		)
219131aab402SQu Wenruo 		__field(	u64,	generation	)
219231aab402SQu Wenruo 		__field(	u64,	owner		)
219331aab402SQu Wenruo 		__field(	int,	is_log_tree	)
219431aab402SQu Wenruo 	),
219531aab402SQu Wenruo 
219631aab402SQu Wenruo 	TP_fast_assign_btrfs(eb->fs_info,
219731aab402SQu Wenruo 		__entry->block		= eb->start;
219831aab402SQu Wenruo 		__entry->generation	= btrfs_header_generation(eb);
219931aab402SQu Wenruo 		__entry->owner		= btrfs_header_owner(eb);
220031aab402SQu Wenruo 		__entry->is_log_tree	= (eb->log_index >= 0);
220131aab402SQu Wenruo 	),
220231aab402SQu Wenruo 
220331aab402SQu Wenruo 	TP_printk_btrfs("block=%llu generation=%llu owner=%llu is_log_tree=%d",
220431aab402SQu Wenruo 		__entry->block, __entry->generation,
220531aab402SQu Wenruo 		__entry->owner, __entry->is_log_tree)
220631aab402SQu Wenruo );
220731aab402SQu Wenruo 
220831aab402SQu Wenruo #define DEFINE_BTRFS_LOCK_EVENT(name)				\
220931aab402SQu Wenruo DEFINE_EVENT(btrfs_locking_events, name,			\
221031aab402SQu Wenruo 		TP_PROTO(const struct extent_buffer *eb),	\
221131aab402SQu Wenruo 								\
221231aab402SQu Wenruo 		TP_ARGS(eb)					\
221331aab402SQu Wenruo )
221431aab402SQu Wenruo 
221531aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_unlock);
221631aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_unlock);
221731aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_unlock_blocking);
221831aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_set_lock_blocking_read);
221931aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_set_lock_blocking_write);
222031aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_try_tree_read_lock);
222131aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_try_tree_write_lock);
222231aab402SQu Wenruo DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_lock_atomic);
222331aab402SQu Wenruo 
2224480b9b4dSQu Wenruo DECLARE_EVENT_CLASS(btrfs__space_info_update,
2225480b9b4dSQu Wenruo 
22261d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
22271d2e7c7cSDavid Sterba 		 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
2228480b9b4dSQu Wenruo 
2229480b9b4dSQu Wenruo 	TP_ARGS(fs_info, sinfo, old, diff),
2230480b9b4dSQu Wenruo 
2231480b9b4dSQu Wenruo 	TP_STRUCT__entry_btrfs(
2232480b9b4dSQu Wenruo 		__field(	u64,	type		)
2233480b9b4dSQu Wenruo 		__field(	u64,	old		)
2234480b9b4dSQu Wenruo 		__field(	s64,	diff		)
2235480b9b4dSQu Wenruo 	),
2236480b9b4dSQu Wenruo 
2237480b9b4dSQu Wenruo 	TP_fast_assign_btrfs(fs_info,
2238480b9b4dSQu Wenruo 		__entry->type	= sinfo->flags;
2239480b9b4dSQu Wenruo 		__entry->old	= old;
2240480b9b4dSQu Wenruo 		__entry->diff	= diff;
2241480b9b4dSQu Wenruo 	),
2242480b9b4dSQu Wenruo 	TP_printk_btrfs("type=%s old=%llu diff=%lld",
2243480b9b4dSQu Wenruo 		__print_flags(__entry->type, "|", BTRFS_GROUP_FLAGS),
2244480b9b4dSQu Wenruo 		__entry->old, __entry->diff)
2245480b9b4dSQu Wenruo );
2246480b9b4dSQu Wenruo 
2247480b9b4dSQu Wenruo DEFINE_EVENT(btrfs__space_info_update, update_bytes_may_use,
2248480b9b4dSQu Wenruo 
22491d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
22501d2e7c7cSDavid Sterba 		 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
2251480b9b4dSQu Wenruo 
2252480b9b4dSQu Wenruo 	TP_ARGS(fs_info, sinfo, old, diff)
2253480b9b4dSQu Wenruo );
2254480b9b4dSQu Wenruo 
2255480b9b4dSQu Wenruo DEFINE_EVENT(btrfs__space_info_update, update_bytes_pinned,
2256480b9b4dSQu Wenruo 
22571d2e7c7cSDavid Sterba 	TP_PROTO(const struct btrfs_fs_info *fs_info,
22581d2e7c7cSDavid Sterba 		 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
2259480b9b4dSQu Wenruo 
2260480b9b4dSQu Wenruo 	TP_ARGS(fs_info, sinfo, old, diff)
2261480b9b4dSQu Wenruo );
2262480b9b4dSQu Wenruo 
2263*b8bea09aSQu Wenruo DECLARE_EVENT_CLASS(btrfs_raid56_bio,
2264*b8bea09aSQu Wenruo 
2265*b8bea09aSQu Wenruo 	TP_PROTO(const struct btrfs_raid_bio *rbio,
2266*b8bea09aSQu Wenruo 		 const struct bio *bio,
2267*b8bea09aSQu Wenruo 		 const struct raid56_bio_trace_info *trace_info),
2268*b8bea09aSQu Wenruo 
2269*b8bea09aSQu Wenruo 	TP_ARGS(rbio, bio, trace_info),
2270*b8bea09aSQu Wenruo 
2271*b8bea09aSQu Wenruo 	TP_STRUCT__entry_btrfs(
2272*b8bea09aSQu Wenruo 		__field(	u64,	full_stripe	)
2273*b8bea09aSQu Wenruo 		__field(	u64,	physical	)
2274*b8bea09aSQu Wenruo 		__field(	u64,	devid		)
2275*b8bea09aSQu Wenruo 		__field(	u32,	offset		)
2276*b8bea09aSQu Wenruo 		__field(	u32,	len		)
2277*b8bea09aSQu Wenruo 		__field(	u8,	opf		)
2278*b8bea09aSQu Wenruo 		__field(	u8,	total_stripes	)
2279*b8bea09aSQu Wenruo 		__field(	u8,	real_stripes	)
2280*b8bea09aSQu Wenruo 		__field(	u8,	nr_data		)
2281*b8bea09aSQu Wenruo 		__field(	u8,	stripe_nr	)
2282*b8bea09aSQu Wenruo 	),
2283*b8bea09aSQu Wenruo 
2284*b8bea09aSQu Wenruo 	TP_fast_assign_btrfs(rbio->bioc->fs_info,
2285*b8bea09aSQu Wenruo 		__entry->full_stripe	= rbio->bioc->raid_map[0];
2286*b8bea09aSQu Wenruo 		__entry->physical	= bio->bi_iter.bi_sector << SECTOR_SHIFT;
2287*b8bea09aSQu Wenruo 		__entry->len		= bio->bi_iter.bi_size;
2288*b8bea09aSQu Wenruo 		__entry->opf		= bio_op(bio);
2289*b8bea09aSQu Wenruo 		__entry->devid		= trace_info->devid;
2290*b8bea09aSQu Wenruo 		__entry->offset		= trace_info->offset;
2291*b8bea09aSQu Wenruo 		__entry->stripe_nr	= trace_info->stripe_nr;
2292*b8bea09aSQu Wenruo 		__entry->total_stripes	= rbio->bioc->num_stripes;
2293*b8bea09aSQu Wenruo 		__entry->real_stripes	= rbio->real_stripes;
2294*b8bea09aSQu Wenruo 		__entry->nr_data	= rbio->nr_data;
2295*b8bea09aSQu Wenruo 	),
2296*b8bea09aSQu Wenruo 	/*
2297*b8bea09aSQu Wenruo 	 * For type output, we need to output things like "DATA1"
2298*b8bea09aSQu Wenruo 	 * (the first data stripe), "DATA2" (the second data stripe),
2299*b8bea09aSQu Wenruo 	 * "PQ1" (P stripe),"PQ2" (Q stripe), "REPLACE0" (replace target device).
2300*b8bea09aSQu Wenruo 	 */
2301*b8bea09aSQu Wenruo 	TP_printk_btrfs(
2302*b8bea09aSQu Wenruo "full_stripe=%llu devid=%lld type=%s%d offset=%d opf=0x%x physical=%llu len=%u",
2303*b8bea09aSQu Wenruo 		__entry->full_stripe, __entry->devid,
2304*b8bea09aSQu Wenruo 		(__entry->stripe_nr < __entry->nr_data) ? "DATA" :
2305*b8bea09aSQu Wenruo 			((__entry->stripe_nr < __entry->real_stripes) ? "PQ" :
2306*b8bea09aSQu Wenruo 			 "REPLACE"),
2307*b8bea09aSQu Wenruo 		(__entry->stripe_nr < __entry->nr_data) ?
2308*b8bea09aSQu Wenruo 			(__entry->stripe_nr + 1) :
2309*b8bea09aSQu Wenruo 			((__entry->stripe_nr < __entry->real_stripes) ?
2310*b8bea09aSQu Wenruo 			 (__entry->stripe_nr - __entry->nr_data + 1) : 0),
2311*b8bea09aSQu Wenruo 		__entry->offset, __entry->opf, __entry->physical, __entry->len)
2312*b8bea09aSQu Wenruo );
2313*b8bea09aSQu Wenruo 
2314*b8bea09aSQu Wenruo DEFINE_EVENT(btrfs_raid56_bio, raid56_read_partial,
2315*b8bea09aSQu Wenruo 	TP_PROTO(const struct btrfs_raid_bio *rbio,
2316*b8bea09aSQu Wenruo 		 const struct bio *bio,
2317*b8bea09aSQu Wenruo 		 const struct raid56_bio_trace_info *trace_info),
2318*b8bea09aSQu Wenruo 
2319*b8bea09aSQu Wenruo 	TP_ARGS(rbio, bio, trace_info)
2320*b8bea09aSQu Wenruo );
2321*b8bea09aSQu Wenruo 
2322*b8bea09aSQu Wenruo DEFINE_EVENT(btrfs_raid56_bio, raid56_write_stripe,
2323*b8bea09aSQu Wenruo 	TP_PROTO(const struct btrfs_raid_bio *rbio,
2324*b8bea09aSQu Wenruo 		 const struct bio *bio,
2325*b8bea09aSQu Wenruo 		 const struct raid56_bio_trace_info *trace_info),
2326*b8bea09aSQu Wenruo 
2327*b8bea09aSQu Wenruo 	TP_ARGS(rbio, bio, trace_info)
2328*b8bea09aSQu Wenruo );
2329*b8bea09aSQu Wenruo 
2330*b8bea09aSQu Wenruo 
2331*b8bea09aSQu Wenruo DEFINE_EVENT(btrfs_raid56_bio, raid56_scrub_write_stripe,
2332*b8bea09aSQu Wenruo 	TP_PROTO(const struct btrfs_raid_bio *rbio,
2333*b8bea09aSQu Wenruo 		 const struct bio *bio,
2334*b8bea09aSQu Wenruo 		 const struct raid56_bio_trace_info *trace_info),
2335*b8bea09aSQu Wenruo 
2336*b8bea09aSQu Wenruo 	TP_ARGS(rbio, bio, trace_info)
2337*b8bea09aSQu Wenruo );
2338*b8bea09aSQu Wenruo 
2339*b8bea09aSQu Wenruo DEFINE_EVENT(btrfs_raid56_bio, raid56_scrub_read,
2340*b8bea09aSQu Wenruo 	TP_PROTO(const struct btrfs_raid_bio *rbio,
2341*b8bea09aSQu Wenruo 		 const struct bio *bio,
2342*b8bea09aSQu Wenruo 		 const struct raid56_bio_trace_info *trace_info),
2343*b8bea09aSQu Wenruo 
2344*b8bea09aSQu Wenruo 	TP_ARGS(rbio, bio, trace_info)
2345*b8bea09aSQu Wenruo );
2346*b8bea09aSQu Wenruo 
2347*b8bea09aSQu Wenruo DEFINE_EVENT(btrfs_raid56_bio, raid56_scrub_read_recover,
2348*b8bea09aSQu Wenruo 	TP_PROTO(const struct btrfs_raid_bio *rbio,
2349*b8bea09aSQu Wenruo 		 const struct bio *bio,
2350*b8bea09aSQu Wenruo 		 const struct raid56_bio_trace_info *trace_info),
2351*b8bea09aSQu Wenruo 
2352*b8bea09aSQu Wenruo 	TP_ARGS(rbio, bio, trace_info)
2353*b8bea09aSQu Wenruo );
2354*b8bea09aSQu Wenruo 
23551abe9b8aSliubo #endif /* _TRACE_BTRFS_H */
23561abe9b8aSliubo 
23571abe9b8aSliubo /* This part must be outside protection */
23581abe9b8aSliubo #include <trace/define_trace.h>
2359