]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
xfs: remove the EXPERIMENTAL warning for pNFS
authorChristoph Hellwig <hch@lst.de>
Wed, 14 May 2025 04:44:20 +0000 (06:44 +0200)
committerCarlos Maiolino <cem@kernel.org>
Wed, 14 May 2025 10:42:12 +0000 (12:42 +0200)
The pNFS layout support has been around for 10 years without major
issues, drop the EXPERIMENTAL warning.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
fs/xfs/xfs_message.c
fs/xfs/xfs_message.h
fs/xfs/xfs_mount.h
fs/xfs/xfs_pnfs.c

index 54fc5ada519c4315084925def2ad2d51f5e497d1..19aba2c3d525443d333895247a2afb5b88e9ecd2 100644 (file)
@@ -141,10 +141,6 @@ xfs_warn_experimental(
                const char              *name;
                long                    opstate;
        } features[] = {
-               [XFS_EXPERIMENTAL_PNFS] = {
-                       .opstate        = XFS_OPSTATE_WARNED_PNFS,
-                       .name           = "pNFS",
-               },
                [XFS_EXPERIMENTAL_SHRINK] = {
                        .opstate        = XFS_OPSTATE_WARNED_SHRINK,
                        .name           = "online shrink",
index bce9942f394a6f86c4038b4086f3528efdceb3eb..d68e72379f9dd5592b09db925abab36957379aed 100644 (file)
@@ -91,7 +91,6 @@ void xfs_buf_alert_ratelimited(struct xfs_buf *bp, const char *rlmsg,
                               const char *fmt, ...);
 
 enum xfs_experimental_feat {
-       XFS_EXPERIMENTAL_PNFS,
        XFS_EXPERIMENTAL_SHRINK,
        XFS_EXPERIMENTAL_LARP,
        XFS_EXPERIMENTAL_LBS,
index 168b4d340cfc81ff79dce4187cc22d3bb4aee647..89965b7ac29cb6b02b0658ae1f3aa50c8225650e 100644 (file)
@@ -557,8 +557,6 @@ __XFS_HAS_FEAT(nouuid, NOUUID)
  */
 #define XFS_OPSTATE_BLOCKGC_ENABLED    6
 
-/* Kernel has logged a warning about pNFS being used on this fs. */
-#define XFS_OPSTATE_WARNED_PNFS                7
 /* Kernel has logged a warning about shrink being used on this fs. */
 #define XFS_OPSTATE_WARNED_SHRINK      9
 /* Kernel has logged a warning about logged xattr updates being used. */
index 6f4479deac6d6847b0ca4b3f1fa31eef1ffd988b..afe7497012d4c93c42724fdb773208403c4d2107 100644 (file)
@@ -58,8 +58,6 @@ xfs_fs_get_uuid(
 {
        struct xfs_mount        *mp = XFS_M(sb);
 
-       xfs_warn_experimental(mp, XFS_EXPERIMENTAL_PNFS);
-
        if (*len < sizeof(uuid_t))
                return -EINVAL;