mirror of https://github.com/torvalds/linux.git
xfs: remove the EXPERIMENTAL warning for pNFS
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>
This commit is contained in:
parent
ca43b74ac3
commit
1c7161ef01
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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. */
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue