blob: ecd24c719de4d3e2c24230941038d2ed20b86977 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
liubo1abe9b82011-03-24 11:18:59 +00002#undef TRACE_SYSTEM
3#define TRACE_SYSTEM btrfs
4
5#if !defined(_TRACE_BTRFS_H) || defined(TRACE_HEADER_MULTI_READ)
6#define _TRACE_BTRFS_H
7
8#include <linux/writeback.h>
9#include <linux/tracepoint.h>
Vlastimil Babka420adbe92016-03-15 14:55:52 -070010#include <trace/events/mmflags.h>
liubo1abe9b82011-03-24 11:18:59 +000011
12struct btrfs_root;
13struct btrfs_fs_info;
14struct btrfs_inode;
15struct extent_map;
Liu Bo09ed2f12017-03-10 11:09:48 -080016struct btrfs_file_extent_item;
liubo1abe9b82011-03-24 11:18:59 +000017struct btrfs_ordered_extent;
18struct btrfs_delayed_ref_node;
19struct btrfs_delayed_tree_ref;
20struct btrfs_delayed_data_ref;
21struct btrfs_delayed_ref_head;
David Sterba32da53862019-10-29 19:20:18 +010022struct btrfs_block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -050023struct btrfs_free_cluster;
liubo1abe9b82011-03-24 11:18:59 +000024struct map_lookup;
25struct extent_buffer;
Qu Wenruo52483bc2014-03-06 04:19:50 +000026struct btrfs_work;
Qu Wenruoc3a46892014-03-12 08:05:33 +000027struct __btrfs_workqueue;
Mark Fasheh0f5dcf82016-03-29 17:19:55 -070028struct btrfs_qgroup_extent_record;
Qu Wenruo3159fe72017-03-13 15:52:08 +080029struct btrfs_qgroup;
Qu Wenruoa1d19842019-03-01 10:48:00 +080030struct extent_io_tree;
Jeff Mahoney00142752017-07-12 16:20:08 -060031struct prelim_ref;
Qu Wenruo480b9b42019-04-29 14:03:33 +080032struct btrfs_space_info;
liubo1abe9b82011-03-24 11:18:59 +000033
34#define show_ref_type(type) \
35 __print_symbolic(type, \
36 { BTRFS_TREE_BLOCK_REF_KEY, "TREE_BLOCK_REF" }, \
37 { BTRFS_EXTENT_DATA_REF_KEY, "EXTENT_DATA_REF" }, \
38 { BTRFS_EXTENT_REF_V0_KEY, "EXTENT_REF_V0" }, \
39 { BTRFS_SHARED_BLOCK_REF_KEY, "SHARED_BLOCK_REF" }, \
40 { BTRFS_SHARED_DATA_REF_KEY, "SHARED_DATA_REF" })
41
42#define __show_root_type(obj) \
liubo7f34b742011-04-19 09:35:31 +080043 __print_symbolic_u64(obj, \
liubo1abe9b82011-03-24 11:18:59 +000044 { BTRFS_ROOT_TREE_OBJECTID, "ROOT_TREE" }, \
45 { BTRFS_EXTENT_TREE_OBJECTID, "EXTENT_TREE" }, \
46 { BTRFS_CHUNK_TREE_OBJECTID, "CHUNK_TREE" }, \
47 { BTRFS_DEV_TREE_OBJECTID, "DEV_TREE" }, \
48 { BTRFS_FS_TREE_OBJECTID, "FS_TREE" }, \
49 { BTRFS_ROOT_TREE_DIR_OBJECTID, "ROOT_TREE_DIR" }, \
50 { BTRFS_CSUM_TREE_OBJECTID, "CSUM_TREE" }, \
51 { BTRFS_TREE_LOG_OBJECTID, "TREE_LOG" }, \
Liu Boe112e2b2013-05-26 13:50:28 +000052 { BTRFS_QUOTA_TREE_OBJECTID, "QUOTA_TREE" }, \
liubo1abe9b82011-03-24 11:18:59 +000053 { BTRFS_TREE_RELOC_OBJECTID, "TREE_RELOC" }, \
Omar Sandoval208acb82015-09-29 20:50:34 -070054 { BTRFS_UUID_TREE_OBJECTID, "UUID_TREE" }, \
55 { BTRFS_FREE_SPACE_TREE_OBJECTID, "FREE_SPACE_TREE" }, \
liubo1abe9b82011-03-24 11:18:59 +000056 { BTRFS_DATA_RELOC_TREE_OBJECTID, "DATA_RELOC_TREE" })
57
58#define show_root_type(obj) \
59 obj, ((obj >= BTRFS_DATA_RELOC_TREE_OBJECTID) || \
Liu Bofb57dc82012-11-30 11:24:22 +000060 (obj >= BTRFS_ROOT_TREE_OBJECTID && \
Liu Boe112e2b2013-05-26 13:50:28 +000061 obj <= BTRFS_QUOTA_TREE_OBJECTID)) ? __show_root_type(obj) : "-"
liubo1abe9b82011-03-24 11:18:59 +000062
Nikolay Borisov5bca2c92020-06-19 15:24:48 +030063#define FLUSH_ACTIONS \
64 EM( BTRFS_RESERVE_NO_FLUSH, "BTRFS_RESERVE_NO_FLUSH") \
65 EM( BTRFS_RESERVE_FLUSH_LIMIT, "BTRFS_RESERVE_FLUSH_LIMIT") \
66 EM( BTRFS_RESERVE_FLUSH_ALL, "BTRFS_RESERVE_FLUSH_ALL") \
67 EMe(BTRFS_RESERVE_FLUSH_ALL_STEAL, "BTRFS_RESERVE_FLUSH_ALL_STEAL")
68
Nikolay Borisov0840dd22020-06-19 15:24:47 +030069#define FI_TYPES \
70 EM( BTRFS_FILE_EXTENT_INLINE, "INLINE") \
71 EM( BTRFS_FILE_EXTENT_REG, "REG") \
72 EMe(BTRFS_FILE_EXTENT_PREALLOC, "PREALLOC")
73
Nikolay Borisov1cb1f0b2020-06-19 15:24:49 +030074#define QGROUP_RSV_TYPES \
75 EM( BTRFS_QGROUP_RSV_DATA, "DATA") \
76 EM( BTRFS_QGROUP_RSV_META_PERTRANS, "META_PERTRANS") \
77 EMe(BTRFS_QGROUP_RSV_META_PREALLOC, "META_PREALLOC")
78
Nikolay Borisovc92bb302020-06-19 15:24:50 +030079#define IO_TREE_OWNER \
80 EM( IO_TREE_FS_PINNED_EXTENTS, "PINNED_EXTENTS") \
81 EM( IO_TREE_FS_EXCLUDED_EXTENTS, "EXCLUDED_EXTENTS") \
Qu Wenruo2c53a142020-09-15 13:35:27 +080082 EM( IO_TREE_BTREE_INODE_IO, "BTREE_INODE_IO") \
Nikolay Borisovc92bb302020-06-19 15:24:50 +030083 EM( IO_TREE_INODE_IO, "INODE_IO") \
84 EM( IO_TREE_INODE_IO_FAILURE, "INODE_IO_FAILURE") \
85 EM( IO_TREE_RELOC_BLOCKS, "RELOC_BLOCKS") \
86 EM( IO_TREE_TRANS_DIRTY_PAGES, "TRANS_DIRTY_PAGES") \
87 EM( IO_TREE_ROOT_DIRTY_LOG_PAGES, "ROOT_DIRTY_LOG_PAGES") \
88 EM( IO_TREE_INODE_FILE_EXTENT, "INODE_FILE_EXTENT") \
89 EM( IO_TREE_LOG_CSUM_RANGE, "LOG_CSUM_RANGE") \
90 EMe(IO_TREE_SELFTEST, "SELFTEST")
91
Nikolay Borisovf0cdd152020-06-19 15:24:51 +030092#define FLUSH_STATES \
93 EM( FLUSH_DELAYED_ITEMS_NR, "FLUSH_DELAYED_ITEMS_NR") \
94 EM( FLUSH_DELAYED_ITEMS, "FLUSH_DELAYED_ITEMS") \
95 EM( FLUSH_DELALLOC, "FLUSH_DELALLOC") \
96 EM( FLUSH_DELALLOC_WAIT, "FLUSH_DELALLOC_WAIT") \
97 EM( FLUSH_DELAYED_REFS_NR, "FLUSH_DELAYED_REFS_NR") \
98 EM( FLUSH_DELAYED_REFS, "FLUSH_ELAYED_REFS") \
99 EM( ALLOC_CHUNK, "ALLOC_CHUNK") \
100 EM( ALLOC_CHUNK_FORCE, "ALLOC_CHUNK_FORCE") \
101 EM( RUN_DELAYED_IPUTS, "RUN_DELAYED_IPUTS") \
102 EMe(COMMIT_TRANS, "COMMIT_TRANS")
103
Nikolay Borisov5bca2c92020-06-19 15:24:48 +0300104/*
105 * First define the enums in the above macros to be exported to userspace via
106 * TRACE_DEFINE_ENUM().
107 */
108
Nikolay Borisov0840dd22020-06-19 15:24:47 +0300109#undef EM
110#undef EMe
111#define EM(a, b) TRACE_DEFINE_ENUM(a);
112#define EMe(a, b) TRACE_DEFINE_ENUM(a);
113
Nikolay Borisov5bca2c92020-06-19 15:24:48 +0300114FLUSH_ACTIONS
Nikolay Borisov0840dd22020-06-19 15:24:47 +0300115FI_TYPES
Nikolay Borisov1cb1f0b2020-06-19 15:24:49 +0300116QGROUP_RSV_TYPES
Nikolay Borisovc92bb302020-06-19 15:24:50 +0300117IO_TREE_OWNER
Nikolay Borisovf0cdd152020-06-19 15:24:51 +0300118FLUSH_STATES
Nikolay Borisov0840dd22020-06-19 15:24:47 +0300119
Nikolay Borisov5bca2c92020-06-19 15:24:48 +0300120/*
121 * Now redefine the EM and EMe macros to map the enums to the strings that will
122 * be printed in the output
123 */
124
Nikolay Borisov0840dd22020-06-19 15:24:47 +0300125#undef EM
126#undef EMe
127#define EM(a, b) {a, b},
128#define EMe(a, b) {a, b}
Liu Bo09ed2f12017-03-10 11:09:48 -0800129
Qu Wenruoa1d19842019-03-01 10:48:00 +0800130
Josef Bacik3f7de032011-11-10 08:29:20 -0500131#define BTRFS_GROUP_FLAGS \
Liu Boe112e2b2013-05-26 13:50:28 +0000132 { BTRFS_BLOCK_GROUP_DATA, "DATA"}, \
133 { BTRFS_BLOCK_GROUP_SYSTEM, "SYSTEM"}, \
134 { BTRFS_BLOCK_GROUP_METADATA, "METADATA"}, \
135 { BTRFS_BLOCK_GROUP_RAID0, "RAID0"}, \
136 { BTRFS_BLOCK_GROUP_RAID1, "RAID1"}, \
137 { BTRFS_BLOCK_GROUP_DUP, "DUP"}, \
138 { BTRFS_BLOCK_GROUP_RAID10, "RAID10"}, \
139 { BTRFS_BLOCK_GROUP_RAID5, "RAID5"}, \
140 { BTRFS_BLOCK_GROUP_RAID6, "RAID6"}
Josef Bacik3f7de032011-11-10 08:29:20 -0500141
Qu Wenruoa1d19842019-03-01 10:48:00 +0800142#define EXTENT_FLAGS \
143 { EXTENT_DIRTY, "DIRTY"}, \
Qu Wenruoa1d19842019-03-01 10:48:00 +0800144 { EXTENT_UPTODATE, "UPTODATE"}, \
145 { EXTENT_LOCKED, "LOCKED"}, \
146 { EXTENT_NEW, "NEW"}, \
147 { EXTENT_DELALLOC, "DELALLOC"}, \
148 { EXTENT_DEFRAG, "DEFRAG"}, \
149 { EXTENT_BOUNDARY, "BOUNDARY"}, \
150 { EXTENT_NODATASUM, "NODATASUM"}, \
151 { EXTENT_CLEAR_META_RESV, "CLEAR_META_RESV"}, \
152 { EXTENT_NEED_WAIT, "NEED_WAIT"}, \
153 { EXTENT_DAMAGED, "DAMAGED"}, \
154 { EXTENT_NORESERVE, "NORESERVE"}, \
155 { EXTENT_QGROUP_RESERVED, "QGROUP_RESERVED"}, \
156 { EXTENT_CLEAR_DATA_RESV, "CLEAR_DATA_RESV"}, \
157 { EXTENT_DELALLOC_NEW, "DELALLOC_NEW"}
158
Anand Jainb94417e2017-08-13 11:58:30 +0800159#define BTRFS_FSID_SIZE 16
160#define TP_STRUCT__entry_fsid __array(u8, fsid, BTRFS_FSID_SIZE)
Jeff Mahoneybc074522016-06-09 17:27:55 -0400161
162#define TP_fast_assign_fsid(fs_info) \
Qu Wenruoa1d19842019-03-01 10:48:00 +0800163({ \
164 if (fs_info) \
165 memcpy(__entry->fsid, fs_info->fs_devices->fsid, \
166 BTRFS_FSID_SIZE); \
167 else \
168 memset(__entry->fsid, 0, BTRFS_FSID_SIZE); \
169})
Jeff Mahoneybc074522016-06-09 17:27:55 -0400170
171#define TP_STRUCT__entry_btrfs(args...) \
172 TP_STRUCT__entry( \
173 TP_STRUCT__entry_fsid \
174 args)
175#define TP_fast_assign_btrfs(fs_info, args...) \
176 TP_fast_assign( \
177 TP_fast_assign_fsid(fs_info); \
178 args)
179#define TP_printk_btrfs(fmt, args...) \
180 TP_printk("%pU: " fmt, __entry->fsid, args)
Josef Bacik8c2a3ca2012-01-10 10:31:31 -0500181
liubo1abe9b82011-03-24 11:18:59 +0000182TRACE_EVENT(btrfs_transaction_commit,
183
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600184 TP_PROTO(const struct btrfs_root *root),
liubo1abe9b82011-03-24 11:18:59 +0000185
186 TP_ARGS(root),
187
Jeff Mahoneybc074522016-06-09 17:27:55 -0400188 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000189 __field( u64, generation )
190 __field( u64, root_objectid )
191 ),
192
Jeff Mahoneybc074522016-06-09 17:27:55 -0400193 TP_fast_assign_btrfs(root->fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000194 __entry->generation = root->fs_info->generation;
195 __entry->root_objectid = root->root_key.objectid;
196 ),
197
David Sterba79bcb712018-04-03 21:21:17 +0200198 TP_printk_btrfs("root=%llu(%s) gen=%llu",
liubo1abe9b82011-03-24 11:18:59 +0000199 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200200 __entry->generation)
liubo1abe9b82011-03-24 11:18:59 +0000201);
202
203DECLARE_EVENT_CLASS(btrfs__inode,
204
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600205 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000206
207 TP_ARGS(inode),
208
Jeff Mahoneybc074522016-06-09 17:27:55 -0400209 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200210 __field( u64, ino )
David Sterba94c3f6c2019-10-17 13:28:55 +0200211 __field( u64, blocks )
liubo1abe9b82011-03-24 11:18:59 +0000212 __field( u64, disk_i_size )
213 __field( u64, generation )
214 __field( u64, last_trans )
215 __field( u64, logged_trans )
216 __field( u64, root_objectid )
217 ),
218
Jeff Mahoneybc074522016-06-09 17:27:55 -0400219 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200220 __entry->ino = btrfs_ino(BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +0000221 __entry->blocks = inode->i_blocks;
222 __entry->disk_i_size = BTRFS_I(inode)->disk_i_size;
223 __entry->generation = BTRFS_I(inode)->generation;
224 __entry->last_trans = BTRFS_I(inode)->last_trans;
225 __entry->logged_trans = BTRFS_I(inode)->logged_trans;
226 __entry->root_objectid =
227 BTRFS_I(inode)->root->root_key.objectid;
228 ),
229
David Sterbaf8f8e182018-04-03 20:57:21 +0200230 TP_printk_btrfs("root=%llu(%s) gen=%llu ino=%llu blocks=%llu "
David Sterba562a7a02017-01-06 15:51:36 +0100231 "disk_i_size=%llu last_trans=%llu logged_trans=%llu",
liubo1abe9b82011-03-24 11:18:59 +0000232 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200233 __entry->generation,
234 __entry->ino,
David Sterba94c3f6c2019-10-17 13:28:55 +0200235 __entry->blocks,
David Sterba8eec8462018-04-03 21:15:11 +0200236 __entry->disk_i_size,
237 __entry->last_trans,
238 __entry->logged_trans)
liubo1abe9b82011-03-24 11:18:59 +0000239);
240
241DEFINE_EVENT(btrfs__inode, btrfs_inode_new,
242
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600243 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000244
245 TP_ARGS(inode)
246);
247
248DEFINE_EVENT(btrfs__inode, btrfs_inode_request,
249
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600250 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000251
252 TP_ARGS(inode)
253);
254
255DEFINE_EVENT(btrfs__inode, btrfs_inode_evict,
256
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600257 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000258
259 TP_ARGS(inode)
260);
261
262#define __show_map_type(type) \
liubo7f34b742011-04-19 09:35:31 +0800263 __print_symbolic_u64(type, \
liubo1abe9b82011-03-24 11:18:59 +0000264 { EXTENT_MAP_LAST_BYTE, "LAST_BYTE" }, \
265 { EXTENT_MAP_HOLE, "HOLE" }, \
266 { EXTENT_MAP_INLINE, "INLINE" }, \
267 { EXTENT_MAP_DELALLOC, "DELALLOC" })
268
269#define show_map_type(type) \
270 type, (type >= EXTENT_MAP_LAST_BYTE) ? "-" : __show_map_type(type)
271
272#define show_map_flags(flag) \
273 __print_flags(flag, "|", \
Liu Bo254a2d12014-09-17 21:36:41 +0800274 { (1 << EXTENT_FLAG_PINNED), "PINNED" },\
275 { (1 << EXTENT_FLAG_COMPRESSED), "COMPRESSED" },\
Liu Bo254a2d12014-09-17 21:36:41 +0800276 { (1 << EXTENT_FLAG_PREALLOC), "PREALLOC" },\
277 { (1 << EXTENT_FLAG_LOGGING), "LOGGING" },\
278 { (1 << EXTENT_FLAG_FILLING), "FILLING" },\
279 { (1 << EXTENT_FLAG_FS_MAPPING), "FS_MAPPING" })
liubo1abe9b82011-03-24 11:18:59 +0000280
Steven Rostedt4cd85872013-11-14 22:57:29 -0500281TRACE_EVENT_CONDITION(btrfs_get_extent,
liubo1abe9b82011-03-24 11:18:59 +0000282
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600283 TP_PROTO(const struct btrfs_root *root, const struct btrfs_inode *inode,
284 const struct extent_map *map),
liubo1abe9b82011-03-24 11:18:59 +0000285
Liu Bo92a1bf72016-11-17 15:00:50 -0800286 TP_ARGS(root, inode, map),
liubo1abe9b82011-03-24 11:18:59 +0000287
Steven Rostedt4cd85872013-11-14 22:57:29 -0500288 TP_CONDITION(map),
289
Jeff Mahoneybc074522016-06-09 17:27:55 -0400290 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000291 __field( u64, root_objectid )
Liu Bo92a1bf72016-11-17 15:00:50 -0800292 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000293 __field( u64, start )
294 __field( u64, len )
295 __field( u64, orig_start )
296 __field( u64, block_start )
297 __field( u64, block_len )
298 __field( unsigned long, flags )
299 __field( int, refs )
300 __field( unsigned int, compress_type )
301 ),
302
Jeff Mahoneybc074522016-06-09 17:27:55 -0400303 TP_fast_assign_btrfs(root->fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000304 __entry->root_objectid = root->root_key.objectid;
Liu Bo92a1bf72016-11-17 15:00:50 -0800305 __entry->ino = btrfs_ino(inode);
306 __entry->start = map->start;
liubo1abe9b82011-03-24 11:18:59 +0000307 __entry->len = map->len;
308 __entry->orig_start = map->orig_start;
309 __entry->block_start = map->block_start;
310 __entry->block_len = map->block_len;
311 __entry->flags = map->flags;
Elena Reshetova490b54d2017-03-03 10:55:12 +0200312 __entry->refs = refcount_read(&map->refs);
liubo1abe9b82011-03-24 11:18:59 +0000313 __entry->compress_type = map->compress_type;
314 ),
315
David Sterba562a7a02017-01-06 15:51:36 +0100316 TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu len=%llu "
317 "orig_start=%llu block_start=%llu(%s) "
318 "block_len=%llu flags=%s refs=%u "
319 "compress_type=%u",
liubo1abe9b82011-03-24 11:18:59 +0000320 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200321 __entry->ino,
322 __entry->start,
323 __entry->len,
324 __entry->orig_start,
liubo1abe9b82011-03-24 11:18:59 +0000325 show_map_type(__entry->block_start),
David Sterba8eec8462018-04-03 21:15:11 +0200326 __entry->block_len,
liubo1abe9b82011-03-24 11:18:59 +0000327 show_map_flags(__entry->flags),
328 __entry->refs, __entry->compress_type)
329);
330
Liu Bo393da912018-01-05 12:51:16 -0700331TRACE_EVENT(btrfs_handle_em_exist,
332
David Sterba1d2e7c72019-10-17 13:28:57 +0200333 TP_PROTO(const struct btrfs_fs_info *fs_info,
David Sterbaf46b24c2018-04-03 21:45:57 +0200334 const struct extent_map *existing, const struct extent_map *map,
335 u64 start, u64 len),
Liu Bo393da912018-01-05 12:51:16 -0700336
David Sterbaf46b24c2018-04-03 21:45:57 +0200337 TP_ARGS(fs_info, existing, map, start, len),
Liu Bo393da912018-01-05 12:51:16 -0700338
David Sterbaf46b24c2018-04-03 21:45:57 +0200339 TP_STRUCT__entry_btrfs(
Liu Bo393da912018-01-05 12:51:16 -0700340 __field( u64, e_start )
341 __field( u64, e_len )
342 __field( u64, map_start )
343 __field( u64, map_len )
344 __field( u64, start )
345 __field( u64, len )
346 ),
347
David Sterbaf46b24c2018-04-03 21:45:57 +0200348 TP_fast_assign_btrfs(fs_info,
Liu Bo393da912018-01-05 12:51:16 -0700349 __entry->e_start = existing->start;
350 __entry->e_len = existing->len;
351 __entry->map_start = map->start;
352 __entry->map_len = map->len;
353 __entry->start = start;
354 __entry->len = len;
355 ),
356
David Sterbaf46b24c2018-04-03 21:45:57 +0200357 TP_printk_btrfs("start=%llu len=%llu "
Liu Bo393da912018-01-05 12:51:16 -0700358 "existing(start=%llu len=%llu) "
359 "em(start=%llu len=%llu)",
David Sterba8eec8462018-04-03 21:15:11 +0200360 __entry->start,
361 __entry->len,
362 __entry->e_start,
363 __entry->e_len,
364 __entry->map_start,
365 __entry->map_len)
Liu Bo393da912018-01-05 12:51:16 -0700366);
367
Liu Bo09ed2f12017-03-10 11:09:48 -0800368/* file extent item */
369DECLARE_EVENT_CLASS(btrfs__file_extent_item_regular,
370
David Sterba1d2e7c72019-10-17 13:28:57 +0200371 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
372 const struct btrfs_file_extent_item *fi, u64 start),
Liu Bo09ed2f12017-03-10 11:09:48 -0800373
374 TP_ARGS(bi, l, fi, start),
375
376 TP_STRUCT__entry_btrfs(
377 __field( u64, root_obj )
378 __field( u64, ino )
379 __field( loff_t, isize )
380 __field( u64, disk_isize )
381 __field( u64, num_bytes )
382 __field( u64, ram_bytes )
383 __field( u64, disk_bytenr )
384 __field( u64, disk_num_bytes )
385 __field( u64, extent_offset )
386 __field( u8, extent_type )
387 __field( u8, compression )
388 __field( u64, extent_start )
389 __field( u64, extent_end )
390 ),
391
392 TP_fast_assign_btrfs(bi->root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +0900393 __entry->root_obj = bi->root->root_key.objectid;
Liu Bo09ed2f12017-03-10 11:09:48 -0800394 __entry->ino = btrfs_ino(bi);
395 __entry->isize = bi->vfs_inode.i_size;
396 __entry->disk_isize = bi->disk_i_size;
397 __entry->num_bytes = btrfs_file_extent_num_bytes(l, fi);
398 __entry->ram_bytes = btrfs_file_extent_ram_bytes(l, fi);
399 __entry->disk_bytenr = btrfs_file_extent_disk_bytenr(l, fi);
400 __entry->disk_num_bytes = btrfs_file_extent_disk_num_bytes(l, fi);
401 __entry->extent_offset = btrfs_file_extent_offset(l, fi);
402 __entry->extent_type = btrfs_file_extent_type(l, fi);
403 __entry->compression = btrfs_file_extent_compression(l, fi);
404 __entry->extent_start = start;
405 __entry->extent_end = (start + __entry->num_bytes);
406 ),
407
408 TP_printk_btrfs(
409 "root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
410 "file extent range=[%llu %llu] "
411 "(num_bytes=%llu ram_bytes=%llu disk_bytenr=%llu "
412 "disk_num_bytes=%llu extent_offset=%llu type=%s "
413 "compression=%u",
414 show_root_type(__entry->root_obj), __entry->ino,
415 __entry->isize,
416 __entry->disk_isize, __entry->extent_start,
417 __entry->extent_end, __entry->num_bytes, __entry->ram_bytes,
418 __entry->disk_bytenr, __entry->disk_num_bytes,
Nikolay Borisov0840dd22020-06-19 15:24:47 +0300419 __entry->extent_offset, __print_symbolic(__entry->extent_type, FI_TYPES),
Liu Bo09ed2f12017-03-10 11:09:48 -0800420 __entry->compression)
421);
422
423DECLARE_EVENT_CLASS(
424 btrfs__file_extent_item_inline,
425
David Sterba1d2e7c72019-10-17 13:28:57 +0200426 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
427 const struct btrfs_file_extent_item *fi, int slot, u64 start),
Liu Bo09ed2f12017-03-10 11:09:48 -0800428
429 TP_ARGS(bi, l, fi, slot, start),
430
431 TP_STRUCT__entry_btrfs(
432 __field( u64, root_obj )
433 __field( u64, ino )
434 __field( loff_t, isize )
435 __field( u64, disk_isize )
436 __field( u8, extent_type )
437 __field( u8, compression )
438 __field( u64, extent_start )
439 __field( u64, extent_end )
440 ),
441
442 TP_fast_assign_btrfs(
443 bi->root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +0900444 __entry->root_obj = bi->root->root_key.objectid;
Liu Bo09ed2f12017-03-10 11:09:48 -0800445 __entry->ino = btrfs_ino(bi);
446 __entry->isize = bi->vfs_inode.i_size;
447 __entry->disk_isize = bi->disk_i_size;
448 __entry->extent_type = btrfs_file_extent_type(l, fi);
449 __entry->compression = btrfs_file_extent_compression(l, fi);
450 __entry->extent_start = start;
Qu Wenruoe41ca582018-06-06 15:41:49 +0800451 __entry->extent_end = (start + btrfs_file_extent_ram_bytes(l, fi));
Liu Bo09ed2f12017-03-10 11:09:48 -0800452 ),
453
454 TP_printk_btrfs(
455 "root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
456 "file extent range=[%llu %llu] "
457 "extent_type=%s compression=%u",
458 show_root_type(__entry->root_obj), __entry->ino, __entry->isize,
459 __entry->disk_isize, __entry->extent_start,
Nikolay Borisov0840dd22020-06-19 15:24:47 +0300460 __entry->extent_end, __print_symbolic(__entry->extent_type, FI_TYPES),
Liu Bo09ed2f12017-03-10 11:09:48 -0800461 __entry->compression)
462);
463
464DEFINE_EVENT(
465 btrfs__file_extent_item_regular, btrfs_get_extent_show_fi_regular,
466
David Sterba1d2e7c72019-10-17 13:28:57 +0200467 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
468 const struct btrfs_file_extent_item *fi, u64 start),
Liu Bo09ed2f12017-03-10 11:09:48 -0800469
470 TP_ARGS(bi, l, fi, start)
471);
472
473DEFINE_EVENT(
474 btrfs__file_extent_item_regular, btrfs_truncate_show_fi_regular,
475
David Sterba1d2e7c72019-10-17 13:28:57 +0200476 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
477 const struct btrfs_file_extent_item *fi, u64 start),
Liu Bo09ed2f12017-03-10 11:09:48 -0800478
479 TP_ARGS(bi, l, fi, start)
480);
481
482DEFINE_EVENT(
483 btrfs__file_extent_item_inline, btrfs_get_extent_show_fi_inline,
484
David Sterba1d2e7c72019-10-17 13:28:57 +0200485 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
486 const struct btrfs_file_extent_item *fi, int slot, u64 start),
Liu Bo09ed2f12017-03-10 11:09:48 -0800487
488 TP_ARGS(bi, l, fi, slot, start)
489);
490
491DEFINE_EVENT(
492 btrfs__file_extent_item_inline, btrfs_truncate_show_fi_inline,
493
David Sterba1d2e7c72019-10-17 13:28:57 +0200494 TP_PROTO(const struct btrfs_inode *bi, const struct extent_buffer *l,
495 const struct btrfs_file_extent_item *fi, int slot, u64 start),
Liu Bo09ed2f12017-03-10 11:09:48 -0800496
497 TP_ARGS(bi, l, fi, slot, start)
498);
499
Liu Bo9d04a8c2013-11-06 12:04:13 +0800500#define show_ordered_flags(flags) \
501 __print_flags(flags, "|", \
502 { (1 << BTRFS_ORDERED_IO_DONE), "IO_DONE" }, \
503 { (1 << BTRFS_ORDERED_COMPLETE), "COMPLETE" }, \
504 { (1 << BTRFS_ORDERED_NOCOW), "NOCOW" }, \
505 { (1 << BTRFS_ORDERED_COMPRESSED), "COMPRESSED" }, \
506 { (1 << BTRFS_ORDERED_PREALLOC), "PREALLOC" }, \
507 { (1 << BTRFS_ORDERED_DIRECT), "DIRECT" }, \
508 { (1 << BTRFS_ORDERED_IOERR), "IOERR" }, \
Liu Bo792ddef2013-11-06 12:04:14 +0800509 { (1 << BTRFS_ORDERED_TRUNCATED), "TRUNCATED" })
Liu Boe112e2b2013-05-26 13:50:28 +0000510
liubo1abe9b82011-03-24 11:18:59 +0000511
512DECLARE_EVENT_CLASS(btrfs__ordered_extent,
513
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300514 TP_PROTO(const struct btrfs_inode *inode,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600515 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000516
517 TP_ARGS(inode, ordered),
518
Jeff Mahoneybc074522016-06-09 17:27:55 -0400519 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200520 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000521 __field( u64, file_offset )
522 __field( u64, start )
523 __field( u64, len )
524 __field( u64, disk_len )
525 __field( u64, bytes_left )
526 __field( unsigned long, flags )
527 __field( int, compress_type )
528 __field( int, refs )
529 __field( u64, root_objectid )
Liu Bo78566542016-11-30 16:10:10 -0800530 __field( u64, truncated_len )
liubo1abe9b82011-03-24 11:18:59 +0000531 ),
532
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300533 TP_fast_assign_btrfs(inode->root->fs_info,
534 __entry->ino = btrfs_ino(inode);
liubo1abe9b82011-03-24 11:18:59 +0000535 __entry->file_offset = ordered->file_offset;
Omar Sandovalbffe6332019-12-02 17:34:19 -0800536 __entry->start = ordered->disk_bytenr;
537 __entry->len = ordered->num_bytes;
538 __entry->disk_len = ordered->disk_num_bytes;
liubo1abe9b82011-03-24 11:18:59 +0000539 __entry->bytes_left = ordered->bytes_left;
540 __entry->flags = ordered->flags;
541 __entry->compress_type = ordered->compress_type;
Elena Reshetovae76edab2017-03-03 10:55:13 +0200542 __entry->refs = refcount_read(&ordered->refs);
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300543 __entry->root_objectid = inode->root->root_key.objectid;
Liu Bo78566542016-11-30 16:10:10 -0800544 __entry->truncated_len = ordered->truncated_len;
liubo1abe9b82011-03-24 11:18:59 +0000545 ),
546
David Sterba562a7a02017-01-06 15:51:36 +0100547 TP_printk_btrfs("root=%llu(%s) ino=%llu file_offset=%llu "
548 "start=%llu len=%llu disk_len=%llu "
549 "truncated_len=%llu "
550 "bytes_left=%llu flags=%s compress_type=%d "
551 "refs=%d",
liubo1abe9b82011-03-24 11:18:59 +0000552 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200553 __entry->ino,
554 __entry->file_offset,
555 __entry->start,
556 __entry->len,
557 __entry->disk_len,
558 __entry->truncated_len,
559 __entry->bytes_left,
liubo1abe9b82011-03-24 11:18:59 +0000560 show_ordered_flags(__entry->flags),
561 __entry->compress_type, __entry->refs)
562);
563
564DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_add,
565
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300566 TP_PROTO(const struct btrfs_inode *inode,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600567 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000568
569 TP_ARGS(inode, ordered)
570);
571
572DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_remove,
573
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300574 TP_PROTO(const struct btrfs_inode *inode,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600575 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000576
577 TP_ARGS(inode, ordered)
578);
579
580DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_start,
581
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300582 TP_PROTO(const struct btrfs_inode *inode,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600583 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000584
585 TP_ARGS(inode, ordered)
586);
587
588DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_put,
589
Nikolay Borisovacbf1dd2020-08-31 14:42:40 +0300590 TP_PROTO(const struct btrfs_inode *inode,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600591 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000592
593 TP_ARGS(inode, ordered)
594);
595
596DECLARE_EVENT_CLASS(btrfs__writepage,
597
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600598 TP_PROTO(const struct page *page, const struct inode *inode,
599 const struct writeback_control *wbc),
liubo1abe9b82011-03-24 11:18:59 +0000600
601 TP_ARGS(page, inode, wbc),
602
Jeff Mahoneybc074522016-06-09 17:27:55 -0400603 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200604 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000605 __field( pgoff_t, index )
606 __field( long, nr_to_write )
607 __field( long, pages_skipped )
608 __field( loff_t, range_start )
609 __field( loff_t, range_end )
liubo1abe9b82011-03-24 11:18:59 +0000610 __field( char, for_kupdate )
611 __field( char, for_reclaim )
612 __field( char, range_cyclic )
David Sterba94c3f6c2019-10-17 13:28:55 +0200613 __field( unsigned long, writeback_index )
liubo1abe9b82011-03-24 11:18:59 +0000614 __field( u64, root_objectid )
615 ),
616
Jeff Mahoneybc074522016-06-09 17:27:55 -0400617 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200618 __entry->ino = btrfs_ino(BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +0000619 __entry->index = page->index;
620 __entry->nr_to_write = wbc->nr_to_write;
621 __entry->pages_skipped = wbc->pages_skipped;
622 __entry->range_start = wbc->range_start;
623 __entry->range_end = wbc->range_end;
liubo1abe9b82011-03-24 11:18:59 +0000624 __entry->for_kupdate = wbc->for_kupdate;
625 __entry->for_reclaim = wbc->for_reclaim;
626 __entry->range_cyclic = wbc->range_cyclic;
627 __entry->writeback_index = inode->i_mapping->writeback_index;
628 __entry->root_objectid =
629 BTRFS_I(inode)->root->root_key.objectid;
630 ),
631
David Sterbaf8f8e182018-04-03 20:57:21 +0200632 TP_printk_btrfs("root=%llu(%s) ino=%llu page_index=%lu "
David Sterba562a7a02017-01-06 15:51:36 +0100633 "nr_to_write=%ld pages_skipped=%ld range_start=%llu "
634 "range_end=%llu for_kupdate=%d "
635 "for_reclaim=%d range_cyclic=%d writeback_index=%lu",
liubo1abe9b82011-03-24 11:18:59 +0000636 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200637 __entry->ino, __entry->index,
liubo1abe9b82011-03-24 11:18:59 +0000638 __entry->nr_to_write, __entry->pages_skipped,
639 __entry->range_start, __entry->range_end,
Wu Fengguang846d5a02011-05-05 21:10:38 -0600640 __entry->for_kupdate,
liubo1abe9b82011-03-24 11:18:59 +0000641 __entry->for_reclaim, __entry->range_cyclic,
David Sterba94c3f6c2019-10-17 13:28:55 +0200642 __entry->writeback_index)
liubo1abe9b82011-03-24 11:18:59 +0000643);
644
645DEFINE_EVENT(btrfs__writepage, __extent_writepage,
646
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600647 TP_PROTO(const struct page *page, const struct inode *inode,
648 const struct writeback_control *wbc),
liubo1abe9b82011-03-24 11:18:59 +0000649
650 TP_ARGS(page, inode, wbc)
651);
652
653TRACE_EVENT(btrfs_writepage_end_io_hook,
654
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600655 TP_PROTO(const struct page *page, u64 start, u64 end, int uptodate),
liubo1abe9b82011-03-24 11:18:59 +0000656
657 TP_ARGS(page, start, end, uptodate),
658
Jeff Mahoneybc074522016-06-09 17:27:55 -0400659 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200660 __field( u64, ino )
David Sterba94c3f6c2019-10-17 13:28:55 +0200661 __field( unsigned long, index )
liubo1abe9b82011-03-24 11:18:59 +0000662 __field( u64, start )
663 __field( u64, end )
664 __field( int, uptodate )
665 __field( u64, root_objectid )
666 ),
667
Jeff Mahoneybc074522016-06-09 17:27:55 -0400668 TP_fast_assign_btrfs(btrfs_sb(page->mapping->host->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200669 __entry->ino = btrfs_ino(BTRFS_I(page->mapping->host));
liubo1abe9b82011-03-24 11:18:59 +0000670 __entry->index = page->index;
671 __entry->start = start;
672 __entry->end = end;
673 __entry->uptodate = uptodate;
674 __entry->root_objectid =
675 BTRFS_I(page->mapping->host)->root->root_key.objectid;
676 ),
677
David Sterbaf8f8e182018-04-03 20:57:21 +0200678 TP_printk_btrfs("root=%llu(%s) ino=%llu page_index=%lu start=%llu "
David Sterba562a7a02017-01-06 15:51:36 +0100679 "end=%llu uptodate=%d",
liubo1abe9b82011-03-24 11:18:59 +0000680 show_root_type(__entry->root_objectid),
David Sterba94c3f6c2019-10-17 13:28:55 +0200681 __entry->ino, __entry->index,
David Sterba8eec8462018-04-03 21:15:11 +0200682 __entry->start,
683 __entry->end, __entry->uptodate)
liubo1abe9b82011-03-24 11:18:59 +0000684);
685
686TRACE_EVENT(btrfs_sync_file,
687
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600688 TP_PROTO(const struct file *file, int datasync),
liubo1abe9b82011-03-24 11:18:59 +0000689
690 TP_ARGS(file, datasync),
691
Jeff Mahoneybc074522016-06-09 17:27:55 -0400692 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200693 __field( u64, ino )
694 __field( u64, parent )
liubo1abe9b82011-03-24 11:18:59 +0000695 __field( int, datasync )
696 __field( u64, root_objectid )
697 ),
698
699 TP_fast_assign(
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600700 const struct dentry *dentry = file->f_path.dentry;
701 const struct inode *inode = d_inode(dentry);
liubo1abe9b82011-03-24 11:18:59 +0000702
Jeff Mahoneybc074522016-06-09 17:27:55 -0400703 TP_fast_assign_fsid(btrfs_sb(file->f_path.dentry->d_sb));
David Sterbaf8f8e182018-04-03 20:57:21 +0200704 __entry->ino = btrfs_ino(BTRFS_I(inode));
705 __entry->parent = btrfs_ino(BTRFS_I(d_inode(dentry->d_parent)));
liubo1abe9b82011-03-24 11:18:59 +0000706 __entry->datasync = datasync;
707 __entry->root_objectid =
708 BTRFS_I(inode)->root->root_key.objectid;
709 ),
710
David Sterbaf8f8e182018-04-03 20:57:21 +0200711 TP_printk_btrfs("root=%llu(%s) ino=%llu parent=%llu datasync=%d",
liubo1abe9b82011-03-24 11:18:59 +0000712 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200713 __entry->ino,
714 __entry->parent,
liubo1abe9b82011-03-24 11:18:59 +0000715 __entry->datasync)
716);
717
718TRACE_EVENT(btrfs_sync_fs,
719
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600720 TP_PROTO(const struct btrfs_fs_info *fs_info, int wait),
liubo1abe9b82011-03-24 11:18:59 +0000721
Jeff Mahoneybc074522016-06-09 17:27:55 -0400722 TP_ARGS(fs_info, wait),
liubo1abe9b82011-03-24 11:18:59 +0000723
Jeff Mahoneybc074522016-06-09 17:27:55 -0400724 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000725 __field( int, wait )
726 ),
727
Jeff Mahoneybc074522016-06-09 17:27:55 -0400728 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000729 __entry->wait = wait;
730 ),
731
David Sterba79bcb712018-04-03 21:21:17 +0200732 TP_printk_btrfs("wait=%d", __entry->wait)
liubo1abe9b82011-03-24 11:18:59 +0000733);
734
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400735TRACE_EVENT(btrfs_add_block_group,
736
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600737 TP_PROTO(const struct btrfs_fs_info *fs_info,
David Sterba32da53862019-10-29 19:20:18 +0100738 const struct btrfs_block_group *block_group, int create),
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400739
740 TP_ARGS(fs_info, block_group, create),
741
David Sterba2e63e622018-04-03 21:34:06 +0200742 TP_STRUCT__entry_btrfs(
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400743 __field( u64, offset )
744 __field( u64, size )
745 __field( u64, flags )
746 __field( u64, bytes_used )
747 __field( u64, bytes_super )
748 __field( int, create )
749 ),
750
David Sterba2e63e622018-04-03 21:34:06 +0200751 TP_fast_assign_btrfs(fs_info,
David Sterbab3470b52019-10-23 18:48:22 +0200752 __entry->offset = block_group->start;
753 __entry->size = block_group->length;
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400754 __entry->flags = block_group->flags;
David Sterbabf38be62019-10-23 18:48:11 +0200755 __entry->bytes_used = block_group->used;
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400756 __entry->bytes_super = block_group->bytes_super;
757 __entry->create = create;
758 ),
759
David Sterba2e63e622018-04-03 21:34:06 +0200760 TP_printk_btrfs("block_group offset=%llu size=%llu "
David Sterba562a7a02017-01-06 15:51:36 +0100761 "flags=%llu(%s) bytes_used=%llu bytes_super=%llu "
David Sterba2e63e622018-04-03 21:34:06 +0200762 "create=%d",
David Sterba8eec8462018-04-03 21:15:11 +0200763 __entry->offset,
764 __entry->size,
765 __entry->flags,
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400766 __print_flags((unsigned long)__entry->flags, "|",
767 BTRFS_GROUP_FLAGS),
David Sterba8eec8462018-04-03 21:15:11 +0200768 __entry->bytes_used,
769 __entry->bytes_super, __entry->create)
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400770);
771
liubo1abe9b82011-03-24 11:18:59 +0000772#define show_ref_action(action) \
773 __print_symbolic(action, \
774 { BTRFS_ADD_DELAYED_REF, "ADD_DELAYED_REF" }, \
775 { BTRFS_DROP_DELAYED_REF, "DROP_DELAYED_REF" }, \
776 { BTRFS_ADD_DELAYED_EXTENT, "ADD_DELAYED_EXTENT" }, \
777 { BTRFS_UPDATE_DELAYED_HEAD, "UPDATE_DELAYED_HEAD" })
778
779
Liu Bo599c75e2013-07-16 19:03:36 +0800780DECLARE_EVENT_CLASS(btrfs_delayed_tree_ref,
liubo1abe9b82011-03-24 11:18:59 +0000781
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600782 TP_PROTO(const struct btrfs_fs_info *fs_info,
783 const struct btrfs_delayed_ref_node *ref,
784 const struct btrfs_delayed_tree_ref *full_ref,
liubo1abe9b82011-03-24 11:18:59 +0000785 int action),
786
Jeff Mahoneybc074522016-06-09 17:27:55 -0400787 TP_ARGS(fs_info, ref, full_ref, action),
liubo1abe9b82011-03-24 11:18:59 +0000788
Jeff Mahoneybc074522016-06-09 17:27:55 -0400789 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000790 __field( u64, bytenr )
791 __field( u64, num_bytes )
792 __field( int, action )
793 __field( u64, parent )
794 __field( u64, ref_root )
795 __field( int, level )
796 __field( int, type )
Liu Bodea7d762012-09-07 20:01:27 -0600797 __field( u64, seq )
liubo1abe9b82011-03-24 11:18:59 +0000798 ),
799
Jeff Mahoneybc074522016-06-09 17:27:55 -0400800 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000801 __entry->bytenr = ref->bytenr;
802 __entry->num_bytes = ref->num_bytes;
803 __entry->action = action;
804 __entry->parent = full_ref->parent;
805 __entry->ref_root = full_ref->root;
806 __entry->level = full_ref->level;
807 __entry->type = ref->type;
Liu Bodea7d762012-09-07 20:01:27 -0600808 __entry->seq = ref->seq;
liubo1abe9b82011-03-24 11:18:59 +0000809 ),
810
David Sterba562a7a02017-01-06 15:51:36 +0100811 TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
812 "parent=%llu(%s) ref_root=%llu(%s) level=%d "
813 "type=%s seq=%llu",
David Sterba8eec8462018-04-03 21:15:11 +0200814 __entry->bytenr,
815 __entry->num_bytes,
liubo1abe9b82011-03-24 11:18:59 +0000816 show_ref_action(__entry->action),
817 show_root_type(__entry->parent),
818 show_root_type(__entry->ref_root),
Liu Bodea7d762012-09-07 20:01:27 -0600819 __entry->level, show_ref_type(__entry->type),
David Sterba8eec8462018-04-03 21:15:11 +0200820 __entry->seq)
liubo1abe9b82011-03-24 11:18:59 +0000821);
822
Liu Bo599c75e2013-07-16 19:03:36 +0800823DEFINE_EVENT(btrfs_delayed_tree_ref, add_delayed_tree_ref,
824
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600825 TP_PROTO(const struct btrfs_fs_info *fs_info,
826 const struct btrfs_delayed_ref_node *ref,
827 const struct btrfs_delayed_tree_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800828 int action),
829
Jeff Mahoneybc074522016-06-09 17:27:55 -0400830 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800831);
832
833DEFINE_EVENT(btrfs_delayed_tree_ref, run_delayed_tree_ref,
834
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600835 TP_PROTO(const struct btrfs_fs_info *fs_info,
836 const struct btrfs_delayed_ref_node *ref,
837 const struct btrfs_delayed_tree_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800838 int action),
839
Jeff Mahoneybc074522016-06-09 17:27:55 -0400840 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800841);
842
843DECLARE_EVENT_CLASS(btrfs_delayed_data_ref,
liubo1abe9b82011-03-24 11:18:59 +0000844
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600845 TP_PROTO(const struct btrfs_fs_info *fs_info,
846 const struct btrfs_delayed_ref_node *ref,
847 const struct btrfs_delayed_data_ref *full_ref,
liubo1abe9b82011-03-24 11:18:59 +0000848 int action),
849
Jeff Mahoneybc074522016-06-09 17:27:55 -0400850 TP_ARGS(fs_info, ref, full_ref, action),
liubo1abe9b82011-03-24 11:18:59 +0000851
Jeff Mahoneybc074522016-06-09 17:27:55 -0400852 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000853 __field( u64, bytenr )
854 __field( u64, num_bytes )
855 __field( int, action )
856 __field( u64, parent )
857 __field( u64, ref_root )
858 __field( u64, owner )
859 __field( u64, offset )
860 __field( int, type )
Liu Bodea7d762012-09-07 20:01:27 -0600861 __field( u64, seq )
liubo1abe9b82011-03-24 11:18:59 +0000862 ),
863
Jeff Mahoneybc074522016-06-09 17:27:55 -0400864 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000865 __entry->bytenr = ref->bytenr;
866 __entry->num_bytes = ref->num_bytes;
867 __entry->action = action;
868 __entry->parent = full_ref->parent;
869 __entry->ref_root = full_ref->root;
870 __entry->owner = full_ref->objectid;
871 __entry->offset = full_ref->offset;
872 __entry->type = ref->type;
Liu Bodea7d762012-09-07 20:01:27 -0600873 __entry->seq = ref->seq;
liubo1abe9b82011-03-24 11:18:59 +0000874 ),
875
David Sterba562a7a02017-01-06 15:51:36 +0100876 TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
877 "parent=%llu(%s) ref_root=%llu(%s) owner=%llu "
878 "offset=%llu type=%s seq=%llu",
David Sterba8eec8462018-04-03 21:15:11 +0200879 __entry->bytenr,
880 __entry->num_bytes,
liubo1abe9b82011-03-24 11:18:59 +0000881 show_ref_action(__entry->action),
882 show_root_type(__entry->parent),
883 show_root_type(__entry->ref_root),
David Sterba8eec8462018-04-03 21:15:11 +0200884 __entry->owner,
885 __entry->offset,
Liu Bodea7d762012-09-07 20:01:27 -0600886 show_ref_type(__entry->type),
David Sterba8eec8462018-04-03 21:15:11 +0200887 __entry->seq)
liubo1abe9b82011-03-24 11:18:59 +0000888);
889
Liu Bo599c75e2013-07-16 19:03:36 +0800890DEFINE_EVENT(btrfs_delayed_data_ref, add_delayed_data_ref,
891
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600892 TP_PROTO(const struct btrfs_fs_info *fs_info,
893 const struct btrfs_delayed_ref_node *ref,
894 const struct btrfs_delayed_data_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800895 int action),
896
Jeff Mahoneybc074522016-06-09 17:27:55 -0400897 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800898);
899
900DEFINE_EVENT(btrfs_delayed_data_ref, run_delayed_data_ref,
901
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600902 TP_PROTO(const struct btrfs_fs_info *fs_info,
903 const struct btrfs_delayed_ref_node *ref,
904 const struct btrfs_delayed_data_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800905 int action),
906
Jeff Mahoneybc074522016-06-09 17:27:55 -0400907 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800908);
909
910DECLARE_EVENT_CLASS(btrfs_delayed_ref_head,
liubo1abe9b82011-03-24 11:18:59 +0000911
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600912 TP_PROTO(const struct btrfs_fs_info *fs_info,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600913 const struct btrfs_delayed_ref_head *head_ref,
liubo1abe9b82011-03-24 11:18:59 +0000914 int action),
915
Josef Bacikd2788502017-09-29 15:43:57 -0400916 TP_ARGS(fs_info, head_ref, action),
liubo1abe9b82011-03-24 11:18:59 +0000917
Jeff Mahoneybc074522016-06-09 17:27:55 -0400918 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000919 __field( u64, bytenr )
920 __field( u64, num_bytes )
921 __field( int, action )
922 __field( int, is_data )
923 ),
924
Jeff Mahoneybc074522016-06-09 17:27:55 -0400925 TP_fast_assign_btrfs(fs_info,
Josef Bacikd2788502017-09-29 15:43:57 -0400926 __entry->bytenr = head_ref->bytenr;
927 __entry->num_bytes = head_ref->num_bytes;
liubo1abe9b82011-03-24 11:18:59 +0000928 __entry->action = action;
929 __entry->is_data = head_ref->is_data;
930 ),
931
David Sterba562a7a02017-01-06 15:51:36 +0100932 TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s is_data=%d",
David Sterba8eec8462018-04-03 21:15:11 +0200933 __entry->bytenr,
934 __entry->num_bytes,
liubo1abe9b82011-03-24 11:18:59 +0000935 show_ref_action(__entry->action),
936 __entry->is_data)
937);
938
Liu Bo599c75e2013-07-16 19:03:36 +0800939DEFINE_EVENT(btrfs_delayed_ref_head, add_delayed_ref_head,
940
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600941 TP_PROTO(const struct btrfs_fs_info *fs_info,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600942 const struct btrfs_delayed_ref_head *head_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800943 int action),
944
Josef Bacikd2788502017-09-29 15:43:57 -0400945 TP_ARGS(fs_info, head_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800946);
947
948DEFINE_EVENT(btrfs_delayed_ref_head, run_delayed_ref_head,
949
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600950 TP_PROTO(const struct btrfs_fs_info *fs_info,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600951 const struct btrfs_delayed_ref_head *head_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800952 int action),
953
Josef Bacikd2788502017-09-29 15:43:57 -0400954 TP_ARGS(fs_info, head_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800955);
956
liubo1abe9b82011-03-24 11:18:59 +0000957#define show_chunk_type(type) \
958 __print_flags(type, "|", \
959 { BTRFS_BLOCK_GROUP_DATA, "DATA" }, \
960 { BTRFS_BLOCK_GROUP_SYSTEM, "SYSTEM"}, \
961 { BTRFS_BLOCK_GROUP_METADATA, "METADATA"}, \
962 { BTRFS_BLOCK_GROUP_RAID0, "RAID0" }, \
963 { BTRFS_BLOCK_GROUP_RAID1, "RAID1" }, \
964 { BTRFS_BLOCK_GROUP_DUP, "DUP" }, \
Liu Boe112e2b2013-05-26 13:50:28 +0000965 { BTRFS_BLOCK_GROUP_RAID10, "RAID10"}, \
966 { BTRFS_BLOCK_GROUP_RAID5, "RAID5" }, \
967 { BTRFS_BLOCK_GROUP_RAID6, "RAID6" })
liubo1abe9b82011-03-24 11:18:59 +0000968
969DECLARE_EVENT_CLASS(btrfs__chunk,
970
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600971 TP_PROTO(const struct btrfs_fs_info *fs_info,
972 const struct map_lookup *map, u64 offset, u64 size),
liubo1abe9b82011-03-24 11:18:59 +0000973
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400974 TP_ARGS(fs_info, map, offset, size),
liubo1abe9b82011-03-24 11:18:59 +0000975
Jeff Mahoneybc074522016-06-09 17:27:55 -0400976 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000977 __field( int, num_stripes )
978 __field( u64, type )
979 __field( int, sub_stripes )
980 __field( u64, offset )
981 __field( u64, size )
982 __field( u64, root_objectid )
983 ),
984
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400985 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000986 __entry->num_stripes = map->num_stripes;
987 __entry->type = map->type;
988 __entry->sub_stripes = map->sub_stripes;
989 __entry->offset = offset;
990 __entry->size = size;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400991 __entry->root_objectid = fs_info->chunk_root->root_key.objectid;
liubo1abe9b82011-03-24 11:18:59 +0000992 ),
993
David Sterba562a7a02017-01-06 15:51:36 +0100994 TP_printk_btrfs("root=%llu(%s) offset=%llu size=%llu "
995 "num_stripes=%d sub_stripes=%d type=%s",
liubo1abe9b82011-03-24 11:18:59 +0000996 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200997 __entry->offset,
998 __entry->size,
liubo1abe9b82011-03-24 11:18:59 +0000999 __entry->num_stripes, __entry->sub_stripes,
1000 show_chunk_type(__entry->type))
1001);
1002
1003DEFINE_EVENT(btrfs__chunk, btrfs_chunk_alloc,
1004
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001005 TP_PROTO(const struct btrfs_fs_info *fs_info,
1006 const struct map_lookup *map, u64 offset, u64 size),
liubo1abe9b82011-03-24 11:18:59 +00001007
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04001008 TP_ARGS(fs_info, map, offset, size)
liubo1abe9b82011-03-24 11:18:59 +00001009);
1010
1011DEFINE_EVENT(btrfs__chunk, btrfs_chunk_free,
1012
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001013 TP_PROTO(const struct btrfs_fs_info *fs_info,
1014 const struct map_lookup *map, u64 offset, u64 size),
liubo1abe9b82011-03-24 11:18:59 +00001015
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04001016 TP_ARGS(fs_info, map, offset, size)
liubo1abe9b82011-03-24 11:18:59 +00001017);
1018
1019TRACE_EVENT(btrfs_cow_block,
1020
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001021 TP_PROTO(const struct btrfs_root *root, const struct extent_buffer *buf,
1022 const struct extent_buffer *cow),
liubo1abe9b82011-03-24 11:18:59 +00001023
1024 TP_ARGS(root, buf, cow),
1025
Jeff Mahoneybc074522016-06-09 17:27:55 -04001026 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +00001027 __field( u64, root_objectid )
1028 __field( u64, buf_start )
1029 __field( int, refs )
1030 __field( u64, cow_start )
1031 __field( int, buf_level )
1032 __field( int, cow_level )
1033 ),
1034
Jeff Mahoneybc074522016-06-09 17:27:55 -04001035 TP_fast_assign_btrfs(root->fs_info,
liubo1abe9b82011-03-24 11:18:59 +00001036 __entry->root_objectid = root->root_key.objectid;
1037 __entry->buf_start = buf->start;
1038 __entry->refs = atomic_read(&buf->refs);
1039 __entry->cow_start = cow->start;
1040 __entry->buf_level = btrfs_header_level(buf);
1041 __entry->cow_level = btrfs_header_level(cow);
1042 ),
1043
David Sterba562a7a02017-01-06 15:51:36 +01001044 TP_printk_btrfs("root=%llu(%s) refs=%d orig_buf=%llu "
1045 "(orig_level=%d) cow_buf=%llu (cow_level=%d)",
liubo1abe9b82011-03-24 11:18:59 +00001046 show_root_type(__entry->root_objectid),
1047 __entry->refs,
David Sterba8eec8462018-04-03 21:15:11 +02001048 __entry->buf_start,
liubo1abe9b82011-03-24 11:18:59 +00001049 __entry->buf_level,
David Sterba8eec8462018-04-03 21:15:11 +02001050 __entry->cow_start,
liubo1abe9b82011-03-24 11:18:59 +00001051 __entry->cow_level)
1052);
1053
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05001054TRACE_EVENT(btrfs_space_reservation,
1055
David Sterba1d2e7c72019-10-17 13:28:57 +02001056 TP_PROTO(const struct btrfs_fs_info *fs_info, const char *type, u64 val,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05001057 u64 bytes, int reserve),
1058
1059 TP_ARGS(fs_info, type, val, bytes, reserve),
1060
Jeff Mahoneybc074522016-06-09 17:27:55 -04001061 TP_STRUCT__entry_btrfs(
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05001062 __string( type, type )
1063 __field( u64, val )
1064 __field( u64, bytes )
1065 __field( int, reserve )
1066 ),
1067
Jeff Mahoneybc074522016-06-09 17:27:55 -04001068 TP_fast_assign_btrfs(fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05001069 __assign_str(type, type);
1070 __entry->val = val;
1071 __entry->bytes = bytes;
1072 __entry->reserve = reserve;
1073 ),
1074
David Sterba5439c7f2018-04-03 21:05:37 +02001075 TP_printk_btrfs("%s: %llu %s %llu", __get_str(type), __entry->val,
Jeff Mahoneybc074522016-06-09 17:27:55 -04001076 __entry->reserve ? "reserve" : "release",
1077 __entry->bytes)
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05001078);
1079
Josef Bacikf376df22016-03-25 13:25:56 -04001080TRACE_EVENT(btrfs_trigger_flush,
1081
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001082 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 bytes,
David Sterba1d2e7c72019-10-17 13:28:57 +02001083 int flush, const char *reason),
Josef Bacikf376df22016-03-25 13:25:56 -04001084
1085 TP_ARGS(fs_info, flags, bytes, flush, reason),
1086
David Sterba2e63e622018-04-03 21:34:06 +02001087 TP_STRUCT__entry_btrfs(
Josef Bacikf376df22016-03-25 13:25:56 -04001088 __field( u64, flags )
1089 __field( u64, bytes )
1090 __field( int, flush )
1091 __string( reason, reason )
1092 ),
1093
David Sterba2e63e622018-04-03 21:34:06 +02001094 TP_fast_assign_btrfs(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04001095 __entry->flags = flags;
1096 __entry->bytes = bytes;
1097 __entry->flush = flush;
1098 __assign_str(reason, reason)
1099 ),
1100
David Sterba2e63e622018-04-03 21:34:06 +02001101 TP_printk_btrfs("%s: flush=%d(%s) flags=%llu(%s) bytes=%llu",
1102 __get_str(reason), __entry->flush,
Nikolay Borisov45e31862020-06-19 15:24:46 +03001103 __print_symbolic(__entry->flush, FLUSH_ACTIONS),
David Sterba8eec8462018-04-03 21:15:11 +02001104 __entry->flags,
Josef Bacikf376df22016-03-25 13:25:56 -04001105 __print_flags((unsigned long)__entry->flags, "|",
1106 BTRFS_GROUP_FLAGS),
David Sterba8eec8462018-04-03 21:15:11 +02001107 __entry->bytes)
Josef Bacikf376df22016-03-25 13:25:56 -04001108);
1109
Josef Bacikf376df22016-03-25 13:25:56 -04001110
1111TRACE_EVENT(btrfs_flush_space,
1112
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001113 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03001114 int state, int ret),
Josef Bacikf376df22016-03-25 13:25:56 -04001115
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03001116 TP_ARGS(fs_info, flags, num_bytes, state, ret),
Josef Bacikf376df22016-03-25 13:25:56 -04001117
David Sterba2e63e622018-04-03 21:34:06 +02001118 TP_STRUCT__entry_btrfs(
Josef Bacikf376df22016-03-25 13:25:56 -04001119 __field( u64, flags )
1120 __field( u64, num_bytes )
Josef Bacikf376df22016-03-25 13:25:56 -04001121 __field( int, state )
1122 __field( int, ret )
1123 ),
1124
David Sterba2e63e622018-04-03 21:34:06 +02001125 TP_fast_assign_btrfs(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04001126 __entry->flags = flags;
1127 __entry->num_bytes = num_bytes;
Josef Bacikf376df22016-03-25 13:25:56 -04001128 __entry->state = state;
1129 __entry->ret = ret;
1130 ),
1131
David Sterba2e63e622018-04-03 21:34:06 +02001132 TP_printk_btrfs("state=%d(%s) flags=%llu(%s) num_bytes=%llu ret=%d",
1133 __entry->state,
Nikolay Borisovf0cdd152020-06-19 15:24:51 +03001134 __print_symbolic(__entry->state, FLUSH_STATES),
David Sterba8eec8462018-04-03 21:15:11 +02001135 __entry->flags,
Josef Bacikf376df22016-03-25 13:25:56 -04001136 __print_flags((unsigned long)__entry->flags, "|",
1137 BTRFS_GROUP_FLAGS),
David Sterba8eec8462018-04-03 21:15:11 +02001138 __entry->num_bytes, __entry->ret)
Josef Bacikf376df22016-03-25 13:25:56 -04001139);
1140
liubo1abe9b82011-03-24 11:18:59 +00001141DECLARE_EVENT_CLASS(btrfs__reserved_extent,
1142
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001143 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
liubo1abe9b82011-03-24 11:18:59 +00001144
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001145 TP_ARGS(fs_info, start, len),
liubo1abe9b82011-03-24 11:18:59 +00001146
Jeff Mahoneybc074522016-06-09 17:27:55 -04001147 TP_STRUCT__entry_btrfs(
Jeff Mahoneybc074522016-06-09 17:27:55 -04001148 __field( u64, start )
1149 __field( u64, len )
liubo1abe9b82011-03-24 11:18:59 +00001150 ),
1151
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001152 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +00001153 __entry->start = start;
1154 __entry->len = len;
1155 ),
1156
David Sterba562a7a02017-01-06 15:51:36 +01001157 TP_printk_btrfs("root=%llu(%s) start=%llu len=%llu",
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001158 show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
David Sterba8eec8462018-04-03 21:15:11 +02001159 __entry->start,
1160 __entry->len)
liubo1abe9b82011-03-24 11:18:59 +00001161);
1162
1163DEFINE_EVENT(btrfs__reserved_extent, btrfs_reserved_extent_alloc,
1164
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001165 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
liubo1abe9b82011-03-24 11:18:59 +00001166
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001167 TP_ARGS(fs_info, start, len)
liubo1abe9b82011-03-24 11:18:59 +00001168);
1169
1170DEFINE_EVENT(btrfs__reserved_extent, btrfs_reserved_extent_free,
1171
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001172 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
liubo1abe9b82011-03-24 11:18:59 +00001173
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001174 TP_ARGS(fs_info, start, len)
liubo1abe9b82011-03-24 11:18:59 +00001175);
1176
Josef Bacik3f7de032011-11-10 08:29:20 -05001177TRACE_EVENT(find_free_extent,
1178
Qu Wenruo437490f2020-07-28 09:42:49 +08001179 TP_PROTO(const struct btrfs_root *root, u64 num_bytes,
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001180 u64 empty_size, u64 data),
Josef Bacik3f7de032011-11-10 08:29:20 -05001181
Qu Wenruo437490f2020-07-28 09:42:49 +08001182 TP_ARGS(root, num_bytes, empty_size, data),
Josef Bacik3f7de032011-11-10 08:29:20 -05001183
Jeff Mahoneybc074522016-06-09 17:27:55 -04001184 TP_STRUCT__entry_btrfs(
Qu Wenruo437490f2020-07-28 09:42:49 +08001185 __field( u64, root_objectid )
Josef Bacik3f7de032011-11-10 08:29:20 -05001186 __field( u64, num_bytes )
1187 __field( u64, empty_size )
1188 __field( u64, data )
1189 ),
1190
Qu Wenruo437490f2020-07-28 09:42:49 +08001191 TP_fast_assign_btrfs(root->fs_info,
1192 __entry->root_objectid = root->root_key.objectid;
Josef Bacik3f7de032011-11-10 08:29:20 -05001193 __entry->num_bytes = num_bytes;
1194 __entry->empty_size = empty_size;
1195 __entry->data = data;
1196 ),
1197
David Sterba5439c7f2018-04-03 21:05:37 +02001198 TP_printk_btrfs("root=%llu(%s) len=%llu empty_size=%llu flags=%llu(%s)",
Qu Wenruo437490f2020-07-28 09:42:49 +08001199 show_root_type(__entry->root_objectid),
Josef Bacik3f7de032011-11-10 08:29:20 -05001200 __entry->num_bytes, __entry->empty_size, __entry->data,
1201 __print_flags((unsigned long)__entry->data, "|",
1202 BTRFS_GROUP_FLAGS))
1203);
1204
1205DECLARE_EVENT_CLASS(btrfs__reserve_extent,
1206
David Sterba32da53862019-10-29 19:20:18 +01001207 TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001208 u64 len),
1209
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001210 TP_ARGS(block_group, start, len),
Josef Bacik3f7de032011-11-10 08:29:20 -05001211
Jeff Mahoneybc074522016-06-09 17:27:55 -04001212 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001213 __field( u64, bg_objectid )
1214 __field( u64, flags )
1215 __field( u64, start )
1216 __field( u64, len )
1217 ),
1218
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001219 TP_fast_assign_btrfs(block_group->fs_info,
David Sterbab3470b52019-10-23 18:48:22 +02001220 __entry->bg_objectid = block_group->start;
Josef Bacik3f7de032011-11-10 08:29:20 -05001221 __entry->flags = block_group->flags;
1222 __entry->start = start;
1223 __entry->len = len;
1224 ),
1225
David Sterba5439c7f2018-04-03 21:05:37 +02001226 TP_printk_btrfs("root=%llu(%s) block_group=%llu flags=%llu(%s) "
1227 "start=%llu len=%llu",
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001228 show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
1229 __entry->bg_objectid,
Josef Bacik3f7de032011-11-10 08:29:20 -05001230 __entry->flags, __print_flags((unsigned long)__entry->flags,
1231 "|", BTRFS_GROUP_FLAGS),
1232 __entry->start, __entry->len)
1233);
1234
1235DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent,
1236
David Sterba32da53862019-10-29 19:20:18 +01001237 TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001238 u64 len),
1239
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001240 TP_ARGS(block_group, start, len)
Josef Bacik3f7de032011-11-10 08:29:20 -05001241);
1242
1243DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
1244
David Sterba32da53862019-10-29 19:20:18 +01001245 TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001246 u64 len),
1247
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001248 TP_ARGS(block_group, start, len)
Josef Bacik3f7de032011-11-10 08:29:20 -05001249);
1250
1251TRACE_EVENT(btrfs_find_cluster,
1252
David Sterba32da53862019-10-29 19:20:18 +01001253 TP_PROTO(const struct btrfs_block_group *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001254 u64 bytes, u64 empty_size, u64 min_bytes),
1255
1256 TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
1257
Jeff Mahoneybc074522016-06-09 17:27:55 -04001258 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001259 __field( u64, bg_objectid )
1260 __field( u64, flags )
1261 __field( u64, start )
1262 __field( u64, bytes )
1263 __field( u64, empty_size )
1264 __field( u64, min_bytes )
1265 ),
1266
Jeff Mahoneybc074522016-06-09 17:27:55 -04001267 TP_fast_assign_btrfs(block_group->fs_info,
David Sterbab3470b52019-10-23 18:48:22 +02001268 __entry->bg_objectid = block_group->start;
Josef Bacik3f7de032011-11-10 08:29:20 -05001269 __entry->flags = block_group->flags;
1270 __entry->start = start;
1271 __entry->bytes = bytes;
1272 __entry->empty_size = empty_size;
1273 __entry->min_bytes = min_bytes;
1274 ),
1275
David Sterba5439c7f2018-04-03 21:05:37 +02001276 TP_printk_btrfs("block_group=%llu flags=%llu(%s) start=%llu len=%llu "
1277 "empty_size=%llu min_bytes=%llu", __entry->bg_objectid,
Josef Bacik3f7de032011-11-10 08:29:20 -05001278 __entry->flags,
1279 __print_flags((unsigned long)__entry->flags, "|",
1280 BTRFS_GROUP_FLAGS), __entry->start,
1281 __entry->bytes, __entry->empty_size, __entry->min_bytes)
1282);
1283
1284TRACE_EVENT(btrfs_failed_cluster_setup,
1285
David Sterba32da53862019-10-29 19:20:18 +01001286 TP_PROTO(const struct btrfs_block_group *block_group),
Josef Bacik3f7de032011-11-10 08:29:20 -05001287
1288 TP_ARGS(block_group),
1289
Jeff Mahoneybc074522016-06-09 17:27:55 -04001290 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001291 __field( u64, bg_objectid )
1292 ),
1293
Jeff Mahoneybc074522016-06-09 17:27:55 -04001294 TP_fast_assign_btrfs(block_group->fs_info,
David Sterbab3470b52019-10-23 18:48:22 +02001295 __entry->bg_objectid = block_group->start;
Josef Bacik3f7de032011-11-10 08:29:20 -05001296 ),
1297
David Sterba5439c7f2018-04-03 21:05:37 +02001298 TP_printk_btrfs("block_group=%llu", __entry->bg_objectid)
Josef Bacik3f7de032011-11-10 08:29:20 -05001299);
1300
1301TRACE_EVENT(btrfs_setup_cluster,
1302
David Sterba32da53862019-10-29 19:20:18 +01001303 TP_PROTO(const struct btrfs_block_group *block_group,
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001304 const struct btrfs_free_cluster *cluster,
1305 u64 size, int bitmap),
Josef Bacik3f7de032011-11-10 08:29:20 -05001306
1307 TP_ARGS(block_group, cluster, size, bitmap),
1308
Jeff Mahoneybc074522016-06-09 17:27:55 -04001309 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001310 __field( u64, bg_objectid )
1311 __field( u64, flags )
1312 __field( u64, start )
1313 __field( u64, max_size )
1314 __field( u64, size )
1315 __field( int, bitmap )
1316 ),
1317
Jeff Mahoneybc074522016-06-09 17:27:55 -04001318 TP_fast_assign_btrfs(block_group->fs_info,
David Sterbab3470b52019-10-23 18:48:22 +02001319 __entry->bg_objectid = block_group->start;
Josef Bacik3f7de032011-11-10 08:29:20 -05001320 __entry->flags = block_group->flags;
1321 __entry->start = cluster->window_start;
1322 __entry->max_size = cluster->max_size;
1323 __entry->size = size;
1324 __entry->bitmap = bitmap;
1325 ),
1326
David Sterba5439c7f2018-04-03 21:05:37 +02001327 TP_printk_btrfs("block_group=%llu flags=%llu(%s) window_start=%llu "
1328 "size=%llu max_size=%llu bitmap=%d",
Josef Bacik3f7de032011-11-10 08:29:20 -05001329 __entry->bg_objectid,
1330 __entry->flags,
1331 __print_flags((unsigned long)__entry->flags, "|",
1332 BTRFS_GROUP_FLAGS), __entry->start,
1333 __entry->size, __entry->max_size, __entry->bitmap)
1334);
1335
Jeff Mahoney143bede2012-03-01 14:56:26 +01001336struct extent_state;
1337TRACE_EVENT(alloc_extent_state,
1338
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001339 TP_PROTO(const struct extent_state *state,
1340 gfp_t mask, unsigned long IP),
Jeff Mahoney143bede2012-03-01 14:56:26 +01001341
1342 TP_ARGS(state, mask, IP),
1343
1344 TP_STRUCT__entry(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001345 __field(const struct extent_state *, state)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001346 __field(gfp_t, mask)
David Sterba94c3f6c2019-10-17 13:28:55 +02001347 __field(const void*, ip)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001348 ),
1349
1350 TP_fast_assign(
1351 __entry->state = state,
1352 __entry->mask = mask,
David Sterba94c3f6c2019-10-17 13:28:55 +02001353 __entry->ip = (const void *)IP
Jeff Mahoney143bede2012-03-01 14:56:26 +01001354 ),
1355
David Sterba562a7a02017-01-06 15:51:36 +01001356 TP_printk("state=%p mask=%s caller=%pS", __entry->state,
David Sterba94c3f6c2019-10-17 13:28:55 +02001357 show_gfp_flags(__entry->mask), __entry->ip)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001358);
1359
1360TRACE_EVENT(free_extent_state,
1361
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001362 TP_PROTO(const struct extent_state *state, unsigned long IP),
Jeff Mahoney143bede2012-03-01 14:56:26 +01001363
1364 TP_ARGS(state, IP),
1365
1366 TP_STRUCT__entry(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001367 __field(const struct extent_state *, state)
David Sterba94c3f6c2019-10-17 13:28:55 +02001368 __field(const void*, ip)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001369 ),
1370
1371 TP_fast_assign(
1372 __entry->state = state,
David Sterba94c3f6c2019-10-17 13:28:55 +02001373 __entry->ip = (const void *)IP
Jeff Mahoney143bede2012-03-01 14:56:26 +01001374 ),
1375
David Sterba94c3f6c2019-10-17 13:28:55 +02001376 TP_printk("state=%p caller=%pS", __entry->state, __entry->ip)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001377);
1378
Qu Wenruo52483bc2014-03-06 04:19:50 +00001379DECLARE_EVENT_CLASS(btrfs__work,
1380
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001381 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001382
1383 TP_ARGS(work),
1384
Jeff Mahoneybc074522016-06-09 17:27:55 -04001385 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001386 __field( const void *, work )
1387 __field( const void *, wq )
1388 __field( const void *, func )
1389 __field( const void *, ordered_func )
1390 __field( const void *, ordered_free )
1391 __field( const void *, normal_work )
Qu Wenruo52483bc2014-03-06 04:19:50 +00001392 ),
1393
Jeff Mahoneybc074522016-06-09 17:27:55 -04001394 TP_fast_assign_btrfs(btrfs_work_owner(work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001395 __entry->work = work;
1396 __entry->wq = work->wq;
1397 __entry->func = work->func;
1398 __entry->ordered_func = work->ordered_func;
1399 __entry->ordered_free = work->ordered_free;
Liu Bob38a6252014-08-12 16:33:17 +08001400 __entry->normal_work = &work->normal_work;
Qu Wenruo52483bc2014-03-06 04:19:50 +00001401 ),
1402
Sakari Ailusd75f7732019-03-25 21:32:28 +02001403 TP_printk_btrfs("work=%p (normal_work=%p) wq=%p func=%ps ordered_func=%p "
David Sterba562a7a02017-01-06 15:51:36 +01001404 "ordered_free=%p",
Liu Bob38a6252014-08-12 16:33:17 +08001405 __entry->work, __entry->normal_work, __entry->wq,
1406 __entry->func, __entry->ordered_func, __entry->ordered_free)
Qu Wenruo52483bc2014-03-06 04:19:50 +00001407);
1408
David Sterbaac0c7cf2017-01-06 14:12:51 +01001409/*
Omar Sandovalc9eb55d2019-09-16 11:30:58 -07001410 * For situations when the work is freed, we pass fs_info and a tag that matches
1411 * the address of the work structure so it can be paired with the scheduling
1412 * event. DO NOT add anything here that dereferences wtag.
David Sterbaac0c7cf2017-01-06 14:12:51 +01001413 */
Qu Wenruo52483bc2014-03-06 04:19:50 +00001414DECLARE_EVENT_CLASS(btrfs__work__done,
1415
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001416 TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001417
David Sterbaac0c7cf2017-01-06 14:12:51 +01001418 TP_ARGS(fs_info, wtag),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001419
Jeff Mahoneybc074522016-06-09 17:27:55 -04001420 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001421 __field( const void *, wtag )
Qu Wenruo52483bc2014-03-06 04:19:50 +00001422 ),
1423
David Sterbaac0c7cf2017-01-06 14:12:51 +01001424 TP_fast_assign_btrfs(fs_info,
1425 __entry->wtag = wtag;
Qu Wenruo52483bc2014-03-06 04:19:50 +00001426 ),
1427
David Sterbaac0c7cf2017-01-06 14:12:51 +01001428 TP_printk_btrfs("work->%p", __entry->wtag)
Qu Wenruo52483bc2014-03-06 04:19:50 +00001429);
1430
1431DEFINE_EVENT(btrfs__work, btrfs_work_queued,
1432
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001433 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001434
1435 TP_ARGS(work)
1436);
1437
1438DEFINE_EVENT(btrfs__work, btrfs_work_sched,
1439
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001440 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001441
1442 TP_ARGS(work)
1443);
1444
Qu Wenruo52483bc2014-03-06 04:19:50 +00001445DEFINE_EVENT(btrfs__work__done, btrfs_all_work_done,
1446
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001447 TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001448
David Sterbaac0c7cf2017-01-06 14:12:51 +01001449 TP_ARGS(fs_info, wtag)
Qu Wenruo52483bc2014-03-06 04:19:50 +00001450);
1451
1452DEFINE_EVENT(btrfs__work, btrfs_ordered_sched,
1453
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001454 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001455
1456 TP_ARGS(work)
1457);
1458
Qu Wenruoc3a46892014-03-12 08:05:33 +00001459DECLARE_EVENT_CLASS(btrfs__workqueue,
1460
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001461 TP_PROTO(const struct __btrfs_workqueue *wq,
1462 const char *name, int high),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001463
1464 TP_ARGS(wq, name, high),
1465
Jeff Mahoneybc074522016-06-09 17:27:55 -04001466 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001467 __field( const void *, wq )
Qu Wenruoc3a46892014-03-12 08:05:33 +00001468 __string( name, name )
1469 __field( int , high )
1470 ),
1471
Jeff Mahoneybc074522016-06-09 17:27:55 -04001472 TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001473 __entry->wq = wq;
1474 __assign_str(name, name);
1475 __entry->high = high;
1476 ),
1477
David Sterba562a7a02017-01-06 15:51:36 +01001478 TP_printk_btrfs("name=%s%s wq=%p", __get_str(name),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001479 __print_flags(__entry->high, "",
1480 {(WQ_HIGHPRI), "-high"}),
1481 __entry->wq)
1482);
1483
1484DEFINE_EVENT(btrfs__workqueue, btrfs_workqueue_alloc,
1485
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001486 TP_PROTO(const struct __btrfs_workqueue *wq,
1487 const char *name, int high),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001488
1489 TP_ARGS(wq, name, high)
1490);
1491
1492DECLARE_EVENT_CLASS(btrfs__workqueue_done,
1493
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001494 TP_PROTO(const struct __btrfs_workqueue *wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001495
1496 TP_ARGS(wq),
1497
Jeff Mahoneybc074522016-06-09 17:27:55 -04001498 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001499 __field( const void *, wq )
Qu Wenruoc3a46892014-03-12 08:05:33 +00001500 ),
1501
Jeff Mahoneybc074522016-06-09 17:27:55 -04001502 TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001503 __entry->wq = wq;
1504 ),
1505
Jeff Mahoneybc074522016-06-09 17:27:55 -04001506 TP_printk_btrfs("wq=%p", __entry->wq)
Qu Wenruoc3a46892014-03-12 08:05:33 +00001507);
1508
1509DEFINE_EVENT(btrfs__workqueue_done, btrfs_workqueue_destroy,
1510
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001511 TP_PROTO(const struct __btrfs_workqueue *wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001512
1513 TP_ARGS(wq)
1514);
Qu Wenruo52483bc2014-03-06 04:19:50 +00001515
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001516#define BTRFS_QGROUP_OPERATIONS \
1517 { QGROUP_RESERVE, "reserve" }, \
1518 { QGROUP_RELEASE, "release" }, \
1519 { QGROUP_FREE, "free" }
1520
1521DECLARE_EVENT_CLASS(btrfs__qgroup_rsv_data,
1522
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001523 TP_PROTO(const struct inode *inode, u64 start, u64 len,
1524 u64 reserved, int op),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001525
1526 TP_ARGS(inode, start, len, reserved, op),
1527
Jeff Mahoneybc074522016-06-09 17:27:55 -04001528 TP_STRUCT__entry_btrfs(
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001529 __field( u64, rootid )
David Sterbaf8f8e182018-04-03 20:57:21 +02001530 __field( u64, ino )
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001531 __field( u64, start )
1532 __field( u64, len )
1533 __field( u64, reserved )
1534 __field( int, op )
1535 ),
1536
Jeff Mahoneybc074522016-06-09 17:27:55 -04001537 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001538 __entry->rootid =
1539 BTRFS_I(inode)->root->root_key.objectid;
David Sterbaf8f8e182018-04-03 20:57:21 +02001540 __entry->ino = btrfs_ino(BTRFS_I(inode));
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001541 __entry->start = start;
1542 __entry->len = len;
1543 __entry->reserved = reserved;
1544 __entry->op = op;
1545 ),
1546
David Sterbaf8f8e182018-04-03 20:57:21 +02001547 TP_printk_btrfs("root=%llu ino=%llu start=%llu len=%llu reserved=%llu op=%s",
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001548 __entry->rootid, __entry->ino, __entry->start, __entry->len,
1549 __entry->reserved,
1550 __print_flags((unsigned long)__entry->op, "",
1551 BTRFS_QGROUP_OPERATIONS)
1552 )
1553);
1554
1555DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_reserve_data,
1556
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001557 TP_PROTO(const struct inode *inode, u64 start, u64 len,
1558 u64 reserved, int op),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001559
1560 TP_ARGS(inode, start, len, reserved, op)
1561);
1562
1563DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_release_data,
1564
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001565 TP_PROTO(const struct inode *inode, u64 start, u64 len,
1566 u64 reserved, int op),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001567
1568 TP_ARGS(inode, start, len, reserved, op)
1569);
1570
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001571DECLARE_EVENT_CLASS(btrfs_qgroup_extent,
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001572 TP_PROTO(const struct btrfs_fs_info *fs_info,
1573 const struct btrfs_qgroup_extent_record *rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001574
Jeff Mahoneybc074522016-06-09 17:27:55 -04001575 TP_ARGS(fs_info, rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001576
Jeff Mahoneybc074522016-06-09 17:27:55 -04001577 TP_STRUCT__entry_btrfs(
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001578 __field( u64, bytenr )
1579 __field( u64, num_bytes )
1580 ),
1581
Jeff Mahoneybc074522016-06-09 17:27:55 -04001582 TP_fast_assign_btrfs(fs_info,
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001583 __entry->bytenr = rec->bytenr,
1584 __entry->num_bytes = rec->num_bytes;
1585 ),
1586
David Sterba562a7a02017-01-06 15:51:36 +01001587 TP_printk_btrfs("bytenr=%llu num_bytes=%llu",
David Sterba94c3f6c2019-10-17 13:28:55 +02001588 __entry->bytenr, __entry->num_bytes)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001589);
1590
1591DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_account_extents,
1592
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001593 TP_PROTO(const struct btrfs_fs_info *fs_info,
1594 const struct btrfs_qgroup_extent_record *rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001595
Jeff Mahoneybc074522016-06-09 17:27:55 -04001596 TP_ARGS(fs_info, rec)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001597);
1598
Qu Wenruo50b3e042016-10-18 09:31:27 +08001599DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_trace_extent,
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001600
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001601 TP_PROTO(const struct btrfs_fs_info *fs_info,
1602 const struct btrfs_qgroup_extent_record *rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001603
Jeff Mahoneybc074522016-06-09 17:27:55 -04001604 TP_ARGS(fs_info, rec)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001605);
1606
Qu Wenruoc337e7b2018-09-27 14:42:29 +08001607TRACE_EVENT(qgroup_num_dirty_extents,
1608
1609 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 transid,
1610 u64 num_dirty_extents),
1611
1612 TP_ARGS(fs_info, transid, num_dirty_extents),
1613
1614 TP_STRUCT__entry_btrfs(
1615 __field( u64, transid )
1616 __field( u64, num_dirty_extents )
1617 ),
1618
1619 TP_fast_assign_btrfs(fs_info,
1620 __entry->transid = transid;
1621 __entry->num_dirty_extents = num_dirty_extents;
1622 ),
1623
1624 TP_printk_btrfs("transid=%llu num_dirty_extents=%llu",
1625 __entry->transid, __entry->num_dirty_extents)
1626);
1627
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001628TRACE_EVENT(btrfs_qgroup_account_extent,
1629
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08001630 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 transid, u64 bytenr,
Jeff Mahoneybc074522016-06-09 17:27:55 -04001631 u64 num_bytes, u64 nr_old_roots, u64 nr_new_roots),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001632
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08001633 TP_ARGS(fs_info, transid, bytenr, num_bytes, nr_old_roots,
1634 nr_new_roots),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001635
Jeff Mahoneybc074522016-06-09 17:27:55 -04001636 TP_STRUCT__entry_btrfs(
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08001637 __field( u64, transid )
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001638 __field( u64, bytenr )
1639 __field( u64, num_bytes )
1640 __field( u64, nr_old_roots )
1641 __field( u64, nr_new_roots )
1642 ),
1643
Jeff Mahoneybc074522016-06-09 17:27:55 -04001644 TP_fast_assign_btrfs(fs_info,
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08001645 __entry->transid = transid;
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001646 __entry->bytenr = bytenr;
1647 __entry->num_bytes = num_bytes;
1648 __entry->nr_old_roots = nr_old_roots;
1649 __entry->nr_new_roots = nr_new_roots;
1650 ),
1651
Qu Wenruoc9f6f3c2018-05-03 09:59:02 +08001652 TP_printk_btrfs(
1653"transid=%llu bytenr=%llu num_bytes=%llu nr_old_roots=%llu nr_new_roots=%llu",
1654 __entry->transid,
1655 __entry->bytenr,
1656 __entry->num_bytes,
1657 __entry->nr_old_roots,
1658 __entry->nr_new_roots)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001659);
1660
1661TRACE_EVENT(qgroup_update_counters,
1662
Qu Wenruo8b317902018-04-30 15:04:44 +08001663 TP_PROTO(const struct btrfs_fs_info *fs_info,
David Sterba1d2e7c72019-10-17 13:28:57 +02001664 const struct btrfs_qgroup *qgroup,
Jeff Mahoneybc074522016-06-09 17:27:55 -04001665 u64 cur_old_count, u64 cur_new_count),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001666
Qu Wenruo8b317902018-04-30 15:04:44 +08001667 TP_ARGS(fs_info, qgroup, cur_old_count, cur_new_count),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001668
Jeff Mahoneybc074522016-06-09 17:27:55 -04001669 TP_STRUCT__entry_btrfs(
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001670 __field( u64, qgid )
Qu Wenruo8b317902018-04-30 15:04:44 +08001671 __field( u64, old_rfer )
1672 __field( u64, old_excl )
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001673 __field( u64, cur_old_count )
1674 __field( u64, cur_new_count )
1675 ),
1676
Jeff Mahoneybc074522016-06-09 17:27:55 -04001677 TP_fast_assign_btrfs(fs_info,
Qu Wenruo8b317902018-04-30 15:04:44 +08001678 __entry->qgid = qgroup->qgroupid;
1679 __entry->old_rfer = qgroup->rfer;
1680 __entry->old_excl = qgroup->excl;
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001681 __entry->cur_old_count = cur_old_count;
1682 __entry->cur_new_count = cur_new_count;
1683 ),
1684
Qu Wenruo8b317902018-04-30 15:04:44 +08001685 TP_printk_btrfs("qgid=%llu old_rfer=%llu old_excl=%llu cur_old_count=%llu cur_new_count=%llu",
1686 __entry->qgid, __entry->old_rfer, __entry->old_excl,
1687 __entry->cur_old_count, __entry->cur_new_count)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001688);
1689
Qu Wenruo3159fe72017-03-13 15:52:08 +08001690TRACE_EVENT(qgroup_update_reserve,
1691
1692 TP_PROTO(struct btrfs_fs_info *fs_info, struct btrfs_qgroup *qgroup,
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001693 s64 diff, int type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001694
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001695 TP_ARGS(fs_info, qgroup, diff, type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001696
1697 TP_STRUCT__entry_btrfs(
1698 __field( u64, qgid )
1699 __field( u64, cur_reserved )
1700 __field( s64, diff )
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001701 __field( int, type )
Qu Wenruo3159fe72017-03-13 15:52:08 +08001702 ),
1703
1704 TP_fast_assign_btrfs(fs_info,
1705 __entry->qgid = qgroup->qgroupid;
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001706 __entry->cur_reserved = qgroup->rsv.values[type];
Qu Wenruo3159fe72017-03-13 15:52:08 +08001707 __entry->diff = diff;
Qu Wenruo1b2442b2019-10-17 10:38:37 +08001708 __entry->type = type;
Qu Wenruo3159fe72017-03-13 15:52:08 +08001709 ),
1710
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001711 TP_printk_btrfs("qgid=%llu type=%s cur_reserved=%llu diff=%lld",
Nikolay Borisov1cb1f0b2020-06-19 15:24:49 +03001712 __entry->qgid, __print_symbolic(__entry->type, QGROUP_RSV_TYPES),
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001713 __entry->cur_reserved, __entry->diff)
Qu Wenruo3159fe72017-03-13 15:52:08 +08001714);
1715
1716TRACE_EVENT(qgroup_meta_reserve,
1717
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001718 TP_PROTO(struct btrfs_root *root, s64 diff, int type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001719
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001720 TP_ARGS(root, diff, type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001721
1722 TP_STRUCT__entry_btrfs(
1723 __field( u64, refroot )
1724 __field( s64, diff )
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001725 __field( int, type )
Qu Wenruo3159fe72017-03-13 15:52:08 +08001726 ),
1727
1728 TP_fast_assign_btrfs(root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001729 __entry->refroot = root->root_key.objectid;
Qu Wenruo3159fe72017-03-13 15:52:08 +08001730 __entry->diff = diff;
Qu Wenruo1b2442b2019-10-17 10:38:37 +08001731 __entry->type = type;
Qu Wenruo3159fe72017-03-13 15:52:08 +08001732 ),
1733
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001734 TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
1735 show_root_type(__entry->refroot),
Nikolay Borisov1cb1f0b2020-06-19 15:24:49 +03001736 __print_symbolic(__entry->type, QGROUP_RSV_TYPES), __entry->diff)
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001737);
1738
1739TRACE_EVENT(qgroup_meta_convert,
1740
1741 TP_PROTO(struct btrfs_root *root, s64 diff),
1742
1743 TP_ARGS(root, diff),
1744
1745 TP_STRUCT__entry_btrfs(
1746 __field( u64, refroot )
1747 __field( s64, diff )
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001748 ),
1749
1750 TP_fast_assign_btrfs(root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001751 __entry->refroot = root->root_key.objectid;
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001752 __entry->diff = diff;
1753 ),
1754
1755 TP_printk_btrfs("refroot=%llu(%s) type=%s->%s diff=%lld",
1756 show_root_type(__entry->refroot),
Nikolay Borisov1cb1f0b2020-06-19 15:24:49 +03001757 __print_symbolic(BTRFS_QGROUP_RSV_META_PREALLOC, QGROUP_RSV_TYPES),
1758 __print_symbolic(BTRFS_QGROUP_RSV_META_PERTRANS, QGROUP_RSV_TYPES),
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001759 __entry->diff)
1760);
1761
1762TRACE_EVENT(qgroup_meta_free_all_pertrans,
1763
1764 TP_PROTO(struct btrfs_root *root),
1765
1766 TP_ARGS(root),
1767
1768 TP_STRUCT__entry_btrfs(
1769 __field( u64, refroot )
1770 __field( s64, diff )
1771 __field( int, type )
1772 ),
1773
1774 TP_fast_assign_btrfs(root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001775 __entry->refroot = root->root_key.objectid;
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001776 spin_lock(&root->qgroup_meta_rsv_lock);
1777 __entry->diff = -(s64)root->qgroup_meta_rsv_pertrans;
1778 spin_unlock(&root->qgroup_meta_rsv_lock);
1779 __entry->type = BTRFS_QGROUP_RSV_META_PERTRANS;
1780 ),
1781
1782 TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
1783 show_root_type(__entry->refroot),
Nikolay Borisov1cb1f0b2020-06-19 15:24:49 +03001784 __print_symbolic(__entry->type, QGROUP_RSV_TYPES), __entry->diff)
Qu Wenruo3159fe72017-03-13 15:52:08 +08001785);
1786
Jeff Mahoney00142752017-07-12 16:20:08 -06001787DECLARE_EVENT_CLASS(btrfs__prelim_ref,
1788 TP_PROTO(const struct btrfs_fs_info *fs_info,
1789 const struct prelim_ref *oldref,
1790 const struct prelim_ref *newref, u64 tree_size),
1791 TP_ARGS(fs_info, newref, oldref, tree_size),
1792
1793 TP_STRUCT__entry_btrfs(
1794 __field( u64, root_id )
1795 __field( u64, objectid )
1796 __field( u8, type )
1797 __field( u64, offset )
1798 __field( int, level )
1799 __field( int, old_count )
1800 __field( u64, parent )
1801 __field( u64, bytenr )
1802 __field( int, mod_count )
1803 __field( u64, tree_size )
1804 ),
1805
1806 TP_fast_assign_btrfs(fs_info,
1807 __entry->root_id = oldref->root_id;
1808 __entry->objectid = oldref->key_for_search.objectid;
1809 __entry->type = oldref->key_for_search.type;
1810 __entry->offset = oldref->key_for_search.offset;
1811 __entry->level = oldref->level;
1812 __entry->old_count = oldref->count;
1813 __entry->parent = oldref->parent;
1814 __entry->bytenr = oldref->wanted_disk_byte;
1815 __entry->mod_count = newref ? newref->count : 0;
1816 __entry->tree_size = tree_size;
1817 ),
1818
1819 TP_printk_btrfs("root_id=%llu key=[%llu,%u,%llu] level=%d count=[%d+%d=%d] parent=%llu wanted_disk_byte=%llu nodes=%llu",
David Sterba8eec8462018-04-03 21:15:11 +02001820 __entry->root_id,
1821 __entry->objectid, __entry->type,
1822 __entry->offset, __entry->level,
Jeff Mahoney00142752017-07-12 16:20:08 -06001823 __entry->old_count, __entry->mod_count,
1824 __entry->old_count + __entry->mod_count,
David Sterba8eec8462018-04-03 21:15:11 +02001825 __entry->parent,
1826 __entry->bytenr,
1827 __entry->tree_size)
Jeff Mahoney00142752017-07-12 16:20:08 -06001828);
1829
1830DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_merge,
1831 TP_PROTO(const struct btrfs_fs_info *fs_info,
1832 const struct prelim_ref *oldref,
1833 const struct prelim_ref *newref, u64 tree_size),
1834 TP_ARGS(fs_info, oldref, newref, tree_size)
1835);
1836
1837DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_insert,
1838 TP_PROTO(const struct btrfs_fs_info *fs_info,
1839 const struct prelim_ref *oldref,
1840 const struct prelim_ref *newref, u64 tree_size),
1841 TP_ARGS(fs_info, oldref, newref, tree_size)
1842);
1843
Josef Bacikdd48d402017-10-19 14:15:56 -04001844TRACE_EVENT(btrfs_inode_mod_outstanding_extents,
David Sterba1d2e7c72019-10-17 13:28:57 +02001845 TP_PROTO(const struct btrfs_root *root, u64 ino, int mod),
Josef Bacikdd48d402017-10-19 14:15:56 -04001846
1847 TP_ARGS(root, ino, mod),
1848
1849 TP_STRUCT__entry_btrfs(
1850 __field( u64, root_objectid )
1851 __field( u64, ino )
1852 __field( int, mod )
1853 ),
1854
1855 TP_fast_assign_btrfs(root->fs_info,
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09001856 __entry->root_objectid = root->root_key.objectid;
Josef Bacikdd48d402017-10-19 14:15:56 -04001857 __entry->ino = ino;
1858 __entry->mod = mod;
1859 ),
1860
1861 TP_printk_btrfs("root=%llu(%s) ino=%llu mod=%d",
1862 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +02001863 __entry->ino, __entry->mod)
Josef Bacikdd48d402017-10-19 14:15:56 -04001864);
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001865
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +08001866DECLARE_EVENT_CLASS(btrfs__block_group,
David Sterba32da53862019-10-29 19:20:18 +01001867 TP_PROTO(const struct btrfs_block_group *bg_cache),
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +08001868
1869 TP_ARGS(bg_cache),
1870
1871 TP_STRUCT__entry_btrfs(
1872 __field( u64, bytenr )
1873 __field( u64, len )
1874 __field( u64, used )
1875 __field( u64, flags )
1876 ),
1877
1878 TP_fast_assign_btrfs(bg_cache->fs_info,
David Sterbab3470b52019-10-23 18:48:22 +02001879 __entry->bytenr = bg_cache->start,
1880 __entry->len = bg_cache->length,
David Sterbabf38be62019-10-23 18:48:11 +02001881 __entry->used = bg_cache->used;
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +08001882 __entry->flags = bg_cache->flags;
1883 ),
1884
1885 TP_printk_btrfs("bg bytenr=%llu len=%llu used=%llu flags=%llu(%s)",
1886 __entry->bytenr, __entry->len, __entry->used, __entry->flags,
1887 __print_flags(__entry->flags, "|", BTRFS_GROUP_FLAGS))
1888);
1889
1890DEFINE_EVENT(btrfs__block_group, btrfs_remove_block_group,
David Sterba32da53862019-10-29 19:20:18 +01001891 TP_PROTO(const struct btrfs_block_group *bg_cache),
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +08001892
1893 TP_ARGS(bg_cache)
1894);
1895
1896DEFINE_EVENT(btrfs__block_group, btrfs_add_unused_block_group,
David Sterba32da53862019-10-29 19:20:18 +01001897 TP_PROTO(const struct btrfs_block_group *bg_cache),
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +08001898
1899 TP_ARGS(bg_cache)
1900);
1901
1902DEFINE_EVENT(btrfs__block_group, btrfs_skip_unused_block_group,
David Sterba32da53862019-10-29 19:20:18 +01001903 TP_PROTO(const struct btrfs_block_group *bg_cache),
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +08001904
1905 TP_ARGS(bg_cache)
1906);
1907
Qu Wenruoa1d19842019-03-01 10:48:00 +08001908TRACE_EVENT(btrfs_set_extent_bit,
1909 TP_PROTO(const struct extent_io_tree *tree,
1910 u64 start, u64 len, unsigned set_bits),
1911
1912 TP_ARGS(tree, start, len, set_bits),
1913
1914 TP_STRUCT__entry_btrfs(
1915 __field( unsigned, owner )
1916 __field( u64, ino )
1917 __field( u64, rootid )
1918 __field( u64, start )
1919 __field( u64, len )
1920 __field( unsigned, set_bits)
1921 ),
1922
1923 TP_fast_assign_btrfs(tree->fs_info,
1924 __entry->owner = tree->owner;
1925 if (tree->private_data) {
David Sterba1d2e7c72019-10-17 13:28:57 +02001926 const struct inode *inode = tree->private_data;
Qu Wenruoa1d19842019-03-01 10:48:00 +08001927
1928 __entry->ino = btrfs_ino(BTRFS_I(inode));
1929 __entry->rootid =
1930 BTRFS_I(inode)->root->root_key.objectid;
1931 } else {
1932 __entry->ino = 0;
1933 __entry->rootid = 0;
1934 }
1935 __entry->start = start;
1936 __entry->len = len;
1937 __entry->set_bits = set_bits;
1938 ),
1939
1940 TP_printk_btrfs(
1941 "io_tree=%s ino=%llu root=%llu start=%llu len=%llu set_bits=%s",
Nikolay Borisovc92bb302020-06-19 15:24:50 +03001942 __print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
Qu Wenruoa1d19842019-03-01 10:48:00 +08001943 __entry->rootid, __entry->start, __entry->len,
1944 __print_flags(__entry->set_bits, "|", EXTENT_FLAGS))
1945);
1946
1947TRACE_EVENT(btrfs_clear_extent_bit,
1948 TP_PROTO(const struct extent_io_tree *tree,
1949 u64 start, u64 len, unsigned clear_bits),
1950
1951 TP_ARGS(tree, start, len, clear_bits),
1952
1953 TP_STRUCT__entry_btrfs(
1954 __field( unsigned, owner )
1955 __field( u64, ino )
1956 __field( u64, rootid )
1957 __field( u64, start )
1958 __field( u64, len )
1959 __field( unsigned, clear_bits)
1960 ),
1961
1962 TP_fast_assign_btrfs(tree->fs_info,
1963 __entry->owner = tree->owner;
1964 if (tree->private_data) {
David Sterba1d2e7c72019-10-17 13:28:57 +02001965 const struct inode *inode = tree->private_data;
Qu Wenruoa1d19842019-03-01 10:48:00 +08001966
1967 __entry->ino = btrfs_ino(BTRFS_I(inode));
1968 __entry->rootid =
1969 BTRFS_I(inode)->root->root_key.objectid;
1970 } else {
1971 __entry->ino = 0;
1972 __entry->rootid = 0;
1973 }
1974 __entry->start = start;
1975 __entry->len = len;
1976 __entry->clear_bits = clear_bits;
1977 ),
1978
1979 TP_printk_btrfs(
1980 "io_tree=%s ino=%llu root=%llu start=%llu len=%llu clear_bits=%s",
Nikolay Borisovc92bb302020-06-19 15:24:50 +03001981 __print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
Qu Wenruoa1d19842019-03-01 10:48:00 +08001982 __entry->rootid, __entry->start, __entry->len,
1983 __print_flags(__entry->clear_bits, "|", EXTENT_FLAGS))
1984);
1985
1986TRACE_EVENT(btrfs_convert_extent_bit,
1987 TP_PROTO(const struct extent_io_tree *tree,
1988 u64 start, u64 len, unsigned set_bits, unsigned clear_bits),
1989
1990 TP_ARGS(tree, start, len, set_bits, clear_bits),
1991
1992 TP_STRUCT__entry_btrfs(
1993 __field( unsigned, owner )
1994 __field( u64, ino )
1995 __field( u64, rootid )
1996 __field( u64, start )
1997 __field( u64, len )
1998 __field( unsigned, set_bits)
1999 __field( unsigned, clear_bits)
2000 ),
2001
2002 TP_fast_assign_btrfs(tree->fs_info,
2003 __entry->owner = tree->owner;
2004 if (tree->private_data) {
David Sterba1d2e7c72019-10-17 13:28:57 +02002005 const struct inode *inode = tree->private_data;
Qu Wenruoa1d19842019-03-01 10:48:00 +08002006
2007 __entry->ino = btrfs_ino(BTRFS_I(inode));
2008 __entry->rootid =
2009 BTRFS_I(inode)->root->root_key.objectid;
2010 } else {
2011 __entry->ino = 0;
2012 __entry->rootid = 0;
2013 }
2014 __entry->start = start;
2015 __entry->len = len;
2016 __entry->set_bits = set_bits;
2017 __entry->clear_bits = clear_bits;
2018 ),
2019
2020 TP_printk_btrfs(
2021"io_tree=%s ino=%llu root=%llu start=%llu len=%llu set_bits=%s clear_bits=%s",
Nikolay Borisovc92bb302020-06-19 15:24:50 +03002022 __print_symbolic(__entry->owner, IO_TREE_OWNER), __entry->ino,
Qu Wenruoa1d19842019-03-01 10:48:00 +08002023 __entry->rootid, __entry->start, __entry->len,
2024 __print_flags(__entry->set_bits , "|", EXTENT_FLAGS),
2025 __print_flags(__entry->clear_bits, "|", EXTENT_FLAGS))
2026);
2027
Qu Wenruo34e73cc2019-04-15 21:15:24 +08002028DECLARE_EVENT_CLASS(btrfs_sleep_tree_lock,
2029 TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
2030
2031 TP_ARGS(eb, start_ns),
2032
2033 TP_STRUCT__entry_btrfs(
2034 __field( u64, block )
2035 __field( u64, generation )
2036 __field( u64, start_ns )
2037 __field( u64, end_ns )
2038 __field( u64, diff_ns )
2039 __field( u64, owner )
2040 __field( int, is_log_tree )
2041 ),
2042
2043 TP_fast_assign_btrfs(eb->fs_info,
2044 __entry->block = eb->start;
2045 __entry->generation = btrfs_header_generation(eb);
2046 __entry->start_ns = start_ns;
2047 __entry->end_ns = ktime_get_ns();
2048 __entry->diff_ns = __entry->end_ns - start_ns;
2049 __entry->owner = btrfs_header_owner(eb);
2050 __entry->is_log_tree = (eb->log_index >= 0);
2051 ),
2052
2053 TP_printk_btrfs(
2054"block=%llu generation=%llu start_ns=%llu end_ns=%llu diff_ns=%llu owner=%llu is_log_tree=%d",
2055 __entry->block, __entry->generation,
2056 __entry->start_ns, __entry->end_ns, __entry->diff_ns,
2057 __entry->owner, __entry->is_log_tree)
2058);
2059
2060DEFINE_EVENT(btrfs_sleep_tree_lock, btrfs_tree_read_lock,
2061 TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
2062
2063 TP_ARGS(eb, start_ns)
2064);
2065
2066DEFINE_EVENT(btrfs_sleep_tree_lock, btrfs_tree_lock,
2067 TP_PROTO(const struct extent_buffer *eb, u64 start_ns),
2068
2069 TP_ARGS(eb, start_ns)
2070);
2071
Qu Wenruo31aab402019-04-15 21:15:25 +08002072DECLARE_EVENT_CLASS(btrfs_locking_events,
2073 TP_PROTO(const struct extent_buffer *eb),
2074
2075 TP_ARGS(eb),
2076
2077 TP_STRUCT__entry_btrfs(
2078 __field( u64, block )
2079 __field( u64, generation )
2080 __field( u64, owner )
2081 __field( int, is_log_tree )
2082 ),
2083
2084 TP_fast_assign_btrfs(eb->fs_info,
2085 __entry->block = eb->start;
2086 __entry->generation = btrfs_header_generation(eb);
2087 __entry->owner = btrfs_header_owner(eb);
2088 __entry->is_log_tree = (eb->log_index >= 0);
2089 ),
2090
2091 TP_printk_btrfs("block=%llu generation=%llu owner=%llu is_log_tree=%d",
2092 __entry->block, __entry->generation,
2093 __entry->owner, __entry->is_log_tree)
2094);
2095
2096#define DEFINE_BTRFS_LOCK_EVENT(name) \
2097DEFINE_EVENT(btrfs_locking_events, name, \
2098 TP_PROTO(const struct extent_buffer *eb), \
2099 \
2100 TP_ARGS(eb) \
2101)
2102
2103DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_unlock);
2104DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_unlock);
2105DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_unlock_blocking);
2106DEFINE_BTRFS_LOCK_EVENT(btrfs_set_lock_blocking_read);
2107DEFINE_BTRFS_LOCK_EVENT(btrfs_set_lock_blocking_write);
Qu Wenruo31aab402019-04-15 21:15:25 +08002108DEFINE_BTRFS_LOCK_EVENT(btrfs_try_tree_read_lock);
2109DEFINE_BTRFS_LOCK_EVENT(btrfs_try_tree_write_lock);
2110DEFINE_BTRFS_LOCK_EVENT(btrfs_tree_read_lock_atomic);
2111
Qu Wenruo480b9b42019-04-29 14:03:33 +08002112DECLARE_EVENT_CLASS(btrfs__space_info_update,
2113
David Sterba1d2e7c72019-10-17 13:28:57 +02002114 TP_PROTO(const struct btrfs_fs_info *fs_info,
2115 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
Qu Wenruo480b9b42019-04-29 14:03:33 +08002116
2117 TP_ARGS(fs_info, sinfo, old, diff),
2118
2119 TP_STRUCT__entry_btrfs(
2120 __field( u64, type )
2121 __field( u64, old )
2122 __field( s64, diff )
2123 ),
2124
2125 TP_fast_assign_btrfs(fs_info,
2126 __entry->type = sinfo->flags;
2127 __entry->old = old;
2128 __entry->diff = diff;
2129 ),
2130 TP_printk_btrfs("type=%s old=%llu diff=%lld",
2131 __print_flags(__entry->type, "|", BTRFS_GROUP_FLAGS),
2132 __entry->old, __entry->diff)
2133);
2134
2135DEFINE_EVENT(btrfs__space_info_update, update_bytes_may_use,
2136
David Sterba1d2e7c72019-10-17 13:28:57 +02002137 TP_PROTO(const struct btrfs_fs_info *fs_info,
2138 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
Qu Wenruo480b9b42019-04-29 14:03:33 +08002139
2140 TP_ARGS(fs_info, sinfo, old, diff)
2141);
2142
2143DEFINE_EVENT(btrfs__space_info_update, update_bytes_pinned,
2144
David Sterba1d2e7c72019-10-17 13:28:57 +02002145 TP_PROTO(const struct btrfs_fs_info *fs_info,
2146 const struct btrfs_space_info *sinfo, u64 old, s64 diff),
Qu Wenruo480b9b42019-04-29 14:03:33 +08002147
2148 TP_ARGS(fs_info, sinfo, old, diff)
2149);
2150
liubo1abe9b82011-03-24 11:18:59 +00002151#endif /* _TRACE_BTRFS_H */
2152
2153/* This part must be outside protection */
2154#include <trace/define_trace.h>