diff options
Diffstat (limited to 'fs/xfs/xfs_trace.h')
| -rw-r--r-- | fs/xfs/xfs_trace.h | 121 | 
1 files changed, 53 insertions, 68 deletions
diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h index eaae275ed430..a86be7f807ee 100644 --- a/fs/xfs/xfs_trace.h +++ b/fs/xfs/xfs_trace.h @@ -725,7 +725,7 @@ TRACE_EVENT(xfs_iomap_prealloc_size,  		__entry->writeio_blocks = writeio_blocks;  	),  	TP_printk("dev %d:%d ino 0x%llx prealloc blocks %llu shift %d " -		  "m_writeio_blocks %u", +		  "m_allocsize_blocks %u",  		  MAJOR(__entry->dev), MINOR(__entry->dev), __entry->ino,  		  __entry->blocks, __entry->shift, __entry->writeio_blocks)  ) @@ -1158,71 +1158,6 @@ DEFINE_RW_EVENT(xfs_file_buffered_write);  DEFINE_RW_EVENT(xfs_file_direct_write);  DEFINE_RW_EVENT(xfs_file_dax_write); -DECLARE_EVENT_CLASS(xfs_page_class, -	TP_PROTO(struct inode *inode, struct page *page, unsigned long off, -		 unsigned int len), -	TP_ARGS(inode, page, off, len), -	TP_STRUCT__entry( -		__field(dev_t, dev) -		__field(xfs_ino_t, ino) -		__field(pgoff_t, pgoff) -		__field(loff_t, size) -		__field(unsigned long, offset) -		__field(unsigned int, length) -	), -	TP_fast_assign( -		__entry->dev = inode->i_sb->s_dev; -		__entry->ino = XFS_I(inode)->i_ino; -		__entry->pgoff = page_offset(page); -		__entry->size = i_size_read(inode); -		__entry->offset = off; -		__entry->length = len; -	), -	TP_printk("dev %d:%d ino 0x%llx pgoff 0x%lx size 0x%llx offset %lx " -		  "length %x", -		  MAJOR(__entry->dev), MINOR(__entry->dev), -		  __entry->ino, -		  __entry->pgoff, -		  __entry->size, -		  __entry->offset, -		  __entry->length) -) - -#define DEFINE_PAGE_EVENT(name)		\ -DEFINE_EVENT(xfs_page_class, name,	\ -	TP_PROTO(struct inode *inode, struct page *page, unsigned long off, \ -		 unsigned int len),	\ -	TP_ARGS(inode, page, off, len)) -DEFINE_PAGE_EVENT(xfs_writepage); -DEFINE_PAGE_EVENT(xfs_releasepage); -DEFINE_PAGE_EVENT(xfs_invalidatepage); - -DECLARE_EVENT_CLASS(xfs_readpage_class, -	TP_PROTO(struct inode *inode, int nr_pages), -	TP_ARGS(inode, nr_pages), -	TP_STRUCT__entry( -		__field(dev_t, dev) -		__field(xfs_ino_t, ino) -		__field(int, nr_pages) -	), -	TP_fast_assign( -		__entry->dev = inode->i_sb->s_dev; -		__entry->ino = inode->i_ino; -		__entry->nr_pages = nr_pages; -	), -	TP_printk("dev %d:%d ino 0x%llx nr_pages %d", -		  MAJOR(__entry->dev), MINOR(__entry->dev), -		  __entry->ino, -		  __entry->nr_pages) -) - -#define DEFINE_READPAGE_EVENT(name)		\ -DEFINE_EVENT(xfs_readpage_class, name,	\ -	TP_PROTO(struct inode *inode, int nr_pages), \ -	TP_ARGS(inode, nr_pages)) -DEFINE_READPAGE_EVENT(xfs_vm_readpage); -DEFINE_READPAGE_EVENT(xfs_vm_readpages); -  DECLARE_EVENT_CLASS(xfs_imap_class,  	TP_PROTO(struct xfs_inode *ip, xfs_off_t offset, ssize_t count,  		 int whichfork, struct xfs_bmbt_irec *irec), @@ -1642,8 +1577,11 @@ DEFINE_ALLOC_EVENT(xfs_alloc_exact_notfound);  DEFINE_ALLOC_EVENT(xfs_alloc_exact_error);  DEFINE_ALLOC_EVENT(xfs_alloc_near_nominleft);  DEFINE_ALLOC_EVENT(xfs_alloc_near_first); -DEFINE_ALLOC_EVENT(xfs_alloc_near_greater); -DEFINE_ALLOC_EVENT(xfs_alloc_near_lesser); +DEFINE_ALLOC_EVENT(xfs_alloc_cur); +DEFINE_ALLOC_EVENT(xfs_alloc_cur_right); +DEFINE_ALLOC_EVENT(xfs_alloc_cur_left); +DEFINE_ALLOC_EVENT(xfs_alloc_cur_lookup); +DEFINE_ALLOC_EVENT(xfs_alloc_cur_lookup_done);  DEFINE_ALLOC_EVENT(xfs_alloc_near_error);  DEFINE_ALLOC_EVENT(xfs_alloc_near_noentry);  DEFINE_ALLOC_EVENT(xfs_alloc_near_busy); @@ -1663,6 +1601,32 @@ DEFINE_ALLOC_EVENT(xfs_alloc_vextent_noagbp);  DEFINE_ALLOC_EVENT(xfs_alloc_vextent_loopfailed);  DEFINE_ALLOC_EVENT(xfs_alloc_vextent_allfailed); +TRACE_EVENT(xfs_alloc_cur_check, +	TP_PROTO(struct xfs_mount *mp, xfs_btnum_t btnum, xfs_agblock_t bno, +		 xfs_extlen_t len, xfs_extlen_t diff, bool new), +	TP_ARGS(mp, btnum, bno, len, diff, new), +	TP_STRUCT__entry( +		__field(dev_t, dev) +		__field(xfs_btnum_t, btnum) +		__field(xfs_agblock_t, bno) +		__field(xfs_extlen_t, len) +		__field(xfs_extlen_t, diff) +		__field(bool, new) +	), +	TP_fast_assign( +		__entry->dev = mp->m_super->s_dev; +		__entry->btnum = btnum; +		__entry->bno = bno; +		__entry->len = len; +		__entry->diff = diff; +		__entry->new = new; +	), +	TP_printk("dev %d:%d btree %s bno 0x%x len 0x%x diff 0x%x new %d", +		  MAJOR(__entry->dev), MINOR(__entry->dev), +		  __print_symbolic(__entry->btnum, XFS_BTNUM_STRINGS), +		  __entry->bno, __entry->len, __entry->diff, __entry->new) +) +  DECLARE_EVENT_CLASS(xfs_da_class,  	TP_PROTO(struct xfs_da_args *args),  	TP_ARGS(args), @@ -3609,6 +3573,27 @@ DEFINE_KMEM_EVENT(kmem_alloc_large);  DEFINE_KMEM_EVENT(kmem_realloc);  DEFINE_KMEM_EVENT(kmem_zone_alloc); +TRACE_EVENT(xfs_check_new_dalign, +	TP_PROTO(struct xfs_mount *mp, int new_dalign, xfs_ino_t calc_rootino), +	TP_ARGS(mp, new_dalign, calc_rootino), +	TP_STRUCT__entry( +		__field(dev_t, dev) +		__field(int, new_dalign) +		__field(xfs_ino_t, sb_rootino) +		__field(xfs_ino_t, calc_rootino) +	), +	TP_fast_assign( +		__entry->dev = mp->m_super->s_dev; +		__entry->new_dalign = new_dalign; +		__entry->sb_rootino = mp->m_sb.sb_rootino; +		__entry->calc_rootino = calc_rootino; +	), +	TP_printk("dev %d:%d new_dalign %d sb_rootino %llu calc_rootino %llu", +		  MAJOR(__entry->dev), MINOR(__entry->dev), +		  __entry->new_dalign, __entry->sb_rootino, +		  __entry->calc_rootino) +) +  #endif /* _TRACE_XFS_H */  #undef TRACE_INCLUDE_PATH  |