2 * Copyright (c) 2009, Christoph Hellwig
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #define TRACE_SYSTEM xfs
21 #if !defined(_TRACE_XFS_H) || defined(TRACE_HEADER_MULTI_READ)
24 #include <linux/tracepoint.h>
28 struct xfs_attr_list_context
;
29 struct xfs_buf_log_item
;
31 struct xfs_da_node_entry
;
37 struct xlog_recover_item
;
38 struct xfs_buf_log_format
;
39 struct xfs_inode_log_format
;
41 DECLARE_EVENT_CLASS(xfs_attr_list_class
,
42 TP_PROTO(struct xfs_attr_list_context
*ctx
),
46 __field(xfs_ino_t
, ino
)
50 __field(void *, alist
)
58 __entry
->dev
= VFS_I(ctx
->dp
)->i_sb
->s_dev
;
59 __entry
->ino
= ctx
->dp
->i_ino
;
60 __entry
->hashval
= ctx
->cursor
->hashval
;
61 __entry
->blkno
= ctx
->cursor
->blkno
;
62 __entry
->offset
= ctx
->cursor
->offset
;
63 __entry
->alist
= ctx
->alist
;
64 __entry
->bufsize
= ctx
->bufsize
;
65 __entry
->count
= ctx
->count
;
66 __entry
->firstu
= ctx
->firstu
;
67 __entry
->flags
= ctx
->flags
;
69 TP_printk("dev %d:%d ino 0x%llx cursor h/b/o 0x%x/0x%x/%u dupcnt %u "
70 "alist 0x%p size %u count %u firstu %u flags %d %s",
71 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
82 __print_flags(__entry
->flags
, "|", XFS_ATTR_FLAGS
)
86 #define DEFINE_ATTR_LIST_EVENT(name) \
87 DEFINE_EVENT(xfs_attr_list_class, name, \
88 TP_PROTO(struct xfs_attr_list_context *ctx), \
90 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_sf
);
91 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_sf_all
);
92 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_leaf
);
93 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_leaf_end
);
94 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_full
);
95 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_add
);
96 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_wrong_blk
);
97 DEFINE_ATTR_LIST_EVENT(xfs_attr_list_notfound
);
99 DECLARE_EVENT_CLASS(xfs_perag_class
,
100 TP_PROTO(struct xfs_mount
*mp
, xfs_agnumber_t agno
, int refcount
,
101 unsigned long caller_ip
),
102 TP_ARGS(mp
, agno
, refcount
, caller_ip
),
105 __field(xfs_agnumber_t
, agno
)
106 __field(int, refcount
)
107 __field(unsigned long, caller_ip
)
110 __entry
->dev
= mp
->m_super
->s_dev
;
111 __entry
->agno
= agno
;
112 __entry
->refcount
= refcount
;
113 __entry
->caller_ip
= caller_ip
;
115 TP_printk("dev %d:%d agno %u refcount %d caller %pf",
116 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
119 (char *)__entry
->caller_ip
)
122 #define DEFINE_PERAG_REF_EVENT(name) \
123 DEFINE_EVENT(xfs_perag_class, name, \
124 TP_PROTO(struct xfs_mount *mp, xfs_agnumber_t agno, int refcount, \
125 unsigned long caller_ip), \
126 TP_ARGS(mp, agno, refcount, caller_ip))
127 DEFINE_PERAG_REF_EVENT(xfs_perag_get
);
128 DEFINE_PERAG_REF_EVENT(xfs_perag_get_tag
);
129 DEFINE_PERAG_REF_EVENT(xfs_perag_put
);
130 DEFINE_PERAG_REF_EVENT(xfs_perag_set_reclaim
);
131 DEFINE_PERAG_REF_EVENT(xfs_perag_clear_reclaim
);
133 TRACE_EVENT(xfs_attr_list_node_descend
,
134 TP_PROTO(struct xfs_attr_list_context
*ctx
,
135 struct xfs_da_node_entry
*btree
),
139 __field(xfs_ino_t
, ino
)
140 __field(u32
, hashval
)
143 __field(void *, alist
)
144 __field(int, bufsize
)
149 __field(u32
, bt_hashval
)
150 __field(u32
, bt_before
)
153 __entry
->dev
= VFS_I(ctx
->dp
)->i_sb
->s_dev
;
154 __entry
->ino
= ctx
->dp
->i_ino
;
155 __entry
->hashval
= ctx
->cursor
->hashval
;
156 __entry
->blkno
= ctx
->cursor
->blkno
;
157 __entry
->offset
= ctx
->cursor
->offset
;
158 __entry
->alist
= ctx
->alist
;
159 __entry
->bufsize
= ctx
->bufsize
;
160 __entry
->count
= ctx
->count
;
161 __entry
->firstu
= ctx
->firstu
;
162 __entry
->flags
= ctx
->flags
;
163 __entry
->bt_hashval
= be32_to_cpu(btree
->hashval
);
164 __entry
->bt_before
= be32_to_cpu(btree
->before
);
166 TP_printk("dev %d:%d ino 0x%llx cursor h/b/o 0x%x/0x%x/%u dupcnt %u "
167 "alist 0x%p size %u count %u firstu %u flags %d %s "
168 "node hashval %u, node before %u",
169 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
180 __print_flags(__entry
->flags
, "|", XFS_ATTR_FLAGS
),
185 TRACE_EVENT(xfs_iext_insert
,
186 TP_PROTO(struct xfs_inode
*ip
, xfs_extnum_t idx
,
187 struct xfs_bmbt_irec
*r
, int state
, unsigned long caller_ip
),
188 TP_ARGS(ip
, idx
, r
, state
, caller_ip
),
191 __field(xfs_ino_t
, ino
)
192 __field(xfs_extnum_t
, idx
)
193 __field(xfs_fileoff_t
, startoff
)
194 __field(xfs_fsblock_t
, startblock
)
195 __field(xfs_filblks_t
, blockcount
)
196 __field(xfs_exntst_t
, state
)
197 __field(int, bmap_state
)
198 __field(unsigned long, caller_ip
)
201 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
202 __entry
->ino
= ip
->i_ino
;
204 __entry
->startoff
= r
->br_startoff
;
205 __entry
->startblock
= r
->br_startblock
;
206 __entry
->blockcount
= r
->br_blockcount
;
207 __entry
->state
= r
->br_state
;
208 __entry
->bmap_state
= state
;
209 __entry
->caller_ip
= caller_ip
;
211 TP_printk("dev %d:%d ino 0x%llx state %s idx %ld "
212 "offset %lld block %lld count %lld flag %d caller %pf",
213 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
215 __print_flags(__entry
->bmap_state
, "|", XFS_BMAP_EXT_FLAGS
),
218 (__int64_t
)__entry
->startblock
,
221 (char *)__entry
->caller_ip
)
224 DECLARE_EVENT_CLASS(xfs_bmap_class
,
225 TP_PROTO(struct xfs_inode
*ip
, xfs_extnum_t idx
, int state
,
226 unsigned long caller_ip
),
227 TP_ARGS(ip
, idx
, state
, caller_ip
),
230 __field(xfs_ino_t
, ino
)
231 __field(xfs_extnum_t
, idx
)
232 __field(xfs_fileoff_t
, startoff
)
233 __field(xfs_fsblock_t
, startblock
)
234 __field(xfs_filblks_t
, blockcount
)
235 __field(xfs_exntst_t
, state
)
236 __field(int, bmap_state
)
237 __field(unsigned long, caller_ip
)
240 struct xfs_ifork
*ifp
= (state
& BMAP_ATTRFORK
) ?
241 ip
->i_afp
: &ip
->i_df
;
242 struct xfs_bmbt_irec r
;
244 xfs_bmbt_get_all(xfs_iext_get_ext(ifp
, idx
), &r
);
245 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
246 __entry
->ino
= ip
->i_ino
;
248 __entry
->startoff
= r
.br_startoff
;
249 __entry
->startblock
= r
.br_startblock
;
250 __entry
->blockcount
= r
.br_blockcount
;
251 __entry
->state
= r
.br_state
;
252 __entry
->bmap_state
= state
;
253 __entry
->caller_ip
= caller_ip
;
255 TP_printk("dev %d:%d ino 0x%llx state %s idx %ld "
256 "offset %lld block %lld count %lld flag %d caller %pf",
257 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
259 __print_flags(__entry
->bmap_state
, "|", XFS_BMAP_EXT_FLAGS
),
262 (__int64_t
)__entry
->startblock
,
265 (char *)__entry
->caller_ip
)
268 #define DEFINE_BMAP_EVENT(name) \
269 DEFINE_EVENT(xfs_bmap_class, name, \
270 TP_PROTO(struct xfs_inode *ip, xfs_extnum_t idx, int state, \
271 unsigned long caller_ip), \
272 TP_ARGS(ip, idx, state, caller_ip))
273 DEFINE_BMAP_EVENT(xfs_iext_remove
);
274 DEFINE_BMAP_EVENT(xfs_bmap_pre_update
);
275 DEFINE_BMAP_EVENT(xfs_bmap_post_update
);
276 DEFINE_BMAP_EVENT(xfs_extlist
);
278 DECLARE_EVENT_CLASS(xfs_buf_class
,
279 TP_PROTO(struct xfs_buf
*bp
, unsigned long caller_ip
),
280 TP_ARGS(bp
, caller_ip
),
283 __field(xfs_daddr_t
, bno
)
284 __field(size_t, buffer_length
)
286 __field(int, pincount
)
287 __field(unsigned, lockval
)
288 __field(unsigned, flags
)
289 __field(unsigned long, caller_ip
)
292 __entry
->dev
= bp
->b_target
->bt_dev
;
293 __entry
->bno
= bp
->b_bn
;
294 __entry
->buffer_length
= bp
->b_buffer_length
;
295 __entry
->hold
= atomic_read(&bp
->b_hold
);
296 __entry
->pincount
= atomic_read(&bp
->b_pin_count
);
297 __entry
->lockval
= bp
->b_sema
.count
;
298 __entry
->flags
= bp
->b_flags
;
299 __entry
->caller_ip
= caller_ip
;
301 TP_printk("dev %d:%d bno 0x%llx len 0x%zx hold %d pincount %d "
302 "lock %d flags %s caller %pf",
303 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
304 (unsigned long long)__entry
->bno
,
305 __entry
->buffer_length
,
309 __print_flags(__entry
->flags
, "|", XFS_BUF_FLAGS
),
310 (void *)__entry
->caller_ip
)
313 #define DEFINE_BUF_EVENT(name) \
314 DEFINE_EVENT(xfs_buf_class, name, \
315 TP_PROTO(struct xfs_buf *bp, unsigned long caller_ip), \
316 TP_ARGS(bp, caller_ip))
317 DEFINE_BUF_EVENT(xfs_buf_init
);
318 DEFINE_BUF_EVENT(xfs_buf_free
);
319 DEFINE_BUF_EVENT(xfs_buf_hold
);
320 DEFINE_BUF_EVENT(xfs_buf_rele
);
321 DEFINE_BUF_EVENT(xfs_buf_iodone
);
322 DEFINE_BUF_EVENT(xfs_buf_iorequest
);
323 DEFINE_BUF_EVENT(xfs_buf_bawrite
);
324 DEFINE_BUF_EVENT(xfs_buf_lock
);
325 DEFINE_BUF_EVENT(xfs_buf_lock_done
);
326 DEFINE_BUF_EVENT(xfs_buf_trylock
);
327 DEFINE_BUF_EVENT(xfs_buf_unlock
);
328 DEFINE_BUF_EVENT(xfs_buf_iowait
);
329 DEFINE_BUF_EVENT(xfs_buf_iowait_done
);
330 DEFINE_BUF_EVENT(xfs_buf_delwri_queue
);
331 DEFINE_BUF_EVENT(xfs_buf_delwri_dequeue
);
332 DEFINE_BUF_EVENT(xfs_buf_delwri_split
);
333 DEFINE_BUF_EVENT(xfs_buf_get_uncached
);
334 DEFINE_BUF_EVENT(xfs_bdstrat_shut
);
335 DEFINE_BUF_EVENT(xfs_buf_item_relse
);
336 DEFINE_BUF_EVENT(xfs_buf_item_iodone
);
337 DEFINE_BUF_EVENT(xfs_buf_item_iodone_async
);
338 DEFINE_BUF_EVENT(xfs_buf_error_relse
);
339 DEFINE_BUF_EVENT(xfs_trans_read_buf_io
);
340 DEFINE_BUF_EVENT(xfs_trans_read_buf_shut
);
342 /* not really buffer traces, but the buf provides useful information */
343 DEFINE_BUF_EVENT(xfs_btree_corrupt
);
344 DEFINE_BUF_EVENT(xfs_da_btree_corrupt
);
345 DEFINE_BUF_EVENT(xfs_reset_dqcounts
);
346 DEFINE_BUF_EVENT(xfs_inode_item_push
);
348 /* pass flags explicitly */
349 DECLARE_EVENT_CLASS(xfs_buf_flags_class
,
350 TP_PROTO(struct xfs_buf
*bp
, unsigned flags
, unsigned long caller_ip
),
351 TP_ARGS(bp
, flags
, caller_ip
),
354 __field(xfs_daddr_t
, bno
)
355 __field(size_t, buffer_length
)
357 __field(int, pincount
)
358 __field(unsigned, lockval
)
359 __field(unsigned, flags
)
360 __field(unsigned long, caller_ip
)
363 __entry
->dev
= bp
->b_target
->bt_dev
;
364 __entry
->bno
= bp
->b_bn
;
365 __entry
->buffer_length
= bp
->b_buffer_length
;
366 __entry
->flags
= flags
;
367 __entry
->hold
= atomic_read(&bp
->b_hold
);
368 __entry
->pincount
= atomic_read(&bp
->b_pin_count
);
369 __entry
->lockval
= bp
->b_sema
.count
;
370 __entry
->caller_ip
= caller_ip
;
372 TP_printk("dev %d:%d bno 0x%llx len 0x%zx hold %d pincount %d "
373 "lock %d flags %s caller %pf",
374 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
375 (unsigned long long)__entry
->bno
,
376 __entry
->buffer_length
,
380 __print_flags(__entry
->flags
, "|", XFS_BUF_FLAGS
),
381 (void *)__entry
->caller_ip
)
384 #define DEFINE_BUF_FLAGS_EVENT(name) \
385 DEFINE_EVENT(xfs_buf_flags_class, name, \
386 TP_PROTO(struct xfs_buf *bp, unsigned flags, unsigned long caller_ip), \
387 TP_ARGS(bp, flags, caller_ip))
388 DEFINE_BUF_FLAGS_EVENT(xfs_buf_find
);
389 DEFINE_BUF_FLAGS_EVENT(xfs_buf_get
);
390 DEFINE_BUF_FLAGS_EVENT(xfs_buf_read
);
392 TRACE_EVENT(xfs_buf_ioerror
,
393 TP_PROTO(struct xfs_buf
*bp
, int error
, unsigned long caller_ip
),
394 TP_ARGS(bp
, error
, caller_ip
),
397 __field(xfs_daddr_t
, bno
)
398 __field(size_t, buffer_length
)
399 __field(unsigned, flags
)
401 __field(int, pincount
)
402 __field(unsigned, lockval
)
404 __field(unsigned long, caller_ip
)
407 __entry
->dev
= bp
->b_target
->bt_dev
;
408 __entry
->bno
= bp
->b_bn
;
409 __entry
->buffer_length
= bp
->b_buffer_length
;
410 __entry
->hold
= atomic_read(&bp
->b_hold
);
411 __entry
->pincount
= atomic_read(&bp
->b_pin_count
);
412 __entry
->lockval
= bp
->b_sema
.count
;
413 __entry
->error
= error
;
414 __entry
->flags
= bp
->b_flags
;
415 __entry
->caller_ip
= caller_ip
;
417 TP_printk("dev %d:%d bno 0x%llx len 0x%zx hold %d pincount %d "
418 "lock %d error %d flags %s caller %pf",
419 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
420 (unsigned long long)__entry
->bno
,
421 __entry
->buffer_length
,
426 __print_flags(__entry
->flags
, "|", XFS_BUF_FLAGS
),
427 (void *)__entry
->caller_ip
)
430 DECLARE_EVENT_CLASS(xfs_buf_item_class
,
431 TP_PROTO(struct xfs_buf_log_item
*bip
),
435 __field(xfs_daddr_t
, buf_bno
)
436 __field(size_t, buf_len
)
437 __field(int, buf_hold
)
438 __field(int, buf_pincount
)
439 __field(int, buf_lockval
)
440 __field(unsigned, buf_flags
)
441 __field(unsigned, bli_recur
)
442 __field(int, bli_refcount
)
443 __field(unsigned, bli_flags
)
444 __field(void *, li_desc
)
445 __field(unsigned, li_flags
)
448 __entry
->dev
= bip
->bli_buf
->b_target
->bt_dev
;
449 __entry
->bli_flags
= bip
->bli_flags
;
450 __entry
->bli_recur
= bip
->bli_recur
;
451 __entry
->bli_refcount
= atomic_read(&bip
->bli_refcount
);
452 __entry
->buf_bno
= bip
->bli_buf
->b_bn
;
453 __entry
->buf_len
= bip
->bli_buf
->b_buffer_length
;
454 __entry
->buf_flags
= bip
->bli_buf
->b_flags
;
455 __entry
->buf_hold
= atomic_read(&bip
->bli_buf
->b_hold
);
456 __entry
->buf_pincount
= atomic_read(&bip
->bli_buf
->b_pin_count
);
457 __entry
->buf_lockval
= bip
->bli_buf
->b_sema
.count
;
458 __entry
->li_desc
= bip
->bli_item
.li_desc
;
459 __entry
->li_flags
= bip
->bli_item
.li_flags
;
461 TP_printk("dev %d:%d bno 0x%llx len 0x%zx hold %d pincount %d "
462 "lock %d flags %s recur %d refcount %d bliflags %s "
463 "lidesc 0x%p liflags %s",
464 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
465 (unsigned long long)__entry
->buf_bno
,
468 __entry
->buf_pincount
,
469 __entry
->buf_lockval
,
470 __print_flags(__entry
->buf_flags
, "|", XFS_BUF_FLAGS
),
472 __entry
->bli_refcount
,
473 __print_flags(__entry
->bli_flags
, "|", XFS_BLI_FLAGS
),
475 __print_flags(__entry
->li_flags
, "|", XFS_LI_FLAGS
))
478 #define DEFINE_BUF_ITEM_EVENT(name) \
479 DEFINE_EVENT(xfs_buf_item_class, name, \
480 TP_PROTO(struct xfs_buf_log_item *bip), \
482 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_size
);
483 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_size_stale
);
484 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_format
);
485 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_format_stale
);
486 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_pin
);
487 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unpin
);
488 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unpin_stale
);
489 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_trylock
);
490 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unlock
);
491 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_unlock_stale
);
492 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_committed
);
493 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_push
);
494 DEFINE_BUF_ITEM_EVENT(xfs_buf_item_pushbuf
);
495 DEFINE_BUF_ITEM_EVENT(xfs_trans_get_buf
);
496 DEFINE_BUF_ITEM_EVENT(xfs_trans_get_buf_recur
);
497 DEFINE_BUF_ITEM_EVENT(xfs_trans_getsb
);
498 DEFINE_BUF_ITEM_EVENT(xfs_trans_getsb_recur
);
499 DEFINE_BUF_ITEM_EVENT(xfs_trans_read_buf
);
500 DEFINE_BUF_ITEM_EVENT(xfs_trans_read_buf_recur
);
501 DEFINE_BUF_ITEM_EVENT(xfs_trans_log_buf
);
502 DEFINE_BUF_ITEM_EVENT(xfs_trans_brelse
);
503 DEFINE_BUF_ITEM_EVENT(xfs_trans_bjoin
);
504 DEFINE_BUF_ITEM_EVENT(xfs_trans_bhold
);
505 DEFINE_BUF_ITEM_EVENT(xfs_trans_bhold_release
);
506 DEFINE_BUF_ITEM_EVENT(xfs_trans_binval
);
508 DECLARE_EVENT_CLASS(xfs_lock_class
,
509 TP_PROTO(struct xfs_inode
*ip
, unsigned lock_flags
,
510 unsigned long caller_ip
),
511 TP_ARGS(ip
, lock_flags
, caller_ip
),
514 __field(xfs_ino_t
, ino
)
515 __field(int, lock_flags
)
516 __field(unsigned long, caller_ip
)
519 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
520 __entry
->ino
= ip
->i_ino
;
521 __entry
->lock_flags
= lock_flags
;
522 __entry
->caller_ip
= caller_ip
;
524 TP_printk("dev %d:%d ino 0x%llx flags %s caller %pf",
525 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
527 __print_flags(__entry
->lock_flags
, "|", XFS_LOCK_FLAGS
),
528 (void *)__entry
->caller_ip
)
531 #define DEFINE_LOCK_EVENT(name) \
532 DEFINE_EVENT(xfs_lock_class, name, \
533 TP_PROTO(struct xfs_inode *ip, unsigned lock_flags, \
534 unsigned long caller_ip), \
535 TP_ARGS(ip, lock_flags, caller_ip))
536 DEFINE_LOCK_EVENT(xfs_ilock
);
537 DEFINE_LOCK_EVENT(xfs_ilock_nowait
);
538 DEFINE_LOCK_EVENT(xfs_ilock_demote
);
539 DEFINE_LOCK_EVENT(xfs_iunlock
);
541 DECLARE_EVENT_CLASS(xfs_inode_class
,
542 TP_PROTO(struct xfs_inode
*ip
),
546 __field(xfs_ino_t
, ino
)
549 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
550 __entry
->ino
= ip
->i_ino
;
552 TP_printk("dev %d:%d ino 0x%llx",
553 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
557 #define DEFINE_INODE_EVENT(name) \
558 DEFINE_EVENT(xfs_inode_class, name, \
559 TP_PROTO(struct xfs_inode *ip), \
561 DEFINE_INODE_EVENT(xfs_iget_skip
);
562 DEFINE_INODE_EVENT(xfs_iget_reclaim
);
563 DEFINE_INODE_EVENT(xfs_iget_reclaim_fail
);
564 DEFINE_INODE_EVENT(xfs_iget_hit
);
565 DEFINE_INODE_EVENT(xfs_iget_miss
);
567 DEFINE_INODE_EVENT(xfs_getattr
);
568 DEFINE_INODE_EVENT(xfs_setattr
);
569 DEFINE_INODE_EVENT(xfs_readlink
);
570 DEFINE_INODE_EVENT(xfs_alloc_file_space
);
571 DEFINE_INODE_EVENT(xfs_free_file_space
);
572 DEFINE_INODE_EVENT(xfs_readdir
);
573 #ifdef CONFIG_XFS_POSIX_ACL
574 DEFINE_INODE_EVENT(xfs_get_acl
);
576 DEFINE_INODE_EVENT(xfs_vm_bmap
);
577 DEFINE_INODE_EVENT(xfs_file_ioctl
);
578 DEFINE_INODE_EVENT(xfs_file_compat_ioctl
);
579 DEFINE_INODE_EVENT(xfs_ioctl_setattr
);
580 DEFINE_INODE_EVENT(xfs_dir_fsync
);
581 DEFINE_INODE_EVENT(xfs_file_fsync
);
582 DEFINE_INODE_EVENT(xfs_destroy_inode
);
583 DEFINE_INODE_EVENT(xfs_write_inode
);
584 DEFINE_INODE_EVENT(xfs_evict_inode
);
586 DEFINE_INODE_EVENT(xfs_dquot_dqalloc
);
587 DEFINE_INODE_EVENT(xfs_dquot_dqdetach
);
589 DECLARE_EVENT_CLASS(xfs_iref_class
,
590 TP_PROTO(struct xfs_inode
*ip
, unsigned long caller_ip
),
591 TP_ARGS(ip
, caller_ip
),
594 __field(xfs_ino_t
, ino
)
596 __field(int, pincount
)
597 __field(unsigned long, caller_ip
)
600 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
601 __entry
->ino
= ip
->i_ino
;
602 __entry
->count
= atomic_read(&VFS_I(ip
)->i_count
);
603 __entry
->pincount
= atomic_read(&ip
->i_pincount
);
604 __entry
->caller_ip
= caller_ip
;
606 TP_printk("dev %d:%d ino 0x%llx count %d pincount %d caller %pf",
607 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
611 (char *)__entry
->caller_ip
)
614 #define DEFINE_IREF_EVENT(name) \
615 DEFINE_EVENT(xfs_iref_class, name, \
616 TP_PROTO(struct xfs_inode *ip, unsigned long caller_ip), \
617 TP_ARGS(ip, caller_ip))
618 DEFINE_IREF_EVENT(xfs_ihold
);
619 DEFINE_IREF_EVENT(xfs_irele
);
620 DEFINE_IREF_EVENT(xfs_inode_pin
);
621 DEFINE_IREF_EVENT(xfs_inode_unpin
);
622 DEFINE_IREF_EVENT(xfs_inode_unpin_nowait
);
624 DECLARE_EVENT_CLASS(xfs_namespace_class
,
625 TP_PROTO(struct xfs_inode
*dp
, struct xfs_name
*name
),
629 __field(xfs_ino_t
, dp_ino
)
630 __dynamic_array(char, name
, name
->len
)
633 __entry
->dev
= VFS_I(dp
)->i_sb
->s_dev
;
634 __entry
->dp_ino
= dp
->i_ino
;
635 memcpy(__get_str(name
), name
->name
, name
->len
);
637 TP_printk("dev %d:%d dp ino 0x%llx name %s",
638 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
643 #define DEFINE_NAMESPACE_EVENT(name) \
644 DEFINE_EVENT(xfs_namespace_class, name, \
645 TP_PROTO(struct xfs_inode *dp, struct xfs_name *name), \
647 DEFINE_NAMESPACE_EVENT(xfs_remove
);
648 DEFINE_NAMESPACE_EVENT(xfs_link
);
649 DEFINE_NAMESPACE_EVENT(xfs_lookup
);
650 DEFINE_NAMESPACE_EVENT(xfs_create
);
651 DEFINE_NAMESPACE_EVENT(xfs_symlink
);
653 TRACE_EVENT(xfs_rename
,
654 TP_PROTO(struct xfs_inode
*src_dp
, struct xfs_inode
*target_dp
,
655 struct xfs_name
*src_name
, struct xfs_name
*target_name
),
656 TP_ARGS(src_dp
, target_dp
, src_name
, target_name
),
659 __field(xfs_ino_t
, src_dp_ino
)
660 __field(xfs_ino_t
, target_dp_ino
)
661 __dynamic_array(char, src_name
, src_name
->len
)
662 __dynamic_array(char, target_name
, target_name
->len
)
665 __entry
->dev
= VFS_I(src_dp
)->i_sb
->s_dev
;
666 __entry
->src_dp_ino
= src_dp
->i_ino
;
667 __entry
->target_dp_ino
= target_dp
->i_ino
;
668 memcpy(__get_str(src_name
), src_name
->name
, src_name
->len
);
669 memcpy(__get_str(target_name
), target_name
->name
, target_name
->len
);
671 TP_printk("dev %d:%d src dp ino 0x%llx target dp ino 0x%llx"
672 " src name %s target name %s",
673 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
675 __entry
->target_dp_ino
,
677 __get_str(target_name
))
680 DECLARE_EVENT_CLASS(xfs_dquot_class
,
681 TP_PROTO(struct xfs_dquot
*dqp
),
686 __field(unsigned, flags
)
687 __field(unsigned, nrefs
)
688 __field(unsigned long long, res_bcount
)
689 __field(unsigned long long, bcount
)
690 __field(unsigned long long, icount
)
691 __field(unsigned long long, blk_hardlimit
)
692 __field(unsigned long long, blk_softlimit
)
693 __field(unsigned long long, ino_hardlimit
)
694 __field(unsigned long long, ino_softlimit
)
697 __entry
->dev
= dqp
->q_mount
->m_super
->s_dev
;
698 __entry
->id
= be32_to_cpu(dqp
->q_core
.d_id
);
699 __entry
->flags
= dqp
->dq_flags
;
700 __entry
->nrefs
= dqp
->q_nrefs
;
701 __entry
->res_bcount
= dqp
->q_res_bcount
;
702 __entry
->bcount
= be64_to_cpu(dqp
->q_core
.d_bcount
);
703 __entry
->icount
= be64_to_cpu(dqp
->q_core
.d_icount
);
704 __entry
->blk_hardlimit
=
705 be64_to_cpu(dqp
->q_core
.d_blk_hardlimit
);
706 __entry
->blk_softlimit
=
707 be64_to_cpu(dqp
->q_core
.d_blk_softlimit
);
708 __entry
->ino_hardlimit
=
709 be64_to_cpu(dqp
->q_core
.d_ino_hardlimit
);
710 __entry
->ino_softlimit
=
711 be64_to_cpu(dqp
->q_core
.d_ino_softlimit
);
713 TP_printk("dev %d:%d id 0x%x flags %s nrefs %u res_bc 0x%llx "
714 "bcnt 0x%llx bhardlimit 0x%llx bsoftlimit 0x%llx "
715 "icnt 0x%llx ihardlimit 0x%llx isoftlimit 0x%llx]",
716 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
718 __print_flags(__entry
->flags
, "|", XFS_DQ_FLAGS
),
722 __entry
->blk_hardlimit
,
723 __entry
->blk_softlimit
,
725 __entry
->ino_hardlimit
,
726 __entry
->ino_softlimit
)
729 #define DEFINE_DQUOT_EVENT(name) \
730 DEFINE_EVENT(xfs_dquot_class, name, \
731 TP_PROTO(struct xfs_dquot *dqp), \
733 DEFINE_DQUOT_EVENT(xfs_dqadjust
);
734 DEFINE_DQUOT_EVENT(xfs_dqreclaim_want
);
735 DEFINE_DQUOT_EVENT(xfs_dqreclaim_dirty
);
736 DEFINE_DQUOT_EVENT(xfs_dqreclaim_unlink
);
737 DEFINE_DQUOT_EVENT(xfs_dqattach_found
);
738 DEFINE_DQUOT_EVENT(xfs_dqattach_get
);
739 DEFINE_DQUOT_EVENT(xfs_dqinit
);
740 DEFINE_DQUOT_EVENT(xfs_dqreuse
);
741 DEFINE_DQUOT_EVENT(xfs_dqalloc
);
742 DEFINE_DQUOT_EVENT(xfs_dqtobp_read
);
743 DEFINE_DQUOT_EVENT(xfs_dqread
);
744 DEFINE_DQUOT_EVENT(xfs_dqread_fail
);
745 DEFINE_DQUOT_EVENT(xfs_dqlookup_found
);
746 DEFINE_DQUOT_EVENT(xfs_dqlookup_want
);
747 DEFINE_DQUOT_EVENT(xfs_dqlookup_freelist
);
748 DEFINE_DQUOT_EVENT(xfs_dqlookup_done
);
749 DEFINE_DQUOT_EVENT(xfs_dqget_hit
);
750 DEFINE_DQUOT_EVENT(xfs_dqget_miss
);
751 DEFINE_DQUOT_EVENT(xfs_dqput
);
752 DEFINE_DQUOT_EVENT(xfs_dqput_wait
);
753 DEFINE_DQUOT_EVENT(xfs_dqput_free
);
754 DEFINE_DQUOT_EVENT(xfs_dqrele
);
755 DEFINE_DQUOT_EVENT(xfs_dqflush
);
756 DEFINE_DQUOT_EVENT(xfs_dqflush_force
);
757 DEFINE_DQUOT_EVENT(xfs_dqflush_done
);
759 DECLARE_EVENT_CLASS(xfs_loggrant_class
,
760 TP_PROTO(struct log
*log
, struct xlog_ticket
*tic
),
764 __field(unsigned, trans_type
)
767 __field(int, curr_res
)
768 __field(int, unit_res
)
769 __field(unsigned int, flags
)
770 __field(int, reserveq
)
772 __field(int, grant_reserve_cycle
)
773 __field(int, grant_reserve_bytes
)
774 __field(int, grant_write_cycle
)
775 __field(int, grant_write_bytes
)
776 __field(int, curr_cycle
)
777 __field(int, curr_block
)
778 __field(xfs_lsn_t
, tail_lsn
)
781 __entry
->dev
= log
->l_mp
->m_super
->s_dev
;
782 __entry
->trans_type
= tic
->t_trans_type
;
783 __entry
->ocnt
= tic
->t_ocnt
;
784 __entry
->cnt
= tic
->t_cnt
;
785 __entry
->curr_res
= tic
->t_curr_res
;
786 __entry
->unit_res
= tic
->t_unit_res
;
787 __entry
->flags
= tic
->t_flags
;
788 __entry
->reserveq
= list_empty(&log
->l_reserveq
);
789 __entry
->writeq
= list_empty(&log
->l_writeq
);
790 xlog_crack_grant_head(&log
->l_grant_reserve_head
,
791 &__entry
->grant_reserve_cycle
,
792 &__entry
->grant_reserve_bytes
);
793 xlog_crack_grant_head(&log
->l_grant_write_head
,
794 &__entry
->grant_write_cycle
,
795 &__entry
->grant_write_bytes
);
796 __entry
->curr_cycle
= log
->l_curr_cycle
;
797 __entry
->curr_block
= log
->l_curr_block
;
798 __entry
->tail_lsn
= atomic64_read(&log
->l_tail_lsn
);
800 TP_printk("dev %d:%d type %s t_ocnt %u t_cnt %u t_curr_res %u "
801 "t_unit_res %u t_flags %s reserveq %s "
802 "writeq %s grant_reserve_cycle %d "
803 "grant_reserve_bytes %d grant_write_cycle %d "
804 "grant_write_bytes %d curr_cycle %d curr_block %d "
805 "tail_cycle %d tail_block %d",
806 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
807 __print_symbolic(__entry
->trans_type
, XFS_TRANS_TYPES
),
812 __print_flags(__entry
->flags
, "|", XLOG_TIC_FLAGS
),
813 __entry
->reserveq
? "empty" : "active",
814 __entry
->writeq
? "empty" : "active",
815 __entry
->grant_reserve_cycle
,
816 __entry
->grant_reserve_bytes
,
817 __entry
->grant_write_cycle
,
818 __entry
->grant_write_bytes
,
821 CYCLE_LSN(__entry
->tail_lsn
),
822 BLOCK_LSN(__entry
->tail_lsn
)
826 #define DEFINE_LOGGRANT_EVENT(name) \
827 DEFINE_EVENT(xfs_loggrant_class, name, \
828 TP_PROTO(struct log *log, struct xlog_ticket *tic), \
830 DEFINE_LOGGRANT_EVENT(xfs_log_done_nonperm
);
831 DEFINE_LOGGRANT_EVENT(xfs_log_done_perm
);
832 DEFINE_LOGGRANT_EVENT(xfs_log_reserve
);
833 DEFINE_LOGGRANT_EVENT(xfs_log_umount_write
);
834 DEFINE_LOGGRANT_EVENT(xfs_log_grant_enter
);
835 DEFINE_LOGGRANT_EVENT(xfs_log_grant_exit
);
836 DEFINE_LOGGRANT_EVENT(xfs_log_grant_error
);
837 DEFINE_LOGGRANT_EVENT(xfs_log_grant_sleep
);
838 DEFINE_LOGGRANT_EVENT(xfs_log_grant_wake
);
839 DEFINE_LOGGRANT_EVENT(xfs_log_grant_wake_up
);
840 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_write_enter
);
841 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_write_exit
);
842 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_write_error
);
843 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_write_sleep
);
844 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_write_wake
);
845 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_write_wake_up
);
846 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_reserve_enter
);
847 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_reserve_exit
);
848 DEFINE_LOGGRANT_EVENT(xfs_log_regrant_reserve_sub
);
849 DEFINE_LOGGRANT_EVENT(xfs_log_ungrant_enter
);
850 DEFINE_LOGGRANT_EVENT(xfs_log_ungrant_exit
);
851 DEFINE_LOGGRANT_EVENT(xfs_log_ungrant_sub
);
853 DECLARE_EVENT_CLASS(xfs_log_item_class
,
854 TP_PROTO(struct xfs_log_item
*lip
),
861 __field(xfs_lsn_t
, lsn
)
864 __entry
->dev
= lip
->li_mountp
->m_super
->s_dev
;
866 __entry
->type
= lip
->li_type
;
867 __entry
->flags
= lip
->li_flags
;
868 __entry
->lsn
= lip
->li_lsn
;
870 TP_printk("dev %d:%d lip 0x%p lsn %d/%d type %s flags %s",
871 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
873 CYCLE_LSN(__entry
->lsn
), BLOCK_LSN(__entry
->lsn
),
874 __print_symbolic(__entry
->type
, XFS_LI_TYPE_DESC
),
875 __print_flags(__entry
->flags
, "|", XFS_LI_FLAGS
))
878 #define DEFINE_LOG_ITEM_EVENT(name) \
879 DEFINE_EVENT(xfs_log_item_class, name, \
880 TP_PROTO(struct xfs_log_item *lip), \
882 DEFINE_LOG_ITEM_EVENT(xfs_ail_push
);
883 DEFINE_LOG_ITEM_EVENT(xfs_ail_pushbuf
);
884 DEFINE_LOG_ITEM_EVENT(xfs_ail_pushbuf_pinned
);
885 DEFINE_LOG_ITEM_EVENT(xfs_ail_pinned
);
886 DEFINE_LOG_ITEM_EVENT(xfs_ail_locked
);
889 DECLARE_EVENT_CLASS(xfs_file_class
,
890 TP_PROTO(struct xfs_inode
*ip
, size_t count
, loff_t offset
, int flags
),
891 TP_ARGS(ip
, count
, offset
, flags
),
894 __field(xfs_ino_t
, ino
)
895 __field(xfs_fsize_t
, size
)
896 __field(xfs_fsize_t
, new_size
)
897 __field(loff_t
, offset
)
898 __field(size_t, count
)
902 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
903 __entry
->ino
= ip
->i_ino
;
904 __entry
->size
= ip
->i_d
.di_size
;
905 __entry
->new_size
= ip
->i_new_size
;
906 __entry
->offset
= offset
;
907 __entry
->count
= count
;
908 __entry
->flags
= flags
;
910 TP_printk("dev %d:%d ino 0x%llx size 0x%llx new_size 0x%llx "
911 "offset 0x%llx count 0x%zx ioflags %s",
912 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
918 __print_flags(__entry
->flags
, "|", XFS_IO_FLAGS
))
921 #define DEFINE_RW_EVENT(name) \
922 DEFINE_EVENT(xfs_file_class, name, \
923 TP_PROTO(struct xfs_inode *ip, size_t count, loff_t offset, int flags), \
924 TP_ARGS(ip, count, offset, flags))
925 DEFINE_RW_EVENT(xfs_file_read
);
926 DEFINE_RW_EVENT(xfs_file_buffered_write
);
927 DEFINE_RW_EVENT(xfs_file_direct_write
);
928 DEFINE_RW_EVENT(xfs_file_splice_read
);
929 DEFINE_RW_EVENT(xfs_file_splice_write
);
931 DECLARE_EVENT_CLASS(xfs_page_class
,
932 TP_PROTO(struct inode
*inode
, struct page
*page
, unsigned long off
),
933 TP_ARGS(inode
, page
, off
),
936 __field(xfs_ino_t
, ino
)
937 __field(pgoff_t
, pgoff
)
938 __field(loff_t
, size
)
939 __field(unsigned long, offset
)
940 __field(int, delalloc
)
941 __field(int, unwritten
)
944 int delalloc
= -1, unwritten
= -1;
946 if (page_has_buffers(page
))
947 xfs_count_page_state(page
, &delalloc
, &unwritten
);
948 __entry
->dev
= inode
->i_sb
->s_dev
;
949 __entry
->ino
= XFS_I(inode
)->i_ino
;
950 __entry
->pgoff
= page_offset(page
);
951 __entry
->size
= i_size_read(inode
);
952 __entry
->offset
= off
;
953 __entry
->delalloc
= delalloc
;
954 __entry
->unwritten
= unwritten
;
956 TP_printk("dev %d:%d ino 0x%llx pgoff 0x%lx size 0x%llx offset %lx "
957 "delalloc %d unwritten %d",
958 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
967 #define DEFINE_PAGE_EVENT(name) \
968 DEFINE_EVENT(xfs_page_class, name, \
969 TP_PROTO(struct inode *inode, struct page *page, unsigned long off), \
970 TP_ARGS(inode, page, off))
971 DEFINE_PAGE_EVENT(xfs_writepage
);
972 DEFINE_PAGE_EVENT(xfs_releasepage
);
973 DEFINE_PAGE_EVENT(xfs_invalidatepage
);
975 DECLARE_EVENT_CLASS(xfs_imap_class
,
976 TP_PROTO(struct xfs_inode
*ip
, xfs_off_t offset
, ssize_t count
,
977 int type
, struct xfs_bmbt_irec
*irec
),
978 TP_ARGS(ip
, offset
, count
, type
, irec
),
981 __field(xfs_ino_t
, ino
)
982 __field(loff_t
, size
)
983 __field(loff_t
, new_size
)
984 __field(loff_t
, offset
)
985 __field(size_t, count
)
987 __field(xfs_fileoff_t
, startoff
)
988 __field(xfs_fsblock_t
, startblock
)
989 __field(xfs_filblks_t
, blockcount
)
992 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
993 __entry
->ino
= ip
->i_ino
;
994 __entry
->size
= ip
->i_d
.di_size
;
995 __entry
->new_size
= ip
->i_new_size
;
996 __entry
->offset
= offset
;
997 __entry
->count
= count
;
998 __entry
->type
= type
;
999 __entry
->startoff
= irec
? irec
->br_startoff
: 0;
1000 __entry
->startblock
= irec
? irec
->br_startblock
: 0;
1001 __entry
->blockcount
= irec
? irec
->br_blockcount
: 0;
1003 TP_printk("dev %d:%d ino 0x%llx size 0x%llx new_size 0x%llx "
1004 "offset 0x%llx count %zd type %s "
1005 "startoff 0x%llx startblock %lld blockcount 0x%llx",
1006 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1012 __print_symbolic(__entry
->type
, XFS_IO_TYPES
),
1014 (__int64_t
)__entry
->startblock
,
1015 __entry
->blockcount
)
1018 #define DEFINE_IOMAP_EVENT(name) \
1019 DEFINE_EVENT(xfs_imap_class, name, \
1020 TP_PROTO(struct xfs_inode *ip, xfs_off_t offset, ssize_t count, \
1021 int type, struct xfs_bmbt_irec *irec), \
1022 TP_ARGS(ip, offset, count, type, irec))
1023 DEFINE_IOMAP_EVENT(xfs_map_blocks_found
);
1024 DEFINE_IOMAP_EVENT(xfs_map_blocks_alloc
);
1025 DEFINE_IOMAP_EVENT(xfs_get_blocks_found
);
1026 DEFINE_IOMAP_EVENT(xfs_get_blocks_alloc
);
1028 DECLARE_EVENT_CLASS(xfs_simple_io_class
,
1029 TP_PROTO(struct xfs_inode
*ip
, xfs_off_t offset
, ssize_t count
),
1030 TP_ARGS(ip
, offset
, count
),
1033 __field(xfs_ino_t
, ino
)
1034 __field(loff_t
, isize
)
1035 __field(loff_t
, disize
)
1036 __field(loff_t
, new_size
)
1037 __field(loff_t
, offset
)
1038 __field(size_t, count
)
1041 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
1042 __entry
->ino
= ip
->i_ino
;
1043 __entry
->isize
= ip
->i_size
;
1044 __entry
->disize
= ip
->i_d
.di_size
;
1045 __entry
->new_size
= ip
->i_new_size
;
1046 __entry
->offset
= offset
;
1047 __entry
->count
= count
;
1049 TP_printk("dev %d:%d ino 0x%llx isize 0x%llx disize 0x%llx new_size 0x%llx "
1050 "offset 0x%llx count %zd",
1051 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1060 #define DEFINE_SIMPLE_IO_EVENT(name) \
1061 DEFINE_EVENT(xfs_simple_io_class, name, \
1062 TP_PROTO(struct xfs_inode *ip, xfs_off_t offset, ssize_t count), \
1063 TP_ARGS(ip, offset, count))
1064 DEFINE_SIMPLE_IO_EVENT(xfs_delalloc_enospc
);
1065 DEFINE_SIMPLE_IO_EVENT(xfs_unwritten_convert
);
1066 DEFINE_SIMPLE_IO_EVENT(xfs_get_blocks_notfound
);
1067 DEFINE_SIMPLE_IO_EVENT(xfs_setfilesize
);
1069 DECLARE_EVENT_CLASS(xfs_itrunc_class
,
1070 TP_PROTO(struct xfs_inode
*ip
, xfs_fsize_t new_size
),
1071 TP_ARGS(ip
, new_size
),
1074 __field(xfs_ino_t
, ino
)
1075 __field(xfs_fsize_t
, size
)
1076 __field(xfs_fsize_t
, new_size
)
1079 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
1080 __entry
->ino
= ip
->i_ino
;
1081 __entry
->size
= ip
->i_d
.di_size
;
1082 __entry
->new_size
= new_size
;
1084 TP_printk("dev %d:%d ino 0x%llx size 0x%llx new_size 0x%llx",
1085 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1091 #define DEFINE_ITRUNC_EVENT(name) \
1092 DEFINE_EVENT(xfs_itrunc_class, name, \
1093 TP_PROTO(struct xfs_inode *ip, xfs_fsize_t new_size), \
1094 TP_ARGS(ip, new_size))
1095 DEFINE_ITRUNC_EVENT(xfs_itruncate_data_start
);
1096 DEFINE_ITRUNC_EVENT(xfs_itruncate_data_end
);
1098 TRACE_EVENT(xfs_pagecache_inval
,
1099 TP_PROTO(struct xfs_inode
*ip
, xfs_off_t start
, xfs_off_t finish
),
1100 TP_ARGS(ip
, start
, finish
),
1103 __field(xfs_ino_t
, ino
)
1104 __field(xfs_fsize_t
, size
)
1105 __field(xfs_off_t
, start
)
1106 __field(xfs_off_t
, finish
)
1109 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
1110 __entry
->ino
= ip
->i_ino
;
1111 __entry
->size
= ip
->i_d
.di_size
;
1112 __entry
->start
= start
;
1113 __entry
->finish
= finish
;
1115 TP_printk("dev %d:%d ino 0x%llx size 0x%llx start 0x%llx finish 0x%llx",
1116 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1123 TRACE_EVENT(xfs_bunmap
,
1124 TP_PROTO(struct xfs_inode
*ip
, xfs_fileoff_t bno
, xfs_filblks_t len
,
1125 int flags
, unsigned long caller_ip
),
1126 TP_ARGS(ip
, bno
, len
, flags
, caller_ip
),
1129 __field(xfs_ino_t
, ino
)
1130 __field(xfs_fsize_t
, size
)
1131 __field(xfs_fileoff_t
, bno
)
1132 __field(xfs_filblks_t
, len
)
1133 __field(unsigned long, caller_ip
)
1137 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
1138 __entry
->ino
= ip
->i_ino
;
1139 __entry
->size
= ip
->i_d
.di_size
;
1142 __entry
->caller_ip
= caller_ip
;
1143 __entry
->flags
= flags
;
1145 TP_printk("dev %d:%d ino 0x%llx size 0x%llx bno 0x%llx len 0x%llx"
1146 "flags %s caller %pf",
1147 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1152 __print_flags(__entry
->flags
, "|", XFS_BMAPI_FLAGS
),
1153 (void *)__entry
->caller_ip
)
1157 DECLARE_EVENT_CLASS(xfs_busy_class
,
1158 TP_PROTO(struct xfs_mount
*mp
, xfs_agnumber_t agno
,
1159 xfs_agblock_t agbno
, xfs_extlen_t len
),
1160 TP_ARGS(mp
, agno
, agbno
, len
),
1163 __field(xfs_agnumber_t
, agno
)
1164 __field(xfs_agblock_t
, agbno
)
1165 __field(xfs_extlen_t
, len
)
1168 __entry
->dev
= mp
->m_super
->s_dev
;
1169 __entry
->agno
= agno
;
1170 __entry
->agbno
= agbno
;
1173 TP_printk("dev %d:%d agno %u agbno %u len %u",
1174 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1179 #define DEFINE_BUSY_EVENT(name) \
1180 DEFINE_EVENT(xfs_busy_class, name, \
1181 TP_PROTO(struct xfs_mount *mp, xfs_agnumber_t agno, \
1182 xfs_agblock_t agbno, xfs_extlen_t len), \
1183 TP_ARGS(mp, agno, agbno, len))
1184 DEFINE_BUSY_EVENT(xfs_alloc_busy
);
1185 DEFINE_BUSY_EVENT(xfs_alloc_busy_enomem
);
1186 DEFINE_BUSY_EVENT(xfs_alloc_busy_force
);
1187 DEFINE_BUSY_EVENT(xfs_alloc_busy_reuse
);
1188 DEFINE_BUSY_EVENT(xfs_alloc_busy_clear
);
1190 TRACE_EVENT(xfs_alloc_busy_trim
,
1191 TP_PROTO(struct xfs_mount
*mp
, xfs_agnumber_t agno
,
1192 xfs_agblock_t agbno
, xfs_extlen_t len
,
1193 xfs_agblock_t tbno
, xfs_extlen_t tlen
),
1194 TP_ARGS(mp
, agno
, agbno
, len
, tbno
, tlen
),
1197 __field(xfs_agnumber_t
, agno
)
1198 __field(xfs_agblock_t
, agbno
)
1199 __field(xfs_extlen_t
, len
)
1200 __field(xfs_agblock_t
, tbno
)
1201 __field(xfs_extlen_t
, tlen
)
1204 __entry
->dev
= mp
->m_super
->s_dev
;
1205 __entry
->agno
= agno
;
1206 __entry
->agbno
= agbno
;
1208 __entry
->tbno
= tbno
;
1209 __entry
->tlen
= tlen
;
1211 TP_printk("dev %d:%d agno %u agbno %u len %u tbno %u tlen %u",
1212 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1220 TRACE_EVENT(xfs_trans_commit_lsn
,
1221 TP_PROTO(struct xfs_trans
*trans
),
1225 __field(struct xfs_trans
*, tp
)
1226 __field(xfs_lsn_t
, lsn
)
1229 __entry
->dev
= trans
->t_mountp
->m_super
->s_dev
;
1230 __entry
->tp
= trans
;
1231 __entry
->lsn
= trans
->t_commit_lsn
;
1233 TP_printk("dev %d:%d trans 0x%p commit_lsn 0x%llx",
1234 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1239 TRACE_EVENT(xfs_agf
,
1240 TP_PROTO(struct xfs_mount
*mp
, struct xfs_agf
*agf
, int flags
,
1241 unsigned long caller_ip
),
1242 TP_ARGS(mp
, agf
, flags
, caller_ip
),
1245 __field(xfs_agnumber_t
, agno
)
1247 __field(__u32
, length
)
1248 __field(__u32
, bno_root
)
1249 __field(__u32
, cnt_root
)
1250 __field(__u32
, bno_level
)
1251 __field(__u32
, cnt_level
)
1252 __field(__u32
, flfirst
)
1253 __field(__u32
, fllast
)
1254 __field(__u32
, flcount
)
1255 __field(__u32
, freeblks
)
1256 __field(__u32
, longest
)
1257 __field(unsigned long, caller_ip
)
1260 __entry
->dev
= mp
->m_super
->s_dev
;
1261 __entry
->agno
= be32_to_cpu(agf
->agf_seqno
),
1262 __entry
->flags
= flags
;
1263 __entry
->length
= be32_to_cpu(agf
->agf_length
),
1264 __entry
->bno_root
= be32_to_cpu(agf
->agf_roots
[XFS_BTNUM_BNO
]),
1265 __entry
->cnt_root
= be32_to_cpu(agf
->agf_roots
[XFS_BTNUM_CNT
]),
1266 __entry
->bno_level
=
1267 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_BNO
]),
1268 __entry
->cnt_level
=
1269 be32_to_cpu(agf
->agf_levels
[XFS_BTNUM_CNT
]),
1270 __entry
->flfirst
= be32_to_cpu(agf
->agf_flfirst
),
1271 __entry
->fllast
= be32_to_cpu(agf
->agf_fllast
),
1272 __entry
->flcount
= be32_to_cpu(agf
->agf_flcount
),
1273 __entry
->freeblks
= be32_to_cpu(agf
->agf_freeblks
),
1274 __entry
->longest
= be32_to_cpu(agf
->agf_longest
);
1275 __entry
->caller_ip
= caller_ip
;
1277 TP_printk("dev %d:%d agno %u flags %s length %u roots b %u c %u "
1278 "levels b %u c %u flfirst %u fllast %u flcount %u "
1279 "freeblks %u longest %u caller %pf",
1280 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1282 __print_flags(__entry
->flags
, "|", XFS_AGF_FLAGS
),
1293 (void *)__entry
->caller_ip
)
1296 TRACE_EVENT(xfs_free_extent
,
1297 TP_PROTO(struct xfs_mount
*mp
, xfs_agnumber_t agno
, xfs_agblock_t agbno
,
1298 xfs_extlen_t len
, bool isfl
, int haveleft
, int haveright
),
1299 TP_ARGS(mp
, agno
, agbno
, len
, isfl
, haveleft
, haveright
),
1302 __field(xfs_agnumber_t
, agno
)
1303 __field(xfs_agblock_t
, agbno
)
1304 __field(xfs_extlen_t
, len
)
1306 __field(int, haveleft
)
1307 __field(int, haveright
)
1310 __entry
->dev
= mp
->m_super
->s_dev
;
1311 __entry
->agno
= agno
;
1312 __entry
->agbno
= agbno
;
1314 __entry
->isfl
= isfl
;
1315 __entry
->haveleft
= haveleft
;
1316 __entry
->haveright
= haveright
;
1318 TP_printk("dev %d:%d agno %u agbno %u len %u isfl %d %s",
1319 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1325 (__entry
->haveright
? "both" : "left") :
1326 (__entry
->haveright
? "right" : "none"))
1330 DECLARE_EVENT_CLASS(xfs_alloc_class
,
1331 TP_PROTO(struct xfs_alloc_arg
*args
),
1335 __field(xfs_agnumber_t
, agno
)
1336 __field(xfs_agblock_t
, agbno
)
1337 __field(xfs_extlen_t
, minlen
)
1338 __field(xfs_extlen_t
, maxlen
)
1339 __field(xfs_extlen_t
, mod
)
1340 __field(xfs_extlen_t
, prod
)
1341 __field(xfs_extlen_t
, minleft
)
1342 __field(xfs_extlen_t
, total
)
1343 __field(xfs_extlen_t
, alignment
)
1344 __field(xfs_extlen_t
, minalignslop
)
1345 __field(xfs_extlen_t
, len
)
1346 __field(short, type
)
1347 __field(short, otype
)
1348 __field(char, wasdel
)
1349 __field(char, wasfromfl
)
1351 __field(char, userdata
)
1352 __field(xfs_fsblock_t
, firstblock
)
1355 __entry
->dev
= args
->mp
->m_super
->s_dev
;
1356 __entry
->agno
= args
->agno
;
1357 __entry
->agbno
= args
->agbno
;
1358 __entry
->minlen
= args
->minlen
;
1359 __entry
->maxlen
= args
->maxlen
;
1360 __entry
->mod
= args
->mod
;
1361 __entry
->prod
= args
->prod
;
1362 __entry
->minleft
= args
->minleft
;
1363 __entry
->total
= args
->total
;
1364 __entry
->alignment
= args
->alignment
;
1365 __entry
->minalignslop
= args
->minalignslop
;
1366 __entry
->len
= args
->len
;
1367 __entry
->type
= args
->type
;
1368 __entry
->otype
= args
->otype
;
1369 __entry
->wasdel
= args
->wasdel
;
1370 __entry
->wasfromfl
= args
->wasfromfl
;
1371 __entry
->isfl
= args
->isfl
;
1372 __entry
->userdata
= args
->userdata
;
1373 __entry
->firstblock
= args
->firstblock
;
1375 TP_printk("dev %d:%d agno %u agbno %u minlen %u maxlen %u mod %u "
1376 "prod %u minleft %u total %u alignment %u minalignslop %u "
1377 "len %u type %s otype %s wasdel %d wasfromfl %d isfl %d "
1378 "userdata %d firstblock 0x%llx",
1379 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1389 __entry
->minalignslop
,
1391 __print_symbolic(__entry
->type
, XFS_ALLOC_TYPES
),
1392 __print_symbolic(__entry
->otype
, XFS_ALLOC_TYPES
),
1397 (unsigned long long)__entry
->firstblock
)
1400 #define DEFINE_ALLOC_EVENT(name) \
1401 DEFINE_EVENT(xfs_alloc_class, name, \
1402 TP_PROTO(struct xfs_alloc_arg *args), \
1404 DEFINE_ALLOC_EVENT(xfs_alloc_exact_done
);
1405 DEFINE_ALLOC_EVENT(xfs_alloc_exact_notfound
);
1406 DEFINE_ALLOC_EVENT(xfs_alloc_exact_error
);
1407 DEFINE_ALLOC_EVENT(xfs_alloc_near_nominleft
);
1408 DEFINE_ALLOC_EVENT(xfs_alloc_near_first
);
1409 DEFINE_ALLOC_EVENT(xfs_alloc_near_greater
);
1410 DEFINE_ALLOC_EVENT(xfs_alloc_near_lesser
);
1411 DEFINE_ALLOC_EVENT(xfs_alloc_near_error
);
1412 DEFINE_ALLOC_EVENT(xfs_alloc_near_noentry
);
1413 DEFINE_ALLOC_EVENT(xfs_alloc_near_busy
);
1414 DEFINE_ALLOC_EVENT(xfs_alloc_size_neither
);
1415 DEFINE_ALLOC_EVENT(xfs_alloc_size_noentry
);
1416 DEFINE_ALLOC_EVENT(xfs_alloc_size_nominleft
);
1417 DEFINE_ALLOC_EVENT(xfs_alloc_size_done
);
1418 DEFINE_ALLOC_EVENT(xfs_alloc_size_error
);
1419 DEFINE_ALLOC_EVENT(xfs_alloc_size_busy
);
1420 DEFINE_ALLOC_EVENT(xfs_alloc_small_freelist
);
1421 DEFINE_ALLOC_EVENT(xfs_alloc_small_notenough
);
1422 DEFINE_ALLOC_EVENT(xfs_alloc_small_done
);
1423 DEFINE_ALLOC_EVENT(xfs_alloc_small_error
);
1424 DEFINE_ALLOC_EVENT(xfs_alloc_vextent_badargs
);
1425 DEFINE_ALLOC_EVENT(xfs_alloc_vextent_nofix
);
1426 DEFINE_ALLOC_EVENT(xfs_alloc_vextent_noagbp
);
1427 DEFINE_ALLOC_EVENT(xfs_alloc_vextent_loopfailed
);
1428 DEFINE_ALLOC_EVENT(xfs_alloc_vextent_allfailed
);
1430 DECLARE_EVENT_CLASS(xfs_dir2_class
,
1431 TP_PROTO(struct xfs_da_args
*args
),
1435 __field(xfs_ino_t
, ino
)
1436 __dynamic_array(char, name
, args
->namelen
)
1437 __field(int, namelen
)
1438 __field(xfs_dahash_t
, hashval
)
1439 __field(xfs_ino_t
, inumber
)
1440 __field(int, op_flags
)
1443 __entry
->dev
= VFS_I(args
->dp
)->i_sb
->s_dev
;
1444 __entry
->ino
= args
->dp
->i_ino
;
1446 memcpy(__get_str(name
), args
->name
, args
->namelen
);
1447 __entry
->namelen
= args
->namelen
;
1448 __entry
->hashval
= args
->hashval
;
1449 __entry
->inumber
= args
->inumber
;
1450 __entry
->op_flags
= args
->op_flags
;
1452 TP_printk("dev %d:%d ino 0x%llx name %.*s namelen %d hashval 0x%x "
1453 "inumber 0x%llx op_flags %s",
1454 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1457 __entry
->namelen
? __get_str(name
) : NULL
,
1461 __print_flags(__entry
->op_flags
, "|", XFS_DA_OP_FLAGS
))
1464 #define DEFINE_DIR2_EVENT(name) \
1465 DEFINE_EVENT(xfs_dir2_class, name, \
1466 TP_PROTO(struct xfs_da_args *args), \
1468 DEFINE_DIR2_EVENT(xfs_dir2_sf_addname
);
1469 DEFINE_DIR2_EVENT(xfs_dir2_sf_create
);
1470 DEFINE_DIR2_EVENT(xfs_dir2_sf_lookup
);
1471 DEFINE_DIR2_EVENT(xfs_dir2_sf_replace
);
1472 DEFINE_DIR2_EVENT(xfs_dir2_sf_removename
);
1473 DEFINE_DIR2_EVENT(xfs_dir2_sf_toino4
);
1474 DEFINE_DIR2_EVENT(xfs_dir2_sf_toino8
);
1475 DEFINE_DIR2_EVENT(xfs_dir2_sf_to_block
);
1476 DEFINE_DIR2_EVENT(xfs_dir2_block_addname
);
1477 DEFINE_DIR2_EVENT(xfs_dir2_block_lookup
);
1478 DEFINE_DIR2_EVENT(xfs_dir2_block_replace
);
1479 DEFINE_DIR2_EVENT(xfs_dir2_block_removename
);
1480 DEFINE_DIR2_EVENT(xfs_dir2_block_to_sf
);
1481 DEFINE_DIR2_EVENT(xfs_dir2_block_to_leaf
);
1482 DEFINE_DIR2_EVENT(xfs_dir2_leaf_addname
);
1483 DEFINE_DIR2_EVENT(xfs_dir2_leaf_lookup
);
1484 DEFINE_DIR2_EVENT(xfs_dir2_leaf_replace
);
1485 DEFINE_DIR2_EVENT(xfs_dir2_leaf_removename
);
1486 DEFINE_DIR2_EVENT(xfs_dir2_leaf_to_block
);
1487 DEFINE_DIR2_EVENT(xfs_dir2_leaf_to_node
);
1488 DEFINE_DIR2_EVENT(xfs_dir2_node_addname
);
1489 DEFINE_DIR2_EVENT(xfs_dir2_node_lookup
);
1490 DEFINE_DIR2_EVENT(xfs_dir2_node_replace
);
1491 DEFINE_DIR2_EVENT(xfs_dir2_node_removename
);
1492 DEFINE_DIR2_EVENT(xfs_dir2_node_to_leaf
);
1494 DECLARE_EVENT_CLASS(xfs_dir2_space_class
,
1495 TP_PROTO(struct xfs_da_args
*args
, int idx
),
1499 __field(xfs_ino_t
, ino
)
1500 __field(int, op_flags
)
1504 __entry
->dev
= VFS_I(args
->dp
)->i_sb
->s_dev
;
1505 __entry
->ino
= args
->dp
->i_ino
;
1506 __entry
->op_flags
= args
->op_flags
;
1509 TP_printk("dev %d:%d ino 0x%llx op_flags %s index %d",
1510 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1512 __print_flags(__entry
->op_flags
, "|", XFS_DA_OP_FLAGS
),
1516 #define DEFINE_DIR2_SPACE_EVENT(name) \
1517 DEFINE_EVENT(xfs_dir2_space_class, name, \
1518 TP_PROTO(struct xfs_da_args *args, int idx), \
1520 DEFINE_DIR2_SPACE_EVENT(xfs_dir2_leafn_add
);
1521 DEFINE_DIR2_SPACE_EVENT(xfs_dir2_leafn_remove
);
1522 DEFINE_DIR2_SPACE_EVENT(xfs_dir2_grow_inode
);
1523 DEFINE_DIR2_SPACE_EVENT(xfs_dir2_shrink_inode
);
1525 TRACE_EVENT(xfs_dir2_leafn_moveents
,
1526 TP_PROTO(struct xfs_da_args
*args
, int src_idx
, int dst_idx
, int count
),
1527 TP_ARGS(args
, src_idx
, dst_idx
, count
),
1530 __field(xfs_ino_t
, ino
)
1531 __field(int, op_flags
)
1532 __field(int, src_idx
)
1533 __field(int, dst_idx
)
1537 __entry
->dev
= VFS_I(args
->dp
)->i_sb
->s_dev
;
1538 __entry
->ino
= args
->dp
->i_ino
;
1539 __entry
->op_flags
= args
->op_flags
;
1540 __entry
->src_idx
= src_idx
;
1541 __entry
->dst_idx
= dst_idx
;
1542 __entry
->count
= count
;
1544 TP_printk("dev %d:%d ino 0x%llx op_flags %s "
1545 "src_idx %d dst_idx %d count %d",
1546 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1548 __print_flags(__entry
->op_flags
, "|", XFS_DA_OP_FLAGS
),
1554 #define XFS_SWAPEXT_INODES \
1558 #define XFS_INODE_FORMAT_STR \
1564 DECLARE_EVENT_CLASS(xfs_swap_extent_class
,
1565 TP_PROTO(struct xfs_inode
*ip
, int which
),
1570 __field(xfs_ino_t
, ino
)
1571 __field(int, format
)
1573 __field(int, max_nex
)
1574 __field(int, broot_size
)
1575 __field(int, fork_off
)
1578 __entry
->dev
= VFS_I(ip
)->i_sb
->s_dev
;
1579 __entry
->which
= which
;
1580 __entry
->ino
= ip
->i_ino
;
1581 __entry
->format
= ip
->i_d
.di_format
;
1582 __entry
->nex
= ip
->i_d
.di_nextents
;
1583 __entry
->max_nex
= ip
->i_df
.if_ext_max
;
1584 __entry
->broot_size
= ip
->i_df
.if_broot_bytes
;
1585 __entry
->fork_off
= XFS_IFORK_BOFF(ip
);
1587 TP_printk("dev %d:%d ino 0x%llx (%s), %s format, num_extents %d, "
1588 "Max in-fork extents %d, broot size %d, fork offset %d",
1589 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1591 __print_symbolic(__entry
->which
, XFS_SWAPEXT_INODES
),
1592 __print_symbolic(__entry
->format
, XFS_INODE_FORMAT_STR
),
1595 __entry
->broot_size
,
1599 #define DEFINE_SWAPEXT_EVENT(name) \
1600 DEFINE_EVENT(xfs_swap_extent_class, name, \
1601 TP_PROTO(struct xfs_inode *ip, int which), \
1604 DEFINE_SWAPEXT_EVENT(xfs_swap_extent_before
);
1605 DEFINE_SWAPEXT_EVENT(xfs_swap_extent_after
);
1607 DECLARE_EVENT_CLASS(xfs_log_recover_item_class
,
1608 TP_PROTO(struct log
*log
, struct xlog_recover
*trans
,
1609 struct xlog_recover_item
*item
, int pass
),
1610 TP_ARGS(log
, trans
, item
, pass
),
1613 __field(unsigned long, item
)
1614 __field(xlog_tid_t
, tid
)
1621 __entry
->dev
= log
->l_mp
->m_super
->s_dev
;
1622 __entry
->item
= (unsigned long)item
;
1623 __entry
->tid
= trans
->r_log_tid
;
1624 __entry
->type
= ITEM_TYPE(item
);
1625 __entry
->pass
= pass
;
1626 __entry
->count
= item
->ri_cnt
;
1627 __entry
->total
= item
->ri_total
;
1629 TP_printk("dev %d:%d trans 0x%x, pass %d, item 0x%p, item type %s "
1630 "item region count/total %d/%d",
1631 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1634 (void *)__entry
->item
,
1635 __print_symbolic(__entry
->type
, XFS_LI_TYPE_DESC
),
1640 #define DEFINE_LOG_RECOVER_ITEM(name) \
1641 DEFINE_EVENT(xfs_log_recover_item_class, name, \
1642 TP_PROTO(struct log *log, struct xlog_recover *trans, \
1643 struct xlog_recover_item *item, int pass), \
1644 TP_ARGS(log, trans, item, pass))
1646 DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_add
);
1647 DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_add_cont
);
1648 DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_reorder_head
);
1649 DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_reorder_tail
);
1650 DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_recover
);
1652 DECLARE_EVENT_CLASS(xfs_log_recover_buf_item_class
,
1653 TP_PROTO(struct log
*log
, struct xfs_buf_log_format
*buf_f
),
1654 TP_ARGS(log
, buf_f
),
1657 __field(__int64_t
, blkno
)
1658 __field(unsigned short, len
)
1659 __field(unsigned short, flags
)
1660 __field(unsigned short, size
)
1661 __field(unsigned int, map_size
)
1664 __entry
->dev
= log
->l_mp
->m_super
->s_dev
;
1665 __entry
->blkno
= buf_f
->blf_blkno
;
1666 __entry
->len
= buf_f
->blf_len
;
1667 __entry
->flags
= buf_f
->blf_flags
;
1668 __entry
->size
= buf_f
->blf_size
;
1669 __entry
->map_size
= buf_f
->blf_map_size
;
1671 TP_printk("dev %d:%d blkno 0x%llx, len %u, flags 0x%x, size %d, "
1673 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1681 #define DEFINE_LOG_RECOVER_BUF_ITEM(name) \
1682 DEFINE_EVENT(xfs_log_recover_buf_item_class, name, \
1683 TP_PROTO(struct log *log, struct xfs_buf_log_format *buf_f), \
1684 TP_ARGS(log, buf_f))
1686 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_not_cancel
);
1687 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_cancel
);
1688 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_cancel_add
);
1689 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_cancel_ref_inc
);
1690 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_recover
);
1691 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_inode_buf
);
1692 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_reg_buf
);
1693 DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_dquot_buf
);
1695 DECLARE_EVENT_CLASS(xfs_log_recover_ino_item_class
,
1696 TP_PROTO(struct log
*log
, struct xfs_inode_log_format
*in_f
),
1700 __field(xfs_ino_t
, ino
)
1701 __field(unsigned short, size
)
1702 __field(int, fields
)
1703 __field(unsigned short, asize
)
1704 __field(unsigned short, dsize
)
1705 __field(__int64_t
, blkno
)
1707 __field(int, boffset
)
1710 __entry
->dev
= log
->l_mp
->m_super
->s_dev
;
1711 __entry
->ino
= in_f
->ilf_ino
;
1712 __entry
->size
= in_f
->ilf_size
;
1713 __entry
->fields
= in_f
->ilf_fields
;
1714 __entry
->asize
= in_f
->ilf_asize
;
1715 __entry
->dsize
= in_f
->ilf_dsize
;
1716 __entry
->blkno
= in_f
->ilf_blkno
;
1717 __entry
->len
= in_f
->ilf_len
;
1718 __entry
->boffset
= in_f
->ilf_boffset
;
1720 TP_printk("dev %d:%d ino 0x%llx, size %u, fields 0x%x, asize %d, "
1721 "dsize %d, blkno 0x%llx, len %d, boffset %d",
1722 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1732 #define DEFINE_LOG_RECOVER_INO_ITEM(name) \
1733 DEFINE_EVENT(xfs_log_recover_ino_item_class, name, \
1734 TP_PROTO(struct log *log, struct xfs_inode_log_format *in_f), \
1737 DEFINE_LOG_RECOVER_INO_ITEM(xfs_log_recover_inode_recover
);
1738 DEFINE_LOG_RECOVER_INO_ITEM(xfs_log_recover_inode_cancel
);
1739 DEFINE_LOG_RECOVER_INO_ITEM(xfs_log_recover_inode_skip
);
1741 DECLARE_EVENT_CLASS(xfs_discard_class
,
1742 TP_PROTO(struct xfs_mount
*mp
, xfs_agnumber_t agno
,
1743 xfs_agblock_t agbno
, xfs_extlen_t len
),
1744 TP_ARGS(mp
, agno
, agbno
, len
),
1747 __field(xfs_agnumber_t
, agno
)
1748 __field(xfs_agblock_t
, agbno
)
1749 __field(xfs_extlen_t
, len
)
1752 __entry
->dev
= mp
->m_super
->s_dev
;
1753 __entry
->agno
= agno
;
1754 __entry
->agbno
= agbno
;
1757 TP_printk("dev %d:%d agno %u agbno %u len %u\n",
1758 MAJOR(__entry
->dev
), MINOR(__entry
->dev
),
1764 #define DEFINE_DISCARD_EVENT(name) \
1765 DEFINE_EVENT(xfs_discard_class, name, \
1766 TP_PROTO(struct xfs_mount *mp, xfs_agnumber_t agno, \
1767 xfs_agblock_t agbno, xfs_extlen_t len), \
1768 TP_ARGS(mp, agno, agbno, len))
1769 DEFINE_DISCARD_EVENT(xfs_discard_extent
);
1770 DEFINE_DISCARD_EVENT(xfs_discard_toosmall
);
1771 DEFINE_DISCARD_EVENT(xfs_discard_exclude
);
1772 DEFINE_DISCARD_EVENT(xfs_discard_busy
);
1774 #endif /* _TRACE_XFS_H */
1776 #undef TRACE_INCLUDE_PATH
1777 #define TRACE_INCLUDE_PATH .
1778 #define TRACE_INCLUDE_FILE xfs_trace
1779 #include <trace/define_trace.h>