]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
xfs: remove the unused trace_xfs_iwalk_ag trace point
authorChristoph Hellwig <hch@lst.de>
Mon, 4 Nov 2024 04:18:30 +0000 (20:18 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Tue, 5 Nov 2024 21:38:25 +0000 (13:38 -0800)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
fs/xfs/xfs_trace.h

index b9baafba031b2531505efca63bd5ec4858d49ceb..35b07af3b71d515455279867364784061b834a06 100644 (file)
@@ -4237,25 +4237,6 @@ DEFINE_INODE_CORRUPT_EVENT(xfs_inode_mark_corrupt);
 DEFINE_INODE_CORRUPT_EVENT(xfs_inode_mark_healthy);
 DEFINE_INODE_CORRUPT_EVENT(xfs_inode_unfixed_corruption);
 
-TRACE_EVENT(xfs_iwalk_ag,
-       TP_PROTO(struct xfs_mount *mp, xfs_agnumber_t agno,
-                xfs_agino_t startino),
-       TP_ARGS(mp, agno, startino),
-       TP_STRUCT__entry(
-               __field(dev_t, dev)
-               __field(xfs_agnumber_t, agno)
-               __field(xfs_agino_t, startino)
-       ),
-       TP_fast_assign(
-               __entry->dev = mp->m_super->s_dev;
-               __entry->agno = agno;
-               __entry->startino = startino;
-       ),
-       TP_printk("dev %d:%d agno 0x%x startino 0x%x",
-                 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->agno,
-                 __entry->startino)
-)
-
 TRACE_EVENT(xfs_iwalk_ag_rec,
        TP_PROTO(struct xfs_mount *mp, xfs_agnumber_t agno,
                 struct xfs_inobt_rec_incore *irec),