Skip to content

Commit 7b7381f

Browse files
Brian Fosterdchinner
authored andcommitted
xfs: fix up inode cowblocks tracking tracepoints
These calls are still using the eofblocks tracepoints. The cowblocks equivalents are already defined, we just aren't actually calling them. Signed-off-by: Brian Foster <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]> Reviewed-by: Darrick J. Wong <[email protected]> Signed-off-by: Dave Chinner <[email protected]>
1 parent c663e29 commit 7b7381f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fs/xfs/xfs_icache.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1656,17 +1656,17 @@ void
16561656
xfs_inode_set_cowblocks_tag(
16571657
xfs_inode_t *ip)
16581658
{
1659-
trace_xfs_inode_set_eofblocks_tag(ip);
1659+
trace_xfs_inode_set_cowblocks_tag(ip);
16601660
return __xfs_inode_set_eofblocks_tag(ip, xfs_queue_cowblocks,
1661-
trace_xfs_perag_set_eofblocks,
1661+
trace_xfs_perag_set_cowblocks,
16621662
XFS_ICI_COWBLOCKS_TAG);
16631663
}
16641664

16651665
void
16661666
xfs_inode_clear_cowblocks_tag(
16671667
xfs_inode_t *ip)
16681668
{
1669-
trace_xfs_inode_clear_eofblocks_tag(ip);
1669+
trace_xfs_inode_clear_cowblocks_tag(ip);
16701670
return __xfs_inode_clear_eofblocks_tag(ip,
1671-
trace_xfs_perag_clear_eofblocks, XFS_ICI_COWBLOCKS_TAG);
1671+
trace_xfs_perag_clear_cowblocks, XFS_ICI_COWBLOCKS_TAG);
16721672
}

0 commit comments

Comments
 (0)