blob: 5af2479e9b163f3103ffc4fafbb413a314487e12 [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;
Josef Bacik3f7de032011-11-10 08:29:20 -050022struct btrfs_block_group_cache;
23struct 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;
Jeff Mahoney00142752017-07-12 16:20:08 -060030struct prelim_ref;
liubo1abe9b82011-03-24 11:18:59 +000031
Anand Jain012e513e2017-08-30 22:36:48 +080032TRACE_DEFINE_ENUM(FLUSH_DELAYED_ITEMS_NR);
33TRACE_DEFINE_ENUM(FLUSH_DELAYED_ITEMS);
34TRACE_DEFINE_ENUM(FLUSH_DELALLOC);
35TRACE_DEFINE_ENUM(FLUSH_DELALLOC_WAIT);
36TRACE_DEFINE_ENUM(ALLOC_CHUNK);
37TRACE_DEFINE_ENUM(COMMIT_TRANS);
38
liubo1abe9b82011-03-24 11:18:59 +000039#define show_ref_type(type) \
40 __print_symbolic(type, \
41 { BTRFS_TREE_BLOCK_REF_KEY, "TREE_BLOCK_REF" }, \
42 { BTRFS_EXTENT_DATA_REF_KEY, "EXTENT_DATA_REF" }, \
43 { BTRFS_EXTENT_REF_V0_KEY, "EXTENT_REF_V0" }, \
44 { BTRFS_SHARED_BLOCK_REF_KEY, "SHARED_BLOCK_REF" }, \
45 { BTRFS_SHARED_DATA_REF_KEY, "SHARED_DATA_REF" })
46
47#define __show_root_type(obj) \
liubo7f34b742011-04-19 09:35:31 +080048 __print_symbolic_u64(obj, \
liubo1abe9b82011-03-24 11:18:59 +000049 { BTRFS_ROOT_TREE_OBJECTID, "ROOT_TREE" }, \
50 { BTRFS_EXTENT_TREE_OBJECTID, "EXTENT_TREE" }, \
51 { BTRFS_CHUNK_TREE_OBJECTID, "CHUNK_TREE" }, \
52 { BTRFS_DEV_TREE_OBJECTID, "DEV_TREE" }, \
53 { BTRFS_FS_TREE_OBJECTID, "FS_TREE" }, \
54 { BTRFS_ROOT_TREE_DIR_OBJECTID, "ROOT_TREE_DIR" }, \
55 { BTRFS_CSUM_TREE_OBJECTID, "CSUM_TREE" }, \
56 { BTRFS_TREE_LOG_OBJECTID, "TREE_LOG" }, \
Liu Boe112e2b2013-05-26 13:50:28 +000057 { BTRFS_QUOTA_TREE_OBJECTID, "QUOTA_TREE" }, \
liubo1abe9b82011-03-24 11:18:59 +000058 { BTRFS_TREE_RELOC_OBJECTID, "TREE_RELOC" }, \
Omar Sandoval208acb82015-09-29 20:50:34 -070059 { BTRFS_UUID_TREE_OBJECTID, "UUID_TREE" }, \
60 { BTRFS_FREE_SPACE_TREE_OBJECTID, "FREE_SPACE_TREE" }, \
liubo1abe9b82011-03-24 11:18:59 +000061 { BTRFS_DATA_RELOC_TREE_OBJECTID, "DATA_RELOC_TREE" })
62
63#define show_root_type(obj) \
64 obj, ((obj >= BTRFS_DATA_RELOC_TREE_OBJECTID) || \
Liu Bofb57dc82012-11-30 11:24:22 +000065 (obj >= BTRFS_ROOT_TREE_OBJECTID && \
Liu Boe112e2b2013-05-26 13:50:28 +000066 obj <= BTRFS_QUOTA_TREE_OBJECTID)) ? __show_root_type(obj) : "-"
liubo1abe9b82011-03-24 11:18:59 +000067
Liu Bo09ed2f12017-03-10 11:09:48 -080068#define show_fi_type(type) \
69 __print_symbolic(type, \
70 { BTRFS_FILE_EXTENT_INLINE, "INLINE" }, \
71 { BTRFS_FILE_EXTENT_REG, "REG" }, \
72 { BTRFS_FILE_EXTENT_PREALLOC, "PREALLOC"})
73
Qu Wenruo64ee4e72017-12-12 15:34:27 +080074#define show_qgroup_rsv_type(type) \
75 __print_symbolic(type, \
Qu Wenruo733e03a2017-12-12 15:34:29 +080076 { BTRFS_QGROUP_RSV_DATA, "DATA" }, \
77 { BTRFS_QGROUP_RSV_META_PERTRANS, "META_PERTRANS" }, \
78 { BTRFS_QGROUP_RSV_META_PREALLOC, "META_PREALLOC" })
Qu Wenruo64ee4e72017-12-12 15:34:27 +080079
Josef Bacik3f7de032011-11-10 08:29:20 -050080#define BTRFS_GROUP_FLAGS \
Liu Boe112e2b2013-05-26 13:50:28 +000081 { BTRFS_BLOCK_GROUP_DATA, "DATA"}, \
82 { BTRFS_BLOCK_GROUP_SYSTEM, "SYSTEM"}, \
83 { BTRFS_BLOCK_GROUP_METADATA, "METADATA"}, \
84 { BTRFS_BLOCK_GROUP_RAID0, "RAID0"}, \
85 { BTRFS_BLOCK_GROUP_RAID1, "RAID1"}, \
86 { BTRFS_BLOCK_GROUP_DUP, "DUP"}, \
87 { BTRFS_BLOCK_GROUP_RAID10, "RAID10"}, \
88 { BTRFS_BLOCK_GROUP_RAID5, "RAID5"}, \
89 { BTRFS_BLOCK_GROUP_RAID6, "RAID6"}
Josef Bacik3f7de032011-11-10 08:29:20 -050090
Anand Jainb94417e2017-08-13 11:58:30 +080091#define BTRFS_FSID_SIZE 16
92#define TP_STRUCT__entry_fsid __array(u8, fsid, BTRFS_FSID_SIZE)
Jeff Mahoneybc074522016-06-09 17:27:55 -040093
94#define TP_fast_assign_fsid(fs_info) \
Anand Jainb94417e2017-08-13 11:58:30 +080095 memcpy(__entry->fsid, fs_info->fsid, BTRFS_FSID_SIZE)
Jeff Mahoneybc074522016-06-09 17:27:55 -040096
97#define TP_STRUCT__entry_btrfs(args...) \
98 TP_STRUCT__entry( \
99 TP_STRUCT__entry_fsid \
100 args)
101#define TP_fast_assign_btrfs(fs_info, args...) \
102 TP_fast_assign( \
103 TP_fast_assign_fsid(fs_info); \
104 args)
105#define TP_printk_btrfs(fmt, args...) \
106 TP_printk("%pU: " fmt, __entry->fsid, args)
Josef Bacik8c2a3ca2012-01-10 10:31:31 -0500107
liubo1abe9b82011-03-24 11:18:59 +0000108TRACE_EVENT(btrfs_transaction_commit,
109
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600110 TP_PROTO(const struct btrfs_root *root),
liubo1abe9b82011-03-24 11:18:59 +0000111
112 TP_ARGS(root),
113
Jeff Mahoneybc074522016-06-09 17:27:55 -0400114 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000115 __field( u64, generation )
116 __field( u64, root_objectid )
117 ),
118
Jeff Mahoneybc074522016-06-09 17:27:55 -0400119 TP_fast_assign_btrfs(root->fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000120 __entry->generation = root->fs_info->generation;
121 __entry->root_objectid = root->root_key.objectid;
122 ),
123
David Sterba79bcb712018-04-03 21:21:17 +0200124 TP_printk_btrfs("root=%llu(%s) gen=%llu",
liubo1abe9b82011-03-24 11:18:59 +0000125 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200126 __entry->generation)
liubo1abe9b82011-03-24 11:18:59 +0000127);
128
129DECLARE_EVENT_CLASS(btrfs__inode,
130
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600131 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000132
133 TP_ARGS(inode),
134
Jeff Mahoneybc074522016-06-09 17:27:55 -0400135 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200136 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000137 __field( blkcnt_t, blocks )
138 __field( u64, disk_i_size )
139 __field( u64, generation )
140 __field( u64, last_trans )
141 __field( u64, logged_trans )
142 __field( u64, root_objectid )
143 ),
144
Jeff Mahoneybc074522016-06-09 17:27:55 -0400145 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200146 __entry->ino = btrfs_ino(BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +0000147 __entry->blocks = inode->i_blocks;
148 __entry->disk_i_size = BTRFS_I(inode)->disk_i_size;
149 __entry->generation = BTRFS_I(inode)->generation;
150 __entry->last_trans = BTRFS_I(inode)->last_trans;
151 __entry->logged_trans = BTRFS_I(inode)->logged_trans;
152 __entry->root_objectid =
153 BTRFS_I(inode)->root->root_key.objectid;
154 ),
155
David Sterbaf8f8e182018-04-03 20:57:21 +0200156 TP_printk_btrfs("root=%llu(%s) gen=%llu ino=%llu blocks=%llu "
David Sterba562a7a02017-01-06 15:51:36 +0100157 "disk_i_size=%llu last_trans=%llu logged_trans=%llu",
liubo1abe9b82011-03-24 11:18:59 +0000158 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200159 __entry->generation,
160 __entry->ino,
liubo1abe9b82011-03-24 11:18:59 +0000161 (unsigned long long)__entry->blocks,
David Sterba8eec8462018-04-03 21:15:11 +0200162 __entry->disk_i_size,
163 __entry->last_trans,
164 __entry->logged_trans)
liubo1abe9b82011-03-24 11:18:59 +0000165);
166
167DEFINE_EVENT(btrfs__inode, btrfs_inode_new,
168
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600169 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000170
171 TP_ARGS(inode)
172);
173
174DEFINE_EVENT(btrfs__inode, btrfs_inode_request,
175
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600176 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000177
178 TP_ARGS(inode)
179);
180
181DEFINE_EVENT(btrfs__inode, btrfs_inode_evict,
182
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600183 TP_PROTO(const struct inode *inode),
liubo1abe9b82011-03-24 11:18:59 +0000184
185 TP_ARGS(inode)
186);
187
188#define __show_map_type(type) \
liubo7f34b742011-04-19 09:35:31 +0800189 __print_symbolic_u64(type, \
liubo1abe9b82011-03-24 11:18:59 +0000190 { EXTENT_MAP_LAST_BYTE, "LAST_BYTE" }, \
191 { EXTENT_MAP_HOLE, "HOLE" }, \
192 { EXTENT_MAP_INLINE, "INLINE" }, \
193 { EXTENT_MAP_DELALLOC, "DELALLOC" })
194
195#define show_map_type(type) \
196 type, (type >= EXTENT_MAP_LAST_BYTE) ? "-" : __show_map_type(type)
197
198#define show_map_flags(flag) \
199 __print_flags(flag, "|", \
Liu Bo254a2d12014-09-17 21:36:41 +0800200 { (1 << EXTENT_FLAG_PINNED), "PINNED" },\
201 { (1 << EXTENT_FLAG_COMPRESSED), "COMPRESSED" },\
Liu Bo254a2d12014-09-17 21:36:41 +0800202 { (1 << EXTENT_FLAG_PREALLOC), "PREALLOC" },\
203 { (1 << EXTENT_FLAG_LOGGING), "LOGGING" },\
204 { (1 << EXTENT_FLAG_FILLING), "FILLING" },\
205 { (1 << EXTENT_FLAG_FS_MAPPING), "FS_MAPPING" })
liubo1abe9b82011-03-24 11:18:59 +0000206
Steven Rostedt4cd85872013-11-14 22:57:29 -0500207TRACE_EVENT_CONDITION(btrfs_get_extent,
liubo1abe9b82011-03-24 11:18:59 +0000208
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600209 TP_PROTO(const struct btrfs_root *root, const struct btrfs_inode *inode,
210 const struct extent_map *map),
liubo1abe9b82011-03-24 11:18:59 +0000211
Liu Bo92a1bf72016-11-17 15:00:50 -0800212 TP_ARGS(root, inode, map),
liubo1abe9b82011-03-24 11:18:59 +0000213
Steven Rostedt4cd85872013-11-14 22:57:29 -0500214 TP_CONDITION(map),
215
Jeff Mahoneybc074522016-06-09 17:27:55 -0400216 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000217 __field( u64, root_objectid )
Liu Bo92a1bf72016-11-17 15:00:50 -0800218 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000219 __field( u64, start )
220 __field( u64, len )
221 __field( u64, orig_start )
222 __field( u64, block_start )
223 __field( u64, block_len )
224 __field( unsigned long, flags )
225 __field( int, refs )
226 __field( unsigned int, compress_type )
227 ),
228
Jeff Mahoneybc074522016-06-09 17:27:55 -0400229 TP_fast_assign_btrfs(root->fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000230 __entry->root_objectid = root->root_key.objectid;
Liu Bo92a1bf72016-11-17 15:00:50 -0800231 __entry->ino = btrfs_ino(inode);
232 __entry->start = map->start;
liubo1abe9b82011-03-24 11:18:59 +0000233 __entry->len = map->len;
234 __entry->orig_start = map->orig_start;
235 __entry->block_start = map->block_start;
236 __entry->block_len = map->block_len;
237 __entry->flags = map->flags;
Elena Reshetova490b54d2017-03-03 10:55:12 +0200238 __entry->refs = refcount_read(&map->refs);
liubo1abe9b82011-03-24 11:18:59 +0000239 __entry->compress_type = map->compress_type;
240 ),
241
David Sterba562a7a02017-01-06 15:51:36 +0100242 TP_printk_btrfs("root=%llu(%s) ino=%llu start=%llu len=%llu "
243 "orig_start=%llu block_start=%llu(%s) "
244 "block_len=%llu flags=%s refs=%u "
245 "compress_type=%u",
liubo1abe9b82011-03-24 11:18:59 +0000246 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200247 __entry->ino,
248 __entry->start,
249 __entry->len,
250 __entry->orig_start,
liubo1abe9b82011-03-24 11:18:59 +0000251 show_map_type(__entry->block_start),
David Sterba8eec8462018-04-03 21:15:11 +0200252 __entry->block_len,
liubo1abe9b82011-03-24 11:18:59 +0000253 show_map_flags(__entry->flags),
254 __entry->refs, __entry->compress_type)
255);
256
Liu Bo393da912018-01-05 12:51:16 -0700257TRACE_EVENT(btrfs_handle_em_exist,
258
David Sterbaf46b24c2018-04-03 21:45:57 +0200259 TP_PROTO(struct btrfs_fs_info *fs_info,
260 const struct extent_map *existing, const struct extent_map *map,
261 u64 start, u64 len),
Liu Bo393da912018-01-05 12:51:16 -0700262
David Sterbaf46b24c2018-04-03 21:45:57 +0200263 TP_ARGS(fs_info, existing, map, start, len),
Liu Bo393da912018-01-05 12:51:16 -0700264
David Sterbaf46b24c2018-04-03 21:45:57 +0200265 TP_STRUCT__entry_btrfs(
Liu Bo393da912018-01-05 12:51:16 -0700266 __field( u64, e_start )
267 __field( u64, e_len )
268 __field( u64, map_start )
269 __field( u64, map_len )
270 __field( u64, start )
271 __field( u64, len )
272 ),
273
David Sterbaf46b24c2018-04-03 21:45:57 +0200274 TP_fast_assign_btrfs(fs_info,
Liu Bo393da912018-01-05 12:51:16 -0700275 __entry->e_start = existing->start;
276 __entry->e_len = existing->len;
277 __entry->map_start = map->start;
278 __entry->map_len = map->len;
279 __entry->start = start;
280 __entry->len = len;
281 ),
282
David Sterbaf46b24c2018-04-03 21:45:57 +0200283 TP_printk_btrfs("start=%llu len=%llu "
Liu Bo393da912018-01-05 12:51:16 -0700284 "existing(start=%llu len=%llu) "
285 "em(start=%llu len=%llu)",
David Sterba8eec8462018-04-03 21:15:11 +0200286 __entry->start,
287 __entry->len,
288 __entry->e_start,
289 __entry->e_len,
290 __entry->map_start,
291 __entry->map_len)
Liu Bo393da912018-01-05 12:51:16 -0700292);
293
Liu Bo09ed2f12017-03-10 11:09:48 -0800294/* file extent item */
295DECLARE_EVENT_CLASS(btrfs__file_extent_item_regular,
296
297 TP_PROTO(struct btrfs_inode *bi, struct extent_buffer *l,
298 struct btrfs_file_extent_item *fi, u64 start),
299
300 TP_ARGS(bi, l, fi, start),
301
302 TP_STRUCT__entry_btrfs(
303 __field( u64, root_obj )
304 __field( u64, ino )
305 __field( loff_t, isize )
306 __field( u64, disk_isize )
307 __field( u64, num_bytes )
308 __field( u64, ram_bytes )
309 __field( u64, disk_bytenr )
310 __field( u64, disk_num_bytes )
311 __field( u64, extent_offset )
312 __field( u8, extent_type )
313 __field( u8, compression )
314 __field( u64, extent_start )
315 __field( u64, extent_end )
316 ),
317
318 TP_fast_assign_btrfs(bi->root->fs_info,
319 __entry->root_obj = bi->root->objectid;
320 __entry->ino = btrfs_ino(bi);
321 __entry->isize = bi->vfs_inode.i_size;
322 __entry->disk_isize = bi->disk_i_size;
323 __entry->num_bytes = btrfs_file_extent_num_bytes(l, fi);
324 __entry->ram_bytes = btrfs_file_extent_ram_bytes(l, fi);
325 __entry->disk_bytenr = btrfs_file_extent_disk_bytenr(l, fi);
326 __entry->disk_num_bytes = btrfs_file_extent_disk_num_bytes(l, fi);
327 __entry->extent_offset = btrfs_file_extent_offset(l, fi);
328 __entry->extent_type = btrfs_file_extent_type(l, fi);
329 __entry->compression = btrfs_file_extent_compression(l, fi);
330 __entry->extent_start = start;
331 __entry->extent_end = (start + __entry->num_bytes);
332 ),
333
334 TP_printk_btrfs(
335 "root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
336 "file extent range=[%llu %llu] "
337 "(num_bytes=%llu ram_bytes=%llu disk_bytenr=%llu "
338 "disk_num_bytes=%llu extent_offset=%llu type=%s "
339 "compression=%u",
340 show_root_type(__entry->root_obj), __entry->ino,
341 __entry->isize,
342 __entry->disk_isize, __entry->extent_start,
343 __entry->extent_end, __entry->num_bytes, __entry->ram_bytes,
344 __entry->disk_bytenr, __entry->disk_num_bytes,
345 __entry->extent_offset, show_fi_type(__entry->extent_type),
346 __entry->compression)
347);
348
349DECLARE_EVENT_CLASS(
350 btrfs__file_extent_item_inline,
351
352 TP_PROTO(struct btrfs_inode *bi, struct extent_buffer *l,
353 struct btrfs_file_extent_item *fi, int slot, u64 start),
354
355 TP_ARGS(bi, l, fi, slot, start),
356
357 TP_STRUCT__entry_btrfs(
358 __field( u64, root_obj )
359 __field( u64, ino )
360 __field( loff_t, isize )
361 __field( u64, disk_isize )
362 __field( u8, extent_type )
363 __field( u8, compression )
364 __field( u64, extent_start )
365 __field( u64, extent_end )
366 ),
367
368 TP_fast_assign_btrfs(
369 bi->root->fs_info,
370 __entry->root_obj = bi->root->objectid;
371 __entry->ino = btrfs_ino(bi);
372 __entry->isize = bi->vfs_inode.i_size;
373 __entry->disk_isize = bi->disk_i_size;
374 __entry->extent_type = btrfs_file_extent_type(l, fi);
375 __entry->compression = btrfs_file_extent_compression(l, fi);
376 __entry->extent_start = start;
377 __entry->extent_end = (start + btrfs_file_extent_inline_len(l, slot, fi));
378 ),
379
380 TP_printk_btrfs(
381 "root=%llu(%s) inode=%llu size=%llu disk_isize=%llu "
382 "file extent range=[%llu %llu] "
383 "extent_type=%s compression=%u",
384 show_root_type(__entry->root_obj), __entry->ino, __entry->isize,
385 __entry->disk_isize, __entry->extent_start,
386 __entry->extent_end, show_fi_type(__entry->extent_type),
387 __entry->compression)
388);
389
390DEFINE_EVENT(
391 btrfs__file_extent_item_regular, btrfs_get_extent_show_fi_regular,
392
393 TP_PROTO(struct btrfs_inode *bi, struct extent_buffer *l,
394 struct btrfs_file_extent_item *fi, u64 start),
395
396 TP_ARGS(bi, l, fi, start)
397);
398
399DEFINE_EVENT(
400 btrfs__file_extent_item_regular, btrfs_truncate_show_fi_regular,
401
402 TP_PROTO(struct btrfs_inode *bi, struct extent_buffer *l,
403 struct btrfs_file_extent_item *fi, u64 start),
404
405 TP_ARGS(bi, l, fi, start)
406);
407
408DEFINE_EVENT(
409 btrfs__file_extent_item_inline, btrfs_get_extent_show_fi_inline,
410
411 TP_PROTO(struct btrfs_inode *bi, struct extent_buffer *l,
412 struct btrfs_file_extent_item *fi, int slot, u64 start),
413
414 TP_ARGS(bi, l, fi, slot, start)
415);
416
417DEFINE_EVENT(
418 btrfs__file_extent_item_inline, btrfs_truncate_show_fi_inline,
419
420 TP_PROTO(struct btrfs_inode *bi, struct extent_buffer *l,
421 struct btrfs_file_extent_item *fi, int slot, u64 start),
422
423 TP_ARGS(bi, l, fi, slot, start)
424);
425
Liu Bo9d04a8c2013-11-06 12:04:13 +0800426#define show_ordered_flags(flags) \
427 __print_flags(flags, "|", \
428 { (1 << BTRFS_ORDERED_IO_DONE), "IO_DONE" }, \
429 { (1 << BTRFS_ORDERED_COMPLETE), "COMPLETE" }, \
430 { (1 << BTRFS_ORDERED_NOCOW), "NOCOW" }, \
431 { (1 << BTRFS_ORDERED_COMPRESSED), "COMPRESSED" }, \
432 { (1 << BTRFS_ORDERED_PREALLOC), "PREALLOC" }, \
433 { (1 << BTRFS_ORDERED_DIRECT), "DIRECT" }, \
434 { (1 << BTRFS_ORDERED_IOERR), "IOERR" }, \
435 { (1 << BTRFS_ORDERED_UPDATED_ISIZE), "UPDATED_ISIZE" }, \
Liu Bo792ddef2013-11-06 12:04:14 +0800436 { (1 << BTRFS_ORDERED_LOGGED_CSUM), "LOGGED_CSUM" }, \
437 { (1 << BTRFS_ORDERED_TRUNCATED), "TRUNCATED" })
Liu Boe112e2b2013-05-26 13:50:28 +0000438
liubo1abe9b82011-03-24 11:18:59 +0000439
440DECLARE_EVENT_CLASS(btrfs__ordered_extent,
441
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600442 TP_PROTO(const struct inode *inode,
443 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000444
445 TP_ARGS(inode, ordered),
446
Jeff Mahoneybc074522016-06-09 17:27:55 -0400447 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200448 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000449 __field( u64, file_offset )
450 __field( u64, start )
451 __field( u64, len )
452 __field( u64, disk_len )
453 __field( u64, bytes_left )
454 __field( unsigned long, flags )
455 __field( int, compress_type )
456 __field( int, refs )
457 __field( u64, root_objectid )
Liu Bo78566542016-11-30 16:10:10 -0800458 __field( u64, truncated_len )
liubo1abe9b82011-03-24 11:18:59 +0000459 ),
460
Jeff Mahoneybc074522016-06-09 17:27:55 -0400461 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200462 __entry->ino = btrfs_ino(BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +0000463 __entry->file_offset = ordered->file_offset;
464 __entry->start = ordered->start;
465 __entry->len = ordered->len;
466 __entry->disk_len = ordered->disk_len;
467 __entry->bytes_left = ordered->bytes_left;
468 __entry->flags = ordered->flags;
469 __entry->compress_type = ordered->compress_type;
Elena Reshetovae76edab2017-03-03 10:55:13 +0200470 __entry->refs = refcount_read(&ordered->refs);
liubo1abe9b82011-03-24 11:18:59 +0000471 __entry->root_objectid =
472 BTRFS_I(inode)->root->root_key.objectid;
Liu Bo78566542016-11-30 16:10:10 -0800473 __entry->truncated_len = ordered->truncated_len;
liubo1abe9b82011-03-24 11:18:59 +0000474 ),
475
David Sterba562a7a02017-01-06 15:51:36 +0100476 TP_printk_btrfs("root=%llu(%s) ino=%llu file_offset=%llu "
477 "start=%llu len=%llu disk_len=%llu "
478 "truncated_len=%llu "
479 "bytes_left=%llu flags=%s compress_type=%d "
480 "refs=%d",
liubo1abe9b82011-03-24 11:18:59 +0000481 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200482 __entry->ino,
483 __entry->file_offset,
484 __entry->start,
485 __entry->len,
486 __entry->disk_len,
487 __entry->truncated_len,
488 __entry->bytes_left,
liubo1abe9b82011-03-24 11:18:59 +0000489 show_ordered_flags(__entry->flags),
490 __entry->compress_type, __entry->refs)
491);
492
493DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_add,
494
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600495 TP_PROTO(const struct inode *inode,
496 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000497
498 TP_ARGS(inode, ordered)
499);
500
501DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_remove,
502
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600503 TP_PROTO(const struct inode *inode,
504 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000505
506 TP_ARGS(inode, ordered)
507);
508
509DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_start,
510
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600511 TP_PROTO(const struct inode *inode,
512 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000513
514 TP_ARGS(inode, ordered)
515);
516
517DEFINE_EVENT(btrfs__ordered_extent, btrfs_ordered_extent_put,
518
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600519 TP_PROTO(const struct inode *inode,
520 const struct btrfs_ordered_extent *ordered),
liubo1abe9b82011-03-24 11:18:59 +0000521
522 TP_ARGS(inode, ordered)
523);
524
525DECLARE_EVENT_CLASS(btrfs__writepage,
526
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600527 TP_PROTO(const struct page *page, const struct inode *inode,
528 const struct writeback_control *wbc),
liubo1abe9b82011-03-24 11:18:59 +0000529
530 TP_ARGS(page, inode, wbc),
531
Jeff Mahoneybc074522016-06-09 17:27:55 -0400532 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200533 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000534 __field( pgoff_t, index )
535 __field( long, nr_to_write )
536 __field( long, pages_skipped )
537 __field( loff_t, range_start )
538 __field( loff_t, range_end )
liubo1abe9b82011-03-24 11:18:59 +0000539 __field( char, for_kupdate )
540 __field( char, for_reclaim )
541 __field( char, range_cyclic )
542 __field( pgoff_t, writeback_index )
543 __field( u64, root_objectid )
544 ),
545
Jeff Mahoneybc074522016-06-09 17:27:55 -0400546 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200547 __entry->ino = btrfs_ino(BTRFS_I(inode));
liubo1abe9b82011-03-24 11:18:59 +0000548 __entry->index = page->index;
549 __entry->nr_to_write = wbc->nr_to_write;
550 __entry->pages_skipped = wbc->pages_skipped;
551 __entry->range_start = wbc->range_start;
552 __entry->range_end = wbc->range_end;
liubo1abe9b82011-03-24 11:18:59 +0000553 __entry->for_kupdate = wbc->for_kupdate;
554 __entry->for_reclaim = wbc->for_reclaim;
555 __entry->range_cyclic = wbc->range_cyclic;
556 __entry->writeback_index = inode->i_mapping->writeback_index;
557 __entry->root_objectid =
558 BTRFS_I(inode)->root->root_key.objectid;
559 ),
560
David Sterbaf8f8e182018-04-03 20:57:21 +0200561 TP_printk_btrfs("root=%llu(%s) ino=%llu page_index=%lu "
David Sterba562a7a02017-01-06 15:51:36 +0100562 "nr_to_write=%ld pages_skipped=%ld range_start=%llu "
563 "range_end=%llu for_kupdate=%d "
564 "for_reclaim=%d range_cyclic=%d writeback_index=%lu",
liubo1abe9b82011-03-24 11:18:59 +0000565 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200566 __entry->ino, __entry->index,
liubo1abe9b82011-03-24 11:18:59 +0000567 __entry->nr_to_write, __entry->pages_skipped,
568 __entry->range_start, __entry->range_end,
Wu Fengguang846d5a02011-05-05 21:10:38 -0600569 __entry->for_kupdate,
liubo1abe9b82011-03-24 11:18:59 +0000570 __entry->for_reclaim, __entry->range_cyclic,
571 (unsigned long)__entry->writeback_index)
572);
573
574DEFINE_EVENT(btrfs__writepage, __extent_writepage,
575
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600576 TP_PROTO(const struct page *page, const struct inode *inode,
577 const struct writeback_control *wbc),
liubo1abe9b82011-03-24 11:18:59 +0000578
579 TP_ARGS(page, inode, wbc)
580);
581
582TRACE_EVENT(btrfs_writepage_end_io_hook,
583
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600584 TP_PROTO(const struct page *page, u64 start, u64 end, int uptodate),
liubo1abe9b82011-03-24 11:18:59 +0000585
586 TP_ARGS(page, start, end, uptodate),
587
Jeff Mahoneybc074522016-06-09 17:27:55 -0400588 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200589 __field( u64, ino )
liubo1abe9b82011-03-24 11:18:59 +0000590 __field( pgoff_t, index )
591 __field( u64, start )
592 __field( u64, end )
593 __field( int, uptodate )
594 __field( u64, root_objectid )
595 ),
596
Jeff Mahoneybc074522016-06-09 17:27:55 -0400597 TP_fast_assign_btrfs(btrfs_sb(page->mapping->host->i_sb),
David Sterbaf8f8e182018-04-03 20:57:21 +0200598 __entry->ino = btrfs_ino(BTRFS_I(page->mapping->host));
liubo1abe9b82011-03-24 11:18:59 +0000599 __entry->index = page->index;
600 __entry->start = start;
601 __entry->end = end;
602 __entry->uptodate = uptodate;
603 __entry->root_objectid =
604 BTRFS_I(page->mapping->host)->root->root_key.objectid;
605 ),
606
David Sterbaf8f8e182018-04-03 20:57:21 +0200607 TP_printk_btrfs("root=%llu(%s) ino=%llu page_index=%lu start=%llu "
David Sterba562a7a02017-01-06 15:51:36 +0100608 "end=%llu uptodate=%d",
liubo1abe9b82011-03-24 11:18:59 +0000609 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200610 __entry->ino, (unsigned long)__entry->index,
611 __entry->start,
612 __entry->end, __entry->uptodate)
liubo1abe9b82011-03-24 11:18:59 +0000613);
614
615TRACE_EVENT(btrfs_sync_file,
616
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600617 TP_PROTO(const struct file *file, int datasync),
liubo1abe9b82011-03-24 11:18:59 +0000618
619 TP_ARGS(file, datasync),
620
Jeff Mahoneybc074522016-06-09 17:27:55 -0400621 TP_STRUCT__entry_btrfs(
David Sterbaf8f8e182018-04-03 20:57:21 +0200622 __field( u64, ino )
623 __field( u64, parent )
liubo1abe9b82011-03-24 11:18:59 +0000624 __field( int, datasync )
625 __field( u64, root_objectid )
626 ),
627
628 TP_fast_assign(
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600629 const struct dentry *dentry = file->f_path.dentry;
630 const struct inode *inode = d_inode(dentry);
liubo1abe9b82011-03-24 11:18:59 +0000631
Jeff Mahoneybc074522016-06-09 17:27:55 -0400632 TP_fast_assign_fsid(btrfs_sb(file->f_path.dentry->d_sb));
David Sterbaf8f8e182018-04-03 20:57:21 +0200633 __entry->ino = btrfs_ino(BTRFS_I(inode));
634 __entry->parent = btrfs_ino(BTRFS_I(d_inode(dentry->d_parent)));
liubo1abe9b82011-03-24 11:18:59 +0000635 __entry->datasync = datasync;
636 __entry->root_objectid =
637 BTRFS_I(inode)->root->root_key.objectid;
638 ),
639
David Sterbaf8f8e182018-04-03 20:57:21 +0200640 TP_printk_btrfs("root=%llu(%s) ino=%llu parent=%llu datasync=%d",
liubo1abe9b82011-03-24 11:18:59 +0000641 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200642 __entry->ino,
643 __entry->parent,
liubo1abe9b82011-03-24 11:18:59 +0000644 __entry->datasync)
645);
646
647TRACE_EVENT(btrfs_sync_fs,
648
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600649 TP_PROTO(const struct btrfs_fs_info *fs_info, int wait),
liubo1abe9b82011-03-24 11:18:59 +0000650
Jeff Mahoneybc074522016-06-09 17:27:55 -0400651 TP_ARGS(fs_info, wait),
liubo1abe9b82011-03-24 11:18:59 +0000652
Jeff Mahoneybc074522016-06-09 17:27:55 -0400653 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000654 __field( int, wait )
655 ),
656
Jeff Mahoneybc074522016-06-09 17:27:55 -0400657 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000658 __entry->wait = wait;
659 ),
660
David Sterba79bcb712018-04-03 21:21:17 +0200661 TP_printk_btrfs("wait=%d", __entry->wait)
liubo1abe9b82011-03-24 11:18:59 +0000662);
663
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400664TRACE_EVENT(btrfs_add_block_group,
665
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600666 TP_PROTO(const struct btrfs_fs_info *fs_info,
667 const struct btrfs_block_group_cache *block_group, int create),
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400668
669 TP_ARGS(fs_info, block_group, create),
670
David Sterba2e63e622018-04-03 21:34:06 +0200671 TP_STRUCT__entry_btrfs(
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400672 __field( u64, offset )
673 __field( u64, size )
674 __field( u64, flags )
675 __field( u64, bytes_used )
676 __field( u64, bytes_super )
677 __field( int, create )
678 ),
679
David Sterba2e63e622018-04-03 21:34:06 +0200680 TP_fast_assign_btrfs(fs_info,
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400681 __entry->offset = block_group->key.objectid;
682 __entry->size = block_group->key.offset;
683 __entry->flags = block_group->flags;
684 __entry->bytes_used =
685 btrfs_block_group_used(&block_group->item);
686 __entry->bytes_super = block_group->bytes_super;
687 __entry->create = create;
688 ),
689
David Sterba2e63e622018-04-03 21:34:06 +0200690 TP_printk_btrfs("block_group offset=%llu size=%llu "
David Sterba562a7a02017-01-06 15:51:36 +0100691 "flags=%llu(%s) bytes_used=%llu bytes_super=%llu "
David Sterba2e63e622018-04-03 21:34:06 +0200692 "create=%d",
David Sterba8eec8462018-04-03 21:15:11 +0200693 __entry->offset,
694 __entry->size,
695 __entry->flags,
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400696 __print_flags((unsigned long)__entry->flags, "|",
697 BTRFS_GROUP_FLAGS),
David Sterba8eec8462018-04-03 21:15:11 +0200698 __entry->bytes_used,
699 __entry->bytes_super, __entry->create)
Josef Bacikc83f8ef2016-03-25 13:25:52 -0400700);
701
liubo1abe9b82011-03-24 11:18:59 +0000702#define show_ref_action(action) \
703 __print_symbolic(action, \
704 { BTRFS_ADD_DELAYED_REF, "ADD_DELAYED_REF" }, \
705 { BTRFS_DROP_DELAYED_REF, "DROP_DELAYED_REF" }, \
706 { BTRFS_ADD_DELAYED_EXTENT, "ADD_DELAYED_EXTENT" }, \
707 { BTRFS_UPDATE_DELAYED_HEAD, "UPDATE_DELAYED_HEAD" })
708
709
Liu Bo599c75e2013-07-16 19:03:36 +0800710DECLARE_EVENT_CLASS(btrfs_delayed_tree_ref,
liubo1abe9b82011-03-24 11:18:59 +0000711
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600712 TP_PROTO(const struct btrfs_fs_info *fs_info,
713 const struct btrfs_delayed_ref_node *ref,
714 const struct btrfs_delayed_tree_ref *full_ref,
liubo1abe9b82011-03-24 11:18:59 +0000715 int action),
716
Jeff Mahoneybc074522016-06-09 17:27:55 -0400717 TP_ARGS(fs_info, ref, full_ref, action),
liubo1abe9b82011-03-24 11:18:59 +0000718
Jeff Mahoneybc074522016-06-09 17:27:55 -0400719 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000720 __field( u64, bytenr )
721 __field( u64, num_bytes )
722 __field( int, action )
723 __field( u64, parent )
724 __field( u64, ref_root )
725 __field( int, level )
726 __field( int, type )
Liu Bodea7d762012-09-07 20:01:27 -0600727 __field( u64, seq )
liubo1abe9b82011-03-24 11:18:59 +0000728 ),
729
Jeff Mahoneybc074522016-06-09 17:27:55 -0400730 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000731 __entry->bytenr = ref->bytenr;
732 __entry->num_bytes = ref->num_bytes;
733 __entry->action = action;
734 __entry->parent = full_ref->parent;
735 __entry->ref_root = full_ref->root;
736 __entry->level = full_ref->level;
737 __entry->type = ref->type;
Liu Bodea7d762012-09-07 20:01:27 -0600738 __entry->seq = ref->seq;
liubo1abe9b82011-03-24 11:18:59 +0000739 ),
740
David Sterba562a7a02017-01-06 15:51:36 +0100741 TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
742 "parent=%llu(%s) ref_root=%llu(%s) level=%d "
743 "type=%s seq=%llu",
David Sterba8eec8462018-04-03 21:15:11 +0200744 __entry->bytenr,
745 __entry->num_bytes,
liubo1abe9b82011-03-24 11:18:59 +0000746 show_ref_action(__entry->action),
747 show_root_type(__entry->parent),
748 show_root_type(__entry->ref_root),
Liu Bodea7d762012-09-07 20:01:27 -0600749 __entry->level, show_ref_type(__entry->type),
David Sterba8eec8462018-04-03 21:15:11 +0200750 __entry->seq)
liubo1abe9b82011-03-24 11:18:59 +0000751);
752
Liu Bo599c75e2013-07-16 19:03:36 +0800753DEFINE_EVENT(btrfs_delayed_tree_ref, add_delayed_tree_ref,
754
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600755 TP_PROTO(const struct btrfs_fs_info *fs_info,
756 const struct btrfs_delayed_ref_node *ref,
757 const struct btrfs_delayed_tree_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800758 int action),
759
Jeff Mahoneybc074522016-06-09 17:27:55 -0400760 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800761);
762
763DEFINE_EVENT(btrfs_delayed_tree_ref, run_delayed_tree_ref,
764
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600765 TP_PROTO(const struct btrfs_fs_info *fs_info,
766 const struct btrfs_delayed_ref_node *ref,
767 const struct btrfs_delayed_tree_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800768 int action),
769
Jeff Mahoneybc074522016-06-09 17:27:55 -0400770 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800771);
772
773DECLARE_EVENT_CLASS(btrfs_delayed_data_ref,
liubo1abe9b82011-03-24 11:18:59 +0000774
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600775 TP_PROTO(const struct btrfs_fs_info *fs_info,
776 const struct btrfs_delayed_ref_node *ref,
777 const struct btrfs_delayed_data_ref *full_ref,
liubo1abe9b82011-03-24 11:18:59 +0000778 int action),
779
Jeff Mahoneybc074522016-06-09 17:27:55 -0400780 TP_ARGS(fs_info, ref, full_ref, action),
liubo1abe9b82011-03-24 11:18:59 +0000781
Jeff Mahoneybc074522016-06-09 17:27:55 -0400782 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000783 __field( u64, bytenr )
784 __field( u64, num_bytes )
785 __field( int, action )
786 __field( u64, parent )
787 __field( u64, ref_root )
788 __field( u64, owner )
789 __field( u64, offset )
790 __field( int, type )
Liu Bodea7d762012-09-07 20:01:27 -0600791 __field( u64, seq )
liubo1abe9b82011-03-24 11:18:59 +0000792 ),
793
Jeff Mahoneybc074522016-06-09 17:27:55 -0400794 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000795 __entry->bytenr = ref->bytenr;
796 __entry->num_bytes = ref->num_bytes;
797 __entry->action = action;
798 __entry->parent = full_ref->parent;
799 __entry->ref_root = full_ref->root;
800 __entry->owner = full_ref->objectid;
801 __entry->offset = full_ref->offset;
802 __entry->type = ref->type;
Liu Bodea7d762012-09-07 20:01:27 -0600803 __entry->seq = ref->seq;
liubo1abe9b82011-03-24 11:18:59 +0000804 ),
805
David Sterba562a7a02017-01-06 15:51:36 +0100806 TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s "
807 "parent=%llu(%s) ref_root=%llu(%s) owner=%llu "
808 "offset=%llu type=%s seq=%llu",
David Sterba8eec8462018-04-03 21:15:11 +0200809 __entry->bytenr,
810 __entry->num_bytes,
liubo1abe9b82011-03-24 11:18:59 +0000811 show_ref_action(__entry->action),
812 show_root_type(__entry->parent),
813 show_root_type(__entry->ref_root),
David Sterba8eec8462018-04-03 21:15:11 +0200814 __entry->owner,
815 __entry->offset,
Liu Bodea7d762012-09-07 20:01:27 -0600816 show_ref_type(__entry->type),
David Sterba8eec8462018-04-03 21:15:11 +0200817 __entry->seq)
liubo1abe9b82011-03-24 11:18:59 +0000818);
819
Liu Bo599c75e2013-07-16 19:03:36 +0800820DEFINE_EVENT(btrfs_delayed_data_ref, add_delayed_data_ref,
821
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600822 TP_PROTO(const struct btrfs_fs_info *fs_info,
823 const struct btrfs_delayed_ref_node *ref,
824 const struct btrfs_delayed_data_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800825 int action),
826
Jeff Mahoneybc074522016-06-09 17:27:55 -0400827 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800828);
829
830DEFINE_EVENT(btrfs_delayed_data_ref, run_delayed_data_ref,
831
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600832 TP_PROTO(const struct btrfs_fs_info *fs_info,
833 const struct btrfs_delayed_ref_node *ref,
834 const struct btrfs_delayed_data_ref *full_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800835 int action),
836
Jeff Mahoneybc074522016-06-09 17:27:55 -0400837 TP_ARGS(fs_info, ref, full_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800838);
839
840DECLARE_EVENT_CLASS(btrfs_delayed_ref_head,
liubo1abe9b82011-03-24 11:18:59 +0000841
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600842 TP_PROTO(const struct btrfs_fs_info *fs_info,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600843 const struct btrfs_delayed_ref_head *head_ref,
liubo1abe9b82011-03-24 11:18:59 +0000844 int action),
845
Josef Bacikd2788502017-09-29 15:43:57 -0400846 TP_ARGS(fs_info, head_ref, action),
liubo1abe9b82011-03-24 11:18:59 +0000847
Jeff Mahoneybc074522016-06-09 17:27:55 -0400848 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000849 __field( u64, bytenr )
850 __field( u64, num_bytes )
851 __field( int, action )
852 __field( int, is_data )
853 ),
854
Jeff Mahoneybc074522016-06-09 17:27:55 -0400855 TP_fast_assign_btrfs(fs_info,
Josef Bacikd2788502017-09-29 15:43:57 -0400856 __entry->bytenr = head_ref->bytenr;
857 __entry->num_bytes = head_ref->num_bytes;
liubo1abe9b82011-03-24 11:18:59 +0000858 __entry->action = action;
859 __entry->is_data = head_ref->is_data;
860 ),
861
David Sterba562a7a02017-01-06 15:51:36 +0100862 TP_printk_btrfs("bytenr=%llu num_bytes=%llu action=%s is_data=%d",
David Sterba8eec8462018-04-03 21:15:11 +0200863 __entry->bytenr,
864 __entry->num_bytes,
liubo1abe9b82011-03-24 11:18:59 +0000865 show_ref_action(__entry->action),
866 __entry->is_data)
867);
868
Liu Bo599c75e2013-07-16 19:03:36 +0800869DEFINE_EVENT(btrfs_delayed_ref_head, add_delayed_ref_head,
870
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600871 TP_PROTO(const struct btrfs_fs_info *fs_info,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600872 const struct btrfs_delayed_ref_head *head_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800873 int action),
874
Josef Bacikd2788502017-09-29 15:43:57 -0400875 TP_ARGS(fs_info, head_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800876);
877
878DEFINE_EVENT(btrfs_delayed_ref_head, run_delayed_ref_head,
879
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600880 TP_PROTO(const struct btrfs_fs_info *fs_info,
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600881 const struct btrfs_delayed_ref_head *head_ref,
Liu Bo599c75e2013-07-16 19:03:36 +0800882 int action),
883
Josef Bacikd2788502017-09-29 15:43:57 -0400884 TP_ARGS(fs_info, head_ref, action)
Liu Bo599c75e2013-07-16 19:03:36 +0800885);
886
liubo1abe9b82011-03-24 11:18:59 +0000887#define show_chunk_type(type) \
888 __print_flags(type, "|", \
889 { BTRFS_BLOCK_GROUP_DATA, "DATA" }, \
890 { BTRFS_BLOCK_GROUP_SYSTEM, "SYSTEM"}, \
891 { BTRFS_BLOCK_GROUP_METADATA, "METADATA"}, \
892 { BTRFS_BLOCK_GROUP_RAID0, "RAID0" }, \
893 { BTRFS_BLOCK_GROUP_RAID1, "RAID1" }, \
894 { BTRFS_BLOCK_GROUP_DUP, "DUP" }, \
Liu Boe112e2b2013-05-26 13:50:28 +0000895 { BTRFS_BLOCK_GROUP_RAID10, "RAID10"}, \
896 { BTRFS_BLOCK_GROUP_RAID5, "RAID5" }, \
897 { BTRFS_BLOCK_GROUP_RAID6, "RAID6" })
liubo1abe9b82011-03-24 11:18:59 +0000898
899DECLARE_EVENT_CLASS(btrfs__chunk,
900
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600901 TP_PROTO(const struct btrfs_fs_info *fs_info,
902 const struct map_lookup *map, u64 offset, u64 size),
liubo1abe9b82011-03-24 11:18:59 +0000903
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400904 TP_ARGS(fs_info, map, offset, size),
liubo1abe9b82011-03-24 11:18:59 +0000905
Jeff Mahoneybc074522016-06-09 17:27:55 -0400906 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000907 __field( int, num_stripes )
908 __field( u64, type )
909 __field( int, sub_stripes )
910 __field( u64, offset )
911 __field( u64, size )
912 __field( u64, root_objectid )
913 ),
914
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400915 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000916 __entry->num_stripes = map->num_stripes;
917 __entry->type = map->type;
918 __entry->sub_stripes = map->sub_stripes;
919 __entry->offset = offset;
920 __entry->size = size;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400921 __entry->root_objectid = fs_info->chunk_root->root_key.objectid;
liubo1abe9b82011-03-24 11:18:59 +0000922 ),
923
David Sterba562a7a02017-01-06 15:51:36 +0100924 TP_printk_btrfs("root=%llu(%s) offset=%llu size=%llu "
925 "num_stripes=%d sub_stripes=%d type=%s",
liubo1abe9b82011-03-24 11:18:59 +0000926 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +0200927 __entry->offset,
928 __entry->size,
liubo1abe9b82011-03-24 11:18:59 +0000929 __entry->num_stripes, __entry->sub_stripes,
930 show_chunk_type(__entry->type))
931);
932
933DEFINE_EVENT(btrfs__chunk, btrfs_chunk_alloc,
934
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600935 TP_PROTO(const struct btrfs_fs_info *fs_info,
936 const struct map_lookup *map, u64 offset, u64 size),
liubo1abe9b82011-03-24 11:18:59 +0000937
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400938 TP_ARGS(fs_info, map, offset, size)
liubo1abe9b82011-03-24 11:18:59 +0000939);
940
941DEFINE_EVENT(btrfs__chunk, btrfs_chunk_free,
942
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600943 TP_PROTO(const struct btrfs_fs_info *fs_info,
944 const struct map_lookup *map, u64 offset, u64 size),
liubo1abe9b82011-03-24 11:18:59 +0000945
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400946 TP_ARGS(fs_info, map, offset, size)
liubo1abe9b82011-03-24 11:18:59 +0000947);
948
949TRACE_EVENT(btrfs_cow_block,
950
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600951 TP_PROTO(const struct btrfs_root *root, const struct extent_buffer *buf,
952 const struct extent_buffer *cow),
liubo1abe9b82011-03-24 11:18:59 +0000953
954 TP_ARGS(root, buf, cow),
955
Jeff Mahoneybc074522016-06-09 17:27:55 -0400956 TP_STRUCT__entry_btrfs(
liubo1abe9b82011-03-24 11:18:59 +0000957 __field( u64, root_objectid )
958 __field( u64, buf_start )
959 __field( int, refs )
960 __field( u64, cow_start )
961 __field( int, buf_level )
962 __field( int, cow_level )
963 ),
964
Jeff Mahoneybc074522016-06-09 17:27:55 -0400965 TP_fast_assign_btrfs(root->fs_info,
liubo1abe9b82011-03-24 11:18:59 +0000966 __entry->root_objectid = root->root_key.objectid;
967 __entry->buf_start = buf->start;
968 __entry->refs = atomic_read(&buf->refs);
969 __entry->cow_start = cow->start;
970 __entry->buf_level = btrfs_header_level(buf);
971 __entry->cow_level = btrfs_header_level(cow);
972 ),
973
David Sterba562a7a02017-01-06 15:51:36 +0100974 TP_printk_btrfs("root=%llu(%s) refs=%d orig_buf=%llu "
975 "(orig_level=%d) cow_buf=%llu (cow_level=%d)",
liubo1abe9b82011-03-24 11:18:59 +0000976 show_root_type(__entry->root_objectid),
977 __entry->refs,
David Sterba8eec8462018-04-03 21:15:11 +0200978 __entry->buf_start,
liubo1abe9b82011-03-24 11:18:59 +0000979 __entry->buf_level,
David Sterba8eec8462018-04-03 21:15:11 +0200980 __entry->cow_start,
liubo1abe9b82011-03-24 11:18:59 +0000981 __entry->cow_level)
982);
983
Josef Bacik8c2a3ca2012-01-10 10:31:31 -0500984TRACE_EVENT(btrfs_space_reservation,
985
Jeff Mahoney9a35b632017-06-28 21:56:54 -0600986 TP_PROTO(const struct btrfs_fs_info *fs_info, char *type, u64 val,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -0500987 u64 bytes, int reserve),
988
989 TP_ARGS(fs_info, type, val, bytes, reserve),
990
Jeff Mahoneybc074522016-06-09 17:27:55 -0400991 TP_STRUCT__entry_btrfs(
Josef Bacik8c2a3ca2012-01-10 10:31:31 -0500992 __string( type, type )
993 __field( u64, val )
994 __field( u64, bytes )
995 __field( int, reserve )
996 ),
997
Jeff Mahoneybc074522016-06-09 17:27:55 -0400998 TP_fast_assign_btrfs(fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -0500999 __assign_str(type, type);
1000 __entry->val = val;
1001 __entry->bytes = bytes;
1002 __entry->reserve = reserve;
1003 ),
1004
David Sterba5439c7f2018-04-03 21:05:37 +02001005 TP_printk_btrfs("%s: %llu %s %llu", __get_str(type), __entry->val,
Jeff Mahoneybc074522016-06-09 17:27:55 -04001006 __entry->reserve ? "reserve" : "release",
1007 __entry->bytes)
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05001008);
1009
Josef Bacikf376df22016-03-25 13:25:56 -04001010#define show_flush_action(action) \
1011 __print_symbolic(action, \
1012 { BTRFS_RESERVE_NO_FLUSH, "BTRFS_RESERVE_NO_FLUSH"}, \
1013 { BTRFS_RESERVE_FLUSH_LIMIT, "BTRFS_RESERVE_FLUSH_LIMIT"}, \
1014 { BTRFS_RESERVE_FLUSH_ALL, "BTRFS_RESERVE_FLUSH_ALL"})
1015
1016TRACE_EVENT(btrfs_trigger_flush,
1017
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001018 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 bytes,
Josef Bacikf376df22016-03-25 13:25:56 -04001019 int flush, char *reason),
1020
1021 TP_ARGS(fs_info, flags, bytes, flush, reason),
1022
David Sterba2e63e622018-04-03 21:34:06 +02001023 TP_STRUCT__entry_btrfs(
Josef Bacikf376df22016-03-25 13:25:56 -04001024 __field( u64, flags )
1025 __field( u64, bytes )
1026 __field( int, flush )
1027 __string( reason, reason )
1028 ),
1029
David Sterba2e63e622018-04-03 21:34:06 +02001030 TP_fast_assign_btrfs(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04001031 __entry->flags = flags;
1032 __entry->bytes = bytes;
1033 __entry->flush = flush;
1034 __assign_str(reason, reason)
1035 ),
1036
David Sterba2e63e622018-04-03 21:34:06 +02001037 TP_printk_btrfs("%s: flush=%d(%s) flags=%llu(%s) bytes=%llu",
1038 __get_str(reason), __entry->flush,
Josef Bacikf376df22016-03-25 13:25:56 -04001039 show_flush_action(__entry->flush),
David Sterba8eec8462018-04-03 21:15:11 +02001040 __entry->flags,
Josef Bacikf376df22016-03-25 13:25:56 -04001041 __print_flags((unsigned long)__entry->flags, "|",
1042 BTRFS_GROUP_FLAGS),
David Sterba8eec8462018-04-03 21:15:11 +02001043 __entry->bytes)
Josef Bacikf376df22016-03-25 13:25:56 -04001044);
1045
1046#define show_flush_state(state) \
1047 __print_symbolic(state, \
1048 { FLUSH_DELAYED_ITEMS_NR, "FLUSH_DELAYED_ITEMS_NR"}, \
1049 { FLUSH_DELAYED_ITEMS, "FLUSH_DELAYED_ITEMS"}, \
1050 { FLUSH_DELALLOC, "FLUSH_DELALLOC"}, \
1051 { FLUSH_DELALLOC_WAIT, "FLUSH_DELALLOC_WAIT"}, \
1052 { ALLOC_CHUNK, "ALLOC_CHUNK"}, \
1053 { COMMIT_TRANS, "COMMIT_TRANS"})
1054
1055TRACE_EVENT(btrfs_flush_space,
1056
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001057 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 flags, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03001058 int state, int ret),
Josef Bacikf376df22016-03-25 13:25:56 -04001059
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03001060 TP_ARGS(fs_info, flags, num_bytes, state, ret),
Josef Bacikf376df22016-03-25 13:25:56 -04001061
David Sterba2e63e622018-04-03 21:34:06 +02001062 TP_STRUCT__entry_btrfs(
Josef Bacikf376df22016-03-25 13:25:56 -04001063 __field( u64, flags )
1064 __field( u64, num_bytes )
Josef Bacikf376df22016-03-25 13:25:56 -04001065 __field( int, state )
1066 __field( int, ret )
1067 ),
1068
David Sterba2e63e622018-04-03 21:34:06 +02001069 TP_fast_assign_btrfs(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04001070 __entry->flags = flags;
1071 __entry->num_bytes = num_bytes;
Josef Bacikf376df22016-03-25 13:25:56 -04001072 __entry->state = state;
1073 __entry->ret = ret;
1074 ),
1075
David Sterba2e63e622018-04-03 21:34:06 +02001076 TP_printk_btrfs("state=%d(%s) flags=%llu(%s) num_bytes=%llu ret=%d",
1077 __entry->state,
Josef Bacikf376df22016-03-25 13:25:56 -04001078 show_flush_state(__entry->state),
David Sterba8eec8462018-04-03 21:15:11 +02001079 __entry->flags,
Josef Bacikf376df22016-03-25 13:25:56 -04001080 __print_flags((unsigned long)__entry->flags, "|",
1081 BTRFS_GROUP_FLAGS),
David Sterba8eec8462018-04-03 21:15:11 +02001082 __entry->num_bytes, __entry->ret)
Josef Bacikf376df22016-03-25 13:25:56 -04001083);
1084
liubo1abe9b82011-03-24 11:18:59 +00001085DECLARE_EVENT_CLASS(btrfs__reserved_extent,
1086
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001087 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
liubo1abe9b82011-03-24 11:18:59 +00001088
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001089 TP_ARGS(fs_info, start, len),
liubo1abe9b82011-03-24 11:18:59 +00001090
Jeff Mahoneybc074522016-06-09 17:27:55 -04001091 TP_STRUCT__entry_btrfs(
Jeff Mahoneybc074522016-06-09 17:27:55 -04001092 __field( u64, start )
1093 __field( u64, len )
liubo1abe9b82011-03-24 11:18:59 +00001094 ),
1095
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001096 TP_fast_assign_btrfs(fs_info,
liubo1abe9b82011-03-24 11:18:59 +00001097 __entry->start = start;
1098 __entry->len = len;
1099 ),
1100
David Sterba562a7a02017-01-06 15:51:36 +01001101 TP_printk_btrfs("root=%llu(%s) start=%llu len=%llu",
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001102 show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
David Sterba8eec8462018-04-03 21:15:11 +02001103 __entry->start,
1104 __entry->len)
liubo1abe9b82011-03-24 11:18:59 +00001105);
1106
1107DEFINE_EVENT(btrfs__reserved_extent, btrfs_reserved_extent_alloc,
1108
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001109 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
liubo1abe9b82011-03-24 11:18:59 +00001110
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001111 TP_ARGS(fs_info, start, len)
liubo1abe9b82011-03-24 11:18:59 +00001112);
1113
1114DEFINE_EVENT(btrfs__reserved_extent, btrfs_reserved_extent_free,
1115
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001116 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 start, u64 len),
liubo1abe9b82011-03-24 11:18:59 +00001117
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001118 TP_ARGS(fs_info, start, len)
liubo1abe9b82011-03-24 11:18:59 +00001119);
1120
Josef Bacik3f7de032011-11-10 08:29:20 -05001121TRACE_EVENT(find_free_extent,
1122
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001123 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 num_bytes,
1124 u64 empty_size, u64 data),
Josef Bacik3f7de032011-11-10 08:29:20 -05001125
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001126 TP_ARGS(fs_info, num_bytes, empty_size, data),
Josef Bacik3f7de032011-11-10 08:29:20 -05001127
Jeff Mahoneybc074522016-06-09 17:27:55 -04001128 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001129 __field( u64, num_bytes )
1130 __field( u64, empty_size )
1131 __field( u64, data )
1132 ),
1133
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001134 TP_fast_assign_btrfs(fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05001135 __entry->num_bytes = num_bytes;
1136 __entry->empty_size = empty_size;
1137 __entry->data = data;
1138 ),
1139
David Sterba5439c7f2018-04-03 21:05:37 +02001140 TP_printk_btrfs("root=%llu(%s) len=%llu empty_size=%llu flags=%llu(%s)",
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001141 show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
Josef Bacik3f7de032011-11-10 08:29:20 -05001142 __entry->num_bytes, __entry->empty_size, __entry->data,
1143 __print_flags((unsigned long)__entry->data, "|",
1144 BTRFS_GROUP_FLAGS))
1145);
1146
1147DECLARE_EVENT_CLASS(btrfs__reserve_extent,
1148
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001149 TP_PROTO(const struct btrfs_block_group_cache *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001150 u64 len),
1151
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001152 TP_ARGS(block_group, start, len),
Josef Bacik3f7de032011-11-10 08:29:20 -05001153
Jeff Mahoneybc074522016-06-09 17:27:55 -04001154 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001155 __field( u64, bg_objectid )
1156 __field( u64, flags )
1157 __field( u64, start )
1158 __field( u64, len )
1159 ),
1160
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001161 TP_fast_assign_btrfs(block_group->fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05001162 __entry->bg_objectid = block_group->key.objectid;
1163 __entry->flags = block_group->flags;
1164 __entry->start = start;
1165 __entry->len = len;
1166 ),
1167
David Sterba5439c7f2018-04-03 21:05:37 +02001168 TP_printk_btrfs("root=%llu(%s) block_group=%llu flags=%llu(%s) "
1169 "start=%llu len=%llu",
Jeff Mahoney71ff6432016-09-06 16:00:42 -04001170 show_root_type(BTRFS_EXTENT_TREE_OBJECTID),
1171 __entry->bg_objectid,
Josef Bacik3f7de032011-11-10 08:29:20 -05001172 __entry->flags, __print_flags((unsigned long)__entry->flags,
1173 "|", BTRFS_GROUP_FLAGS),
1174 __entry->start, __entry->len)
1175);
1176
1177DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent,
1178
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001179 TP_PROTO(const struct btrfs_block_group_cache *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001180 u64 len),
1181
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001182 TP_ARGS(block_group, start, len)
Josef Bacik3f7de032011-11-10 08:29:20 -05001183);
1184
1185DEFINE_EVENT(btrfs__reserve_extent, btrfs_reserve_extent_cluster,
1186
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001187 TP_PROTO(const struct btrfs_block_group_cache *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001188 u64 len),
1189
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001190 TP_ARGS(block_group, start, len)
Josef Bacik3f7de032011-11-10 08:29:20 -05001191);
1192
1193TRACE_EVENT(btrfs_find_cluster,
1194
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001195 TP_PROTO(const struct btrfs_block_group_cache *block_group, u64 start,
Josef Bacik3f7de032011-11-10 08:29:20 -05001196 u64 bytes, u64 empty_size, u64 min_bytes),
1197
1198 TP_ARGS(block_group, start, bytes, empty_size, min_bytes),
1199
Jeff Mahoneybc074522016-06-09 17:27:55 -04001200 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001201 __field( u64, bg_objectid )
1202 __field( u64, flags )
1203 __field( u64, start )
1204 __field( u64, bytes )
1205 __field( u64, empty_size )
1206 __field( u64, min_bytes )
1207 ),
1208
Jeff Mahoneybc074522016-06-09 17:27:55 -04001209 TP_fast_assign_btrfs(block_group->fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05001210 __entry->bg_objectid = block_group->key.objectid;
1211 __entry->flags = block_group->flags;
1212 __entry->start = start;
1213 __entry->bytes = bytes;
1214 __entry->empty_size = empty_size;
1215 __entry->min_bytes = min_bytes;
1216 ),
1217
David Sterba5439c7f2018-04-03 21:05:37 +02001218 TP_printk_btrfs("block_group=%llu flags=%llu(%s) start=%llu len=%llu "
1219 "empty_size=%llu min_bytes=%llu", __entry->bg_objectid,
Josef Bacik3f7de032011-11-10 08:29:20 -05001220 __entry->flags,
1221 __print_flags((unsigned long)__entry->flags, "|",
1222 BTRFS_GROUP_FLAGS), __entry->start,
1223 __entry->bytes, __entry->empty_size, __entry->min_bytes)
1224);
1225
1226TRACE_EVENT(btrfs_failed_cluster_setup,
1227
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001228 TP_PROTO(const struct btrfs_block_group_cache *block_group),
Josef Bacik3f7de032011-11-10 08:29:20 -05001229
1230 TP_ARGS(block_group),
1231
Jeff Mahoneybc074522016-06-09 17:27:55 -04001232 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001233 __field( u64, bg_objectid )
1234 ),
1235
Jeff Mahoneybc074522016-06-09 17:27:55 -04001236 TP_fast_assign_btrfs(block_group->fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05001237 __entry->bg_objectid = block_group->key.objectid;
1238 ),
1239
David Sterba5439c7f2018-04-03 21:05:37 +02001240 TP_printk_btrfs("block_group=%llu", __entry->bg_objectid)
Josef Bacik3f7de032011-11-10 08:29:20 -05001241);
1242
1243TRACE_EVENT(btrfs_setup_cluster,
1244
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001245 TP_PROTO(const struct btrfs_block_group_cache *block_group,
1246 const struct btrfs_free_cluster *cluster,
1247 u64 size, int bitmap),
Josef Bacik3f7de032011-11-10 08:29:20 -05001248
1249 TP_ARGS(block_group, cluster, size, bitmap),
1250
Jeff Mahoneybc074522016-06-09 17:27:55 -04001251 TP_STRUCT__entry_btrfs(
Josef Bacik3f7de032011-11-10 08:29:20 -05001252 __field( u64, bg_objectid )
1253 __field( u64, flags )
1254 __field( u64, start )
1255 __field( u64, max_size )
1256 __field( u64, size )
1257 __field( int, bitmap )
1258 ),
1259
Jeff Mahoneybc074522016-06-09 17:27:55 -04001260 TP_fast_assign_btrfs(block_group->fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05001261 __entry->bg_objectid = block_group->key.objectid;
1262 __entry->flags = block_group->flags;
1263 __entry->start = cluster->window_start;
1264 __entry->max_size = cluster->max_size;
1265 __entry->size = size;
1266 __entry->bitmap = bitmap;
1267 ),
1268
David Sterba5439c7f2018-04-03 21:05:37 +02001269 TP_printk_btrfs("block_group=%llu flags=%llu(%s) window_start=%llu "
1270 "size=%llu max_size=%llu bitmap=%d",
Josef Bacik3f7de032011-11-10 08:29:20 -05001271 __entry->bg_objectid,
1272 __entry->flags,
1273 __print_flags((unsigned long)__entry->flags, "|",
1274 BTRFS_GROUP_FLAGS), __entry->start,
1275 __entry->size, __entry->max_size, __entry->bitmap)
1276);
1277
Jeff Mahoney143bede2012-03-01 14:56:26 +01001278struct extent_state;
1279TRACE_EVENT(alloc_extent_state,
1280
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001281 TP_PROTO(const struct extent_state *state,
1282 gfp_t mask, unsigned long IP),
Jeff Mahoney143bede2012-03-01 14:56:26 +01001283
1284 TP_ARGS(state, mask, IP),
1285
1286 TP_STRUCT__entry(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001287 __field(const struct extent_state *, state)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001288 __field(gfp_t, mask)
1289 __field(unsigned long, ip)
1290 ),
1291
1292 TP_fast_assign(
1293 __entry->state = state,
1294 __entry->mask = mask,
1295 __entry->ip = IP
1296 ),
1297
David Sterba562a7a02017-01-06 15:51:36 +01001298 TP_printk("state=%p mask=%s caller=%pS", __entry->state,
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001299 show_gfp_flags(__entry->mask), (const void *)__entry->ip)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001300);
1301
1302TRACE_EVENT(free_extent_state,
1303
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001304 TP_PROTO(const struct extent_state *state, unsigned long IP),
Jeff Mahoney143bede2012-03-01 14:56:26 +01001305
1306 TP_ARGS(state, IP),
1307
1308 TP_STRUCT__entry(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001309 __field(const struct extent_state *, state)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001310 __field(unsigned long, ip)
1311 ),
1312
1313 TP_fast_assign(
1314 __entry->state = state,
1315 __entry->ip = IP
1316 ),
1317
David Sterba562a7a02017-01-06 15:51:36 +01001318 TP_printk("state=%p caller=%pS", __entry->state,
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001319 (const void *)__entry->ip)
Jeff Mahoney143bede2012-03-01 14:56:26 +01001320);
1321
Qu Wenruo52483bc2014-03-06 04:19:50 +00001322DECLARE_EVENT_CLASS(btrfs__work,
1323
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001324 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001325
1326 TP_ARGS(work),
1327
Jeff Mahoneybc074522016-06-09 17:27:55 -04001328 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001329 __field( const void *, work )
1330 __field( const void *, wq )
1331 __field( const void *, func )
1332 __field( const void *, ordered_func )
1333 __field( const void *, ordered_free )
1334 __field( const void *, normal_work )
Qu Wenruo52483bc2014-03-06 04:19:50 +00001335 ),
1336
Jeff Mahoneybc074522016-06-09 17:27:55 -04001337 TP_fast_assign_btrfs(btrfs_work_owner(work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001338 __entry->work = work;
1339 __entry->wq = work->wq;
1340 __entry->func = work->func;
1341 __entry->ordered_func = work->ordered_func;
1342 __entry->ordered_free = work->ordered_free;
Liu Bob38a6252014-08-12 16:33:17 +08001343 __entry->normal_work = &work->normal_work;
Qu Wenruo52483bc2014-03-06 04:19:50 +00001344 ),
1345
David Sterba562a7a02017-01-06 15:51:36 +01001346 TP_printk_btrfs("work=%p (normal_work=%p) wq=%p func=%pf ordered_func=%p "
1347 "ordered_free=%p",
Liu Bob38a6252014-08-12 16:33:17 +08001348 __entry->work, __entry->normal_work, __entry->wq,
1349 __entry->func, __entry->ordered_func, __entry->ordered_free)
Qu Wenruo52483bc2014-03-06 04:19:50 +00001350);
1351
David Sterbaac0c7cf2017-01-06 14:12:51 +01001352/*
1353 * For situiations when the work is freed, we pass fs_info and a tag that that
1354 * matches address of the work structure so it can be paired with the
1355 * scheduling event.
1356 */
Qu Wenruo52483bc2014-03-06 04:19:50 +00001357DECLARE_EVENT_CLASS(btrfs__work__done,
1358
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001359 TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001360
David Sterbaac0c7cf2017-01-06 14:12:51 +01001361 TP_ARGS(fs_info, wtag),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001362
Jeff Mahoneybc074522016-06-09 17:27:55 -04001363 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001364 __field( const void *, wtag )
Qu Wenruo52483bc2014-03-06 04:19:50 +00001365 ),
1366
David Sterbaac0c7cf2017-01-06 14:12:51 +01001367 TP_fast_assign_btrfs(fs_info,
1368 __entry->wtag = wtag;
Qu Wenruo52483bc2014-03-06 04:19:50 +00001369 ),
1370
David Sterbaac0c7cf2017-01-06 14:12:51 +01001371 TP_printk_btrfs("work->%p", __entry->wtag)
Qu Wenruo52483bc2014-03-06 04:19:50 +00001372);
1373
1374DEFINE_EVENT(btrfs__work, btrfs_work_queued,
1375
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001376 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001377
1378 TP_ARGS(work)
1379);
1380
1381DEFINE_EVENT(btrfs__work, btrfs_work_sched,
1382
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001383 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001384
1385 TP_ARGS(work)
1386);
1387
Qu Wenruo52483bc2014-03-06 04:19:50 +00001388DEFINE_EVENT(btrfs__work__done, btrfs_all_work_done,
1389
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001390 TP_PROTO(const struct btrfs_fs_info *fs_info, const void *wtag),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001391
David Sterbaac0c7cf2017-01-06 14:12:51 +01001392 TP_ARGS(fs_info, wtag)
Qu Wenruo52483bc2014-03-06 04:19:50 +00001393);
1394
1395DEFINE_EVENT(btrfs__work, btrfs_ordered_sched,
1396
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001397 TP_PROTO(const struct btrfs_work *work),
Qu Wenruo52483bc2014-03-06 04:19:50 +00001398
1399 TP_ARGS(work)
1400);
1401
Qu Wenruoc3a46892014-03-12 08:05:33 +00001402DECLARE_EVENT_CLASS(btrfs__workqueue,
1403
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001404 TP_PROTO(const struct __btrfs_workqueue *wq,
1405 const char *name, int high),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001406
1407 TP_ARGS(wq, name, high),
1408
Jeff Mahoneybc074522016-06-09 17:27:55 -04001409 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001410 __field( const void *, wq )
Qu Wenruoc3a46892014-03-12 08:05:33 +00001411 __string( name, name )
1412 __field( int , high )
1413 ),
1414
Jeff Mahoneybc074522016-06-09 17:27:55 -04001415 TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001416 __entry->wq = wq;
1417 __assign_str(name, name);
1418 __entry->high = high;
1419 ),
1420
David Sterba562a7a02017-01-06 15:51:36 +01001421 TP_printk_btrfs("name=%s%s wq=%p", __get_str(name),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001422 __print_flags(__entry->high, "",
1423 {(WQ_HIGHPRI), "-high"}),
1424 __entry->wq)
1425);
1426
1427DEFINE_EVENT(btrfs__workqueue, btrfs_workqueue_alloc,
1428
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001429 TP_PROTO(const struct __btrfs_workqueue *wq,
1430 const char *name, int high),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001431
1432 TP_ARGS(wq, name, high)
1433);
1434
1435DECLARE_EVENT_CLASS(btrfs__workqueue_done,
1436
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001437 TP_PROTO(const struct __btrfs_workqueue *wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001438
1439 TP_ARGS(wq),
1440
Jeff Mahoneybc074522016-06-09 17:27:55 -04001441 TP_STRUCT__entry_btrfs(
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001442 __field( const void *, wq )
Qu Wenruoc3a46892014-03-12 08:05:33 +00001443 ),
1444
Jeff Mahoneybc074522016-06-09 17:27:55 -04001445 TP_fast_assign_btrfs(btrfs_workqueue_owner(wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001446 __entry->wq = wq;
1447 ),
1448
Jeff Mahoneybc074522016-06-09 17:27:55 -04001449 TP_printk_btrfs("wq=%p", __entry->wq)
Qu Wenruoc3a46892014-03-12 08:05:33 +00001450);
1451
1452DEFINE_EVENT(btrfs__workqueue_done, btrfs_workqueue_destroy,
1453
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001454 TP_PROTO(const struct __btrfs_workqueue *wq),
Qu Wenruoc3a46892014-03-12 08:05:33 +00001455
1456 TP_ARGS(wq)
1457);
Qu Wenruo52483bc2014-03-06 04:19:50 +00001458
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001459#define BTRFS_QGROUP_OPERATIONS \
1460 { QGROUP_RESERVE, "reserve" }, \
1461 { QGROUP_RELEASE, "release" }, \
1462 { QGROUP_FREE, "free" }
1463
1464DECLARE_EVENT_CLASS(btrfs__qgroup_rsv_data,
1465
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001466 TP_PROTO(const struct inode *inode, u64 start, u64 len,
1467 u64 reserved, int op),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001468
1469 TP_ARGS(inode, start, len, reserved, op),
1470
Jeff Mahoneybc074522016-06-09 17:27:55 -04001471 TP_STRUCT__entry_btrfs(
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001472 __field( u64, rootid )
David Sterbaf8f8e182018-04-03 20:57:21 +02001473 __field( u64, ino )
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001474 __field( u64, start )
1475 __field( u64, len )
1476 __field( u64, reserved )
1477 __field( int, op )
1478 ),
1479
Jeff Mahoneybc074522016-06-09 17:27:55 -04001480 TP_fast_assign_btrfs(btrfs_sb(inode->i_sb),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001481 __entry->rootid = BTRFS_I(inode)->root->objectid;
David Sterbaf8f8e182018-04-03 20:57:21 +02001482 __entry->ino = btrfs_ino(BTRFS_I(inode));
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001483 __entry->start = start;
1484 __entry->len = len;
1485 __entry->reserved = reserved;
1486 __entry->op = op;
1487 ),
1488
David Sterbaf8f8e182018-04-03 20:57:21 +02001489 TP_printk_btrfs("root=%llu ino=%llu start=%llu len=%llu reserved=%llu op=%s",
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001490 __entry->rootid, __entry->ino, __entry->start, __entry->len,
1491 __entry->reserved,
1492 __print_flags((unsigned long)__entry->op, "",
1493 BTRFS_QGROUP_OPERATIONS)
1494 )
1495);
1496
1497DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_reserve_data,
1498
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001499 TP_PROTO(const struct inode *inode, u64 start, u64 len,
1500 u64 reserved, int op),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001501
1502 TP_ARGS(inode, start, len, reserved, op)
1503);
1504
1505DEFINE_EVENT(btrfs__qgroup_rsv_data, btrfs_qgroup_release_data,
1506
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001507 TP_PROTO(const struct inode *inode, u64 start, u64 len,
1508 u64 reserved, int op),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001509
1510 TP_ARGS(inode, start, len, reserved, op)
1511);
1512
1513DECLARE_EVENT_CLASS(btrfs__qgroup_delayed_ref,
1514
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001515 TP_PROTO(const struct btrfs_fs_info *fs_info,
1516 u64 ref_root, u64 reserved),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001517
Jeff Mahoneybc074522016-06-09 17:27:55 -04001518 TP_ARGS(fs_info, ref_root, reserved),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001519
Jeff Mahoneybc074522016-06-09 17:27:55 -04001520 TP_STRUCT__entry_btrfs(
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001521 __field( u64, ref_root )
1522 __field( u64, reserved )
1523 ),
1524
Jeff Mahoneybc074522016-06-09 17:27:55 -04001525 TP_fast_assign_btrfs(fs_info,
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001526 __entry->ref_root = ref_root;
1527 __entry->reserved = reserved;
1528 ),
1529
David Sterba562a7a02017-01-06 15:51:36 +01001530 TP_printk_btrfs("root=%llu reserved=%llu op=free",
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001531 __entry->ref_root, __entry->reserved)
1532);
1533
1534DEFINE_EVENT(btrfs__qgroup_delayed_ref, btrfs_qgroup_free_delayed_ref,
1535
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001536 TP_PROTO(const struct btrfs_fs_info *fs_info,
1537 u64 ref_root, u64 reserved),
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001538
Jeff Mahoneybc074522016-06-09 17:27:55 -04001539 TP_ARGS(fs_info, ref_root, reserved)
Qu Wenruo81fb6f72015-09-28 16:57:53 +08001540);
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001541
1542DECLARE_EVENT_CLASS(btrfs_qgroup_extent,
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001543 TP_PROTO(const struct btrfs_fs_info *fs_info,
1544 const struct btrfs_qgroup_extent_record *rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001545
Jeff Mahoneybc074522016-06-09 17:27:55 -04001546 TP_ARGS(fs_info, rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001547
Jeff Mahoneybc074522016-06-09 17:27:55 -04001548 TP_STRUCT__entry_btrfs(
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001549 __field( u64, bytenr )
1550 __field( u64, num_bytes )
1551 ),
1552
Jeff Mahoneybc074522016-06-09 17:27:55 -04001553 TP_fast_assign_btrfs(fs_info,
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001554 __entry->bytenr = rec->bytenr,
1555 __entry->num_bytes = rec->num_bytes;
1556 ),
1557
David Sterba562a7a02017-01-06 15:51:36 +01001558 TP_printk_btrfs("bytenr=%llu num_bytes=%llu",
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001559 (unsigned long long)__entry->bytenr,
1560 (unsigned long long)__entry->num_bytes)
1561);
1562
1563DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_account_extents,
1564
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001565 TP_PROTO(const struct btrfs_fs_info *fs_info,
1566 const struct btrfs_qgroup_extent_record *rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001567
Jeff Mahoneybc074522016-06-09 17:27:55 -04001568 TP_ARGS(fs_info, rec)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001569);
1570
Qu Wenruo50b3e042016-10-18 09:31:27 +08001571DEFINE_EVENT(btrfs_qgroup_extent, btrfs_qgroup_trace_extent,
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001572
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001573 TP_PROTO(const struct btrfs_fs_info *fs_info,
1574 const struct btrfs_qgroup_extent_record *rec),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001575
Jeff Mahoneybc074522016-06-09 17:27:55 -04001576 TP_ARGS(fs_info, rec)
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001577);
1578
1579TRACE_EVENT(btrfs_qgroup_account_extent,
1580
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001581 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 bytenr,
Jeff Mahoneybc074522016-06-09 17:27:55 -04001582 u64 num_bytes, u64 nr_old_roots, u64 nr_new_roots),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001583
Jeff Mahoneybc074522016-06-09 17:27:55 -04001584 TP_ARGS(fs_info, bytenr, num_bytes, nr_old_roots, nr_new_roots),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001585
Jeff Mahoneybc074522016-06-09 17:27:55 -04001586 TP_STRUCT__entry_btrfs(
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001587 __field( u64, bytenr )
1588 __field( u64, num_bytes )
1589 __field( u64, nr_old_roots )
1590 __field( u64, nr_new_roots )
1591 ),
1592
Jeff Mahoneybc074522016-06-09 17:27:55 -04001593 TP_fast_assign_btrfs(fs_info,
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001594 __entry->bytenr = bytenr;
1595 __entry->num_bytes = num_bytes;
1596 __entry->nr_old_roots = nr_old_roots;
1597 __entry->nr_new_roots = nr_new_roots;
1598 ),
1599
David Sterba562a7a02017-01-06 15:51:36 +01001600 TP_printk_btrfs("bytenr=%llu num_bytes=%llu nr_old_roots=%llu "
1601 "nr_new_roots=%llu",
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001602 __entry->bytenr,
1603 __entry->num_bytes,
1604 __entry->nr_old_roots,
1605 __entry->nr_new_roots)
1606);
1607
1608TRACE_EVENT(qgroup_update_counters,
1609
Jeff Mahoney9a35b632017-06-28 21:56:54 -06001610 TP_PROTO(const struct btrfs_fs_info *fs_info, u64 qgid,
Jeff Mahoneybc074522016-06-09 17:27:55 -04001611 u64 cur_old_count, u64 cur_new_count),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001612
Jeff Mahoneybc074522016-06-09 17:27:55 -04001613 TP_ARGS(fs_info, qgid, cur_old_count, cur_new_count),
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001614
Jeff Mahoneybc074522016-06-09 17:27:55 -04001615 TP_STRUCT__entry_btrfs(
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001616 __field( u64, qgid )
1617 __field( u64, cur_old_count )
1618 __field( u64, cur_new_count )
1619 ),
1620
Jeff Mahoneybc074522016-06-09 17:27:55 -04001621 TP_fast_assign_btrfs(fs_info,
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001622 __entry->qgid = qgid;
1623 __entry->cur_old_count = cur_old_count;
1624 __entry->cur_new_count = cur_new_count;
1625 ),
1626
David Sterba562a7a02017-01-06 15:51:36 +01001627 TP_printk_btrfs("qgid=%llu cur_old_count=%llu cur_new_count=%llu",
Mark Fasheh0f5dcf82016-03-29 17:19:55 -07001628 __entry->qgid,
1629 __entry->cur_old_count,
1630 __entry->cur_new_count)
1631);
1632
Qu Wenruo3159fe72017-03-13 15:52:08 +08001633TRACE_EVENT(qgroup_update_reserve,
1634
1635 TP_PROTO(struct btrfs_fs_info *fs_info, struct btrfs_qgroup *qgroup,
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001636 s64 diff, int type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001637
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001638 TP_ARGS(fs_info, qgroup, diff, type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001639
1640 TP_STRUCT__entry_btrfs(
1641 __field( u64, qgid )
1642 __field( u64, cur_reserved )
1643 __field( s64, diff )
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001644 __field( int, type )
Qu Wenruo3159fe72017-03-13 15:52:08 +08001645 ),
1646
1647 TP_fast_assign_btrfs(fs_info,
1648 __entry->qgid = qgroup->qgroupid;
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001649 __entry->cur_reserved = qgroup->rsv.values[type];
Qu Wenruo3159fe72017-03-13 15:52:08 +08001650 __entry->diff = diff;
1651 ),
1652
Qu Wenruo64ee4e72017-12-12 15:34:27 +08001653 TP_printk_btrfs("qgid=%llu type=%s cur_reserved=%llu diff=%lld",
1654 __entry->qgid, show_qgroup_rsv_type(__entry->type),
1655 __entry->cur_reserved, __entry->diff)
Qu Wenruo3159fe72017-03-13 15:52:08 +08001656);
1657
1658TRACE_EVENT(qgroup_meta_reserve,
1659
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001660 TP_PROTO(struct btrfs_root *root, s64 diff, int type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001661
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001662 TP_ARGS(root, diff, type),
Qu Wenruo3159fe72017-03-13 15:52:08 +08001663
1664 TP_STRUCT__entry_btrfs(
1665 __field( u64, refroot )
1666 __field( s64, diff )
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001667 __field( int, type )
Qu Wenruo3159fe72017-03-13 15:52:08 +08001668 ),
1669
1670 TP_fast_assign_btrfs(root->fs_info,
1671 __entry->refroot = root->objectid;
1672 __entry->diff = diff;
1673 ),
1674
Qu Wenruo4ee0d882017-12-12 15:34:35 +08001675 TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
1676 show_root_type(__entry->refroot),
1677 show_qgroup_rsv_type(__entry->type), __entry->diff)
1678);
1679
1680TRACE_EVENT(qgroup_meta_convert,
1681
1682 TP_PROTO(struct btrfs_root *root, s64 diff),
1683
1684 TP_ARGS(root, diff),
1685
1686 TP_STRUCT__entry_btrfs(
1687 __field( u64, refroot )
1688 __field( s64, diff )
1689 __field( int, type )
1690 ),
1691
1692 TP_fast_assign_btrfs(root->fs_info,
1693 __entry->refroot = root->objectid;
1694 __entry->diff = diff;
1695 ),
1696
1697 TP_printk_btrfs("refroot=%llu(%s) type=%s->%s diff=%lld",
1698 show_root_type(__entry->refroot),
1699 show_qgroup_rsv_type(BTRFS_QGROUP_RSV_META_PREALLOC),
1700 show_qgroup_rsv_type(BTRFS_QGROUP_RSV_META_PERTRANS),
1701 __entry->diff)
1702);
1703
1704TRACE_EVENT(qgroup_meta_free_all_pertrans,
1705
1706 TP_PROTO(struct btrfs_root *root),
1707
1708 TP_ARGS(root),
1709
1710 TP_STRUCT__entry_btrfs(
1711 __field( u64, refroot )
1712 __field( s64, diff )
1713 __field( int, type )
1714 ),
1715
1716 TP_fast_assign_btrfs(root->fs_info,
1717 __entry->refroot = root->objectid;
1718 spin_lock(&root->qgroup_meta_rsv_lock);
1719 __entry->diff = -(s64)root->qgroup_meta_rsv_pertrans;
1720 spin_unlock(&root->qgroup_meta_rsv_lock);
1721 __entry->type = BTRFS_QGROUP_RSV_META_PERTRANS;
1722 ),
1723
1724 TP_printk_btrfs("refroot=%llu(%s) type=%s diff=%lld",
1725 show_root_type(__entry->refroot),
1726 show_qgroup_rsv_type(__entry->type), __entry->diff)
Qu Wenruo3159fe72017-03-13 15:52:08 +08001727);
1728
Jeff Mahoney00142752017-07-12 16:20:08 -06001729DECLARE_EVENT_CLASS(btrfs__prelim_ref,
1730 TP_PROTO(const struct btrfs_fs_info *fs_info,
1731 const struct prelim_ref *oldref,
1732 const struct prelim_ref *newref, u64 tree_size),
1733 TP_ARGS(fs_info, newref, oldref, tree_size),
1734
1735 TP_STRUCT__entry_btrfs(
1736 __field( u64, root_id )
1737 __field( u64, objectid )
1738 __field( u8, type )
1739 __field( u64, offset )
1740 __field( int, level )
1741 __field( int, old_count )
1742 __field( u64, parent )
1743 __field( u64, bytenr )
1744 __field( int, mod_count )
1745 __field( u64, tree_size )
1746 ),
1747
1748 TP_fast_assign_btrfs(fs_info,
1749 __entry->root_id = oldref->root_id;
1750 __entry->objectid = oldref->key_for_search.objectid;
1751 __entry->type = oldref->key_for_search.type;
1752 __entry->offset = oldref->key_for_search.offset;
1753 __entry->level = oldref->level;
1754 __entry->old_count = oldref->count;
1755 __entry->parent = oldref->parent;
1756 __entry->bytenr = oldref->wanted_disk_byte;
1757 __entry->mod_count = newref ? newref->count : 0;
1758 __entry->tree_size = tree_size;
1759 ),
1760
1761 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 +02001762 __entry->root_id,
1763 __entry->objectid, __entry->type,
1764 __entry->offset, __entry->level,
Jeff Mahoney00142752017-07-12 16:20:08 -06001765 __entry->old_count, __entry->mod_count,
1766 __entry->old_count + __entry->mod_count,
David Sterba8eec8462018-04-03 21:15:11 +02001767 __entry->parent,
1768 __entry->bytenr,
1769 __entry->tree_size)
Jeff Mahoney00142752017-07-12 16:20:08 -06001770);
1771
1772DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_merge,
1773 TP_PROTO(const struct btrfs_fs_info *fs_info,
1774 const struct prelim_ref *oldref,
1775 const struct prelim_ref *newref, u64 tree_size),
1776 TP_ARGS(fs_info, oldref, newref, tree_size)
1777);
1778
1779DEFINE_EVENT(btrfs__prelim_ref, btrfs_prelim_ref_insert,
1780 TP_PROTO(const struct btrfs_fs_info *fs_info,
1781 const struct prelim_ref *oldref,
1782 const struct prelim_ref *newref, u64 tree_size),
1783 TP_ARGS(fs_info, oldref, newref, tree_size)
1784);
1785
Josef Bacikdd48d402017-10-19 14:15:56 -04001786TRACE_EVENT(btrfs_inode_mod_outstanding_extents,
1787 TP_PROTO(struct btrfs_root *root, u64 ino, int mod),
1788
1789 TP_ARGS(root, ino, mod),
1790
1791 TP_STRUCT__entry_btrfs(
1792 __field( u64, root_objectid )
1793 __field( u64, ino )
1794 __field( int, mod )
1795 ),
1796
1797 TP_fast_assign_btrfs(root->fs_info,
1798 __entry->root_objectid = root->objectid;
1799 __entry->ino = ino;
1800 __entry->mod = mod;
1801 ),
1802
1803 TP_printk_btrfs("root=%llu(%s) ino=%llu mod=%d",
1804 show_root_type(__entry->root_objectid),
David Sterba8eec8462018-04-03 21:15:11 +02001805 __entry->ino, __entry->mod)
Josef Bacikdd48d402017-10-19 14:15:56 -04001806);
Qu Wenruo3dca5c92018-04-26 14:24:25 +08001807
liubo1abe9b82011-03-24 11:18:59 +00001808#endif /* _TRACE_BTRFS_H */
1809
1810/* This part must be outside protection */
1811#include <trace/define_trace.h>