Skip to content

Commit 4d6d335

Browse files
Darrick J. Wongcmaiolino
authored andcommitted
xfs: promote metadata directories and large block support
Large block support was merged upstream in 6.12 (Dec 2024) and metadata directories was merged in 6.13 (Jan 2025). We've not received any serious complaints about the ondisk formats of these two features in the past year, so let's remove the experimental warnings. Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Carlos Maiolino <cem@kernel.org>
1 parent 12d12dc commit 4d6d335

3 files changed

Lines changed: 0 additions & 14 deletions

File tree

fs/xfs/xfs_message.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,6 @@ xfs_warn_experimental(
149149
.opstate = XFS_OPSTATE_WARNED_LARP,
150150
.name = "logged extended attributes",
151151
},
152-
[XFS_EXPERIMENTAL_LBS] = {
153-
.opstate = XFS_OPSTATE_WARNED_LBS,
154-
.name = "large block size",
155-
},
156-
[XFS_EXPERIMENTAL_METADIR] = {
157-
.opstate = XFS_OPSTATE_WARNED_METADIR,
158-
.name = "metadata directory tree",
159-
},
160152
[XFS_EXPERIMENTAL_ZONED] = {
161153
.opstate = XFS_OPSTATE_WARNED_ZONED,
162154
.name = "zoned RT device",

fs/xfs/xfs_message.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,6 @@ void xfs_buf_alert_ratelimited(struct xfs_buf *bp, const char *rlmsg,
9393
enum xfs_experimental_feat {
9494
XFS_EXPERIMENTAL_SHRINK,
9595
XFS_EXPERIMENTAL_LARP,
96-
XFS_EXPERIMENTAL_LBS,
97-
XFS_EXPERIMENTAL_METADIR,
9896
XFS_EXPERIMENTAL_ZONED,
9997

10098
XFS_EXPERIMENTAL_MAX,

fs/xfs/xfs_super.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1835,8 +1835,6 @@ xfs_fs_fill_super(
18351835
error = -ENOSYS;
18361836
goto out_free_sb;
18371837
}
1838-
1839-
xfs_warn_experimental(mp, XFS_EXPERIMENTAL_LBS);
18401838
}
18411839

18421840
/* Ensure this filesystem fits in the page cache limits */
@@ -1922,8 +1920,6 @@ xfs_fs_fill_super(
19221920
goto out_filestream_unmount;
19231921
}
19241922
xfs_warn_experimental(mp, XFS_EXPERIMENTAL_ZONED);
1925-
} else if (xfs_has_metadir(mp)) {
1926-
xfs_warn_experimental(mp, XFS_EXPERIMENTAL_METADIR);
19271923
}
19281924

19291925
if (xfs_has_reflink(mp)) {

0 commit comments

Comments
 (0)