diff options
-rw-r--r-- | fs/xfs/xfs_iomap.c | 3 | ||||
-rw-r--r-- | fs/xfs/xfs_trace.h | 24 |
2 files changed, 27 insertions, 0 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c index 0a530853b53d..8f8aaee7f379 100644 --- a/fs/xfs/xfs_iomap.c +++ b/fs/xfs/xfs_iomap.c | |||
@@ -518,6 +518,9 @@ check_writeio: | |||
518 | if (alloc_blocks < mp->m_writeio_blocks) | 518 | if (alloc_blocks < mp->m_writeio_blocks) |
519 | alloc_blocks = mp->m_writeio_blocks; | 519 | alloc_blocks = mp->m_writeio_blocks; |
520 | 520 | ||
521 | trace_xfs_iomap_prealloc_size(ip, alloc_blocks, shift, | ||
522 | mp->m_writeio_blocks); | ||
523 | |||
521 | return alloc_blocks; | 524 | return alloc_blocks; |
522 | } | 525 | } |
523 | 526 | ||
diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h index 16a812977eab..aa4db3307d36 100644 --- a/fs/xfs/xfs_trace.h +++ b/fs/xfs/xfs_trace.h | |||
@@ -619,6 +619,30 @@ DECLARE_EVENT_CLASS(xfs_iref_class, | |||
619 | (char *)__entry->caller_ip) | 619 | (char *)__entry->caller_ip) |
620 | ) | 620 | ) |
621 | 621 | ||
622 | TRACE_EVENT(xfs_iomap_prealloc_size, | ||
623 | TP_PROTO(struct xfs_inode *ip, xfs_fsblock_t blocks, int shift, | ||
624 | unsigned int writeio_blocks), | ||
625 | TP_ARGS(ip, blocks, shift, writeio_blocks), | ||
626 | TP_STRUCT__entry( | ||
627 | __field(dev_t, dev) | ||
628 | __field(xfs_ino_t, ino) | ||
629 | __field(xfs_fsblock_t, blocks) | ||
630 | __field(int, shift) | ||
631 | __field(unsigned int, writeio_blocks) | ||
632 | ), | ||
633 | TP_fast_assign( | ||
634 | __entry->dev = VFS_I(ip)->i_sb->s_dev; | ||
635 | __entry->ino = ip->i_ino; | ||
636 | __entry->blocks = blocks; | ||
637 | __entry->shift = shift; | ||
638 | __entry->writeio_blocks = writeio_blocks; | ||
639 | ), | ||
640 | TP_printk("dev %d:%d ino 0x%llx prealloc blocks %llu shift %d " | ||
641 | "m_writeio_blocks %u", | ||
642 | MAJOR(__entry->dev), MINOR(__entry->dev), __entry->ino, | ||
643 | __entry->blocks, __entry->shift, __entry->writeio_blocks) | ||
644 | ) | ||
645 | |||
622 | #define DEFINE_IREF_EVENT(name) \ | 646 | #define DEFINE_IREF_EVENT(name) \ |
623 | DEFINE_EVENT(xfs_iref_class, name, \ | 647 | DEFINE_EVENT(xfs_iref_class, name, \ |
624 | TP_PROTO(struct xfs_inode *ip, unsigned long caller_ip), \ | 648 | TP_PROTO(struct xfs_inode *ip, unsigned long caller_ip), \ |