From fc9b950c546a20a18019115fc0860a960bbddf29 Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Tue, 12 Nov 2024 09:49:24 +0100 Subject: [PATCH] xfs: fix XFS_METAFILE_TYPE_STR for rtrefcount Signed-off-by: Christoph Hellwig --- fs/xfs/libxfs/xfs_format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/xfs/libxfs/xfs_format.h b/fs/xfs/libxfs/xfs_format.h index 8e3536d7759e..707d96113037 100644 --- a/fs/xfs/libxfs/xfs_format.h +++ b/fs/xfs/libxfs/xfs_format.h @@ -872,7 +872,7 @@ enum xfs_metafile_type { { XFS_METAFILE_RTBITMAP, "rtbitmap" }, \ { XFS_METAFILE_RTSUMMARY, "rtsummary" }, \ { XFS_METAFILE_RTRMAP, "rtrmap" }, \ - { XFS_METAFILE_RTRMAP, "rtrefcount" } + { XFS_METAFILE_RTREFCOUNT, "rtrefcount" } /* * On-disk inode structure. -- 2.50.1