From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Pavel Reichl <preichl@redhat.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH v2 1/2] xfs: remove deprecated mount options
Date: Fri, 25 Sep 2020 11:13:47 -0700 [thread overview]
Message-ID: <20200925181347.GL7955@magnolia> (raw)
In-Reply-To: <20200925165005.48903-2-preichl@redhat.com>
On Fri, Sep 25, 2020 at 06:50:04PM +0200, Pavel Reichl wrote:
> ikeep/noikeep was a workaround for old DMAPI code which is no longer
> relevant.
>
> attr2/noattr2 - is for controlling upgrade behaviour from fixed attribute
> fork sizes in the inode (attr1) and dynamic attribute fork sizes (attr2).
> mkfs has defaulted to setting attr2 since 2007, hence just about every
> XFS filesystem out there in production right now uses attr2.
>
> Signed-off-by: Pavel Reichl <preichl@redhat.com>
> ---
> Documentation/admin-guide/xfs.rst | 2 ++
> fs/xfs/xfs_super.c | 31 ++++++++++++++++++-------------
> 2 files changed, 20 insertions(+), 13 deletions(-)
>
> diff --git a/Documentation/admin-guide/xfs.rst b/Documentation/admin-guide/xfs.rst
> index f461d6c33534..717f63a3607a 100644
> --- a/Documentation/admin-guide/xfs.rst
> +++ b/Documentation/admin-guide/xfs.rst
> @@ -217,6 +217,8 @@ Deprecated Mount Options
> =========================== ================
> Name Removal Schedule
> =========================== ================
> + ikeep/noikeep September 2025
> + attr2/noattr2 September 2025
> =========================== ================
>
>
> diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
> index 71ac6c1cdc36..1a04a03213c8 100644
> --- a/fs/xfs/xfs_super.c
> +++ b/fs/xfs/xfs_super.c
> @@ -1234,25 +1234,12 @@ xfs_fc_parse_param(
> case Opt_nouuid:
> mp->m_flags |= XFS_MOUNT_NOUUID;
> return 0;
> - case Opt_ikeep:
> - mp->m_flags |= XFS_MOUNT_IKEEP;
> - return 0;
> - case Opt_noikeep:
> - mp->m_flags &= ~XFS_MOUNT_IKEEP;
> - return 0;
> case Opt_largeio:
> mp->m_flags |= XFS_MOUNT_LARGEIO;
> return 0;
> case Opt_nolargeio:
> mp->m_flags &= ~XFS_MOUNT_LARGEIO;
> return 0;
> - case Opt_attr2:
> - mp->m_flags |= XFS_MOUNT_ATTR2;
> - return 0;
> - case Opt_noattr2:
> - mp->m_flags &= ~XFS_MOUNT_ATTR2;
> - mp->m_flags |= XFS_MOUNT_NOATTR2;
> - return 0;
> case Opt_filestreams:
> mp->m_flags |= XFS_MOUNT_FILESTREAMS;
> return 0;
> @@ -1304,6 +1291,24 @@ xfs_fc_parse_param(
> xfs_mount_set_dax_mode(mp, result.uint_32);
> return 0;
> #endif
> + /* Following mount options well be removed on September 2025 */
well -> will, on -> in
I fixed that on commit, so
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
--D
> + case Opt_ikeep:
> + xfs_warn(mp, "%s mount option is deprecated.", param->key);
> + mp->m_flags |= XFS_MOUNT_IKEEP;
> + return 0;
> + case Opt_noikeep:
> + xfs_warn(mp, "%s mount option is deprecated.", param->key);
> + mp->m_flags &= ~XFS_MOUNT_IKEEP;
> + return 0;
> + case Opt_attr2:
> + xfs_warn(mp, "%s mount option is deprecated.", param->key);
> + mp->m_flags |= XFS_MOUNT_ATTR2;
> + return 0;
> + case Opt_noattr2:
> + xfs_warn(mp, "%s mount option is deprecated.", param->key);
> + mp->m_flags &= ~XFS_MOUNT_ATTR2;
> + mp->m_flags |= XFS_MOUNT_NOATTR2;
> + return 0;
> default:
> xfs_warn(mp, "unknown mount option [%s].", param->key);
> return -EINVAL;
> --
> 2.26.2
>
next prev parent reply other threads:[~2020-09-25 18:13 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-25 16:50 [PATCH v2 0/2] Pavel Reichl
2020-09-25 16:50 ` [PATCH v2 1/2] xfs: remove deprecated mount options Pavel Reichl
2020-09-25 18:13 ` Darrick J. Wong [this message]
2020-09-25 16:50 ` [PATCH v2 2/2] xfs: remove deprecated sysctl options Pavel Reichl
2020-09-25 18:14 ` Darrick J. Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200925181347.GL7955@magnolia \
--to=darrick.wong@oracle.com \
--cc=linux-xfs@vger.kernel.org \
--cc=preichl@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox