From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Pavel Reichl <preichl@redhat.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH v2 2/2] xfs: remove deprecated sysctl options
Date: Fri, 25 Sep 2020 11:14:30 -0700 [thread overview]
Message-ID: <20200925181430.GM7955@magnolia> (raw)
In-Reply-To: <20200925165005.48903-3-preichl@redhat.com>
On Fri, Sep 25, 2020 at 06:50:05PM +0200, Pavel Reichl wrote:
> These optionr were for Irix compatibility, probably for clustered XFS
> clients in a heterogenous cluster which contained both Irix & Linux
> machines, so that behavior would be consistent. That doesn't exist anymore
> and it's no longer needed.
>
> Signed-off-by: Pavel Reichl <preichl@redhat.com>
> ---
> Documentation/admin-guide/xfs.rst | 3 ++-
> fs/xfs/xfs_sysctl.c | 36 +++++++++++++++++++++++++++++--
> 2 files changed, 36 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/admin-guide/xfs.rst b/Documentation/admin-guide/xfs.rst
> index 717f63a3607a..ce32d9d8529d 100644
> --- a/Documentation/admin-guide/xfs.rst
> +++ b/Documentation/admin-guide/xfs.rst
> @@ -333,7 +333,8 @@ The following sysctls are available for the XFS filesystem:
> Deprecated Sysctls
> ==================
>
> -None at present.
> +fs.xfs.irix_sgid_inherit
> +fs.xfs.irix_symlink_mode
Assuming everyone's fine with removing these in September 2025 as well,
I'll tweak this patch to state that date in a table like all the other
deprecated/removed stuff.
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
--D
>
>
> Removed Sysctls
> diff --git a/fs/xfs/xfs_sysctl.c b/fs/xfs/xfs_sysctl.c
> index 021ef96d0542..fac9de7ee6d0 100644
> --- a/fs/xfs/xfs_sysctl.c
> +++ b/fs/xfs/xfs_sysctl.c
> @@ -50,13 +50,45 @@ xfs_panic_mask_proc_handler(
> }
> #endif /* CONFIG_PROC_FS */
>
> +STATIC int
> +xfs_deprecate_irix_sgid_inherit_proc_handler(
> + struct ctl_table *ctl,
> + int write,
> + void *buffer,
> + size_t *lenp,
> + loff_t *ppos)
> +{
> + if (write) {
> + printk_once(KERN_WARNING
> + "XFS: " "%s sysctl option is deprecated.\n",
> + ctl->procname);
> + }
> + return proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
> +}
> +
> +STATIC int
> +xfs_deprecate_irix_symlink_mode_proc_handler(
> + struct ctl_table *ctl,
> + int write,
> + void *buffer,
> + size_t *lenp,
> + loff_t *ppos)
> +{
> + if (write) {
> + printk_once(KERN_WARNING
> + "XFS: " "%s sysctl option is deprecated.\n",
> + ctl->procname);
> + }
> + return proc_dointvec_minmax(ctl, write, buffer, lenp, ppos);
> +}
> +
> static struct ctl_table xfs_table[] = {
> {
> .procname = "irix_sgid_inherit",
> .data = &xfs_params.sgid_inherit.val,
> .maxlen = sizeof(int),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = xfs_deprecate_irix_sgid_inherit_proc_handler,
> .extra1 = &xfs_params.sgid_inherit.min,
> .extra2 = &xfs_params.sgid_inherit.max
> },
> @@ -65,7 +97,7 @@ static struct ctl_table xfs_table[] = {
> .data = &xfs_params.symlink_mode.val,
> .maxlen = sizeof(int),
> .mode = 0644,
> - .proc_handler = proc_dointvec_minmax,
> + .proc_handler = xfs_deprecate_irix_symlink_mode_proc_handler,
> .extra1 = &xfs_params.symlink_mode.min,
> .extra2 = &xfs_params.symlink_mode.max
> },
> --
> 2.26.2
>
prev parent reply other threads:[~2020-09-25 18:14 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
2020-09-25 16:50 ` [PATCH v2 2/2] xfs: remove deprecated sysctl options Pavel Reichl
2020-09-25 18:14 ` Darrick J. Wong [this message]
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=20200925181430.GM7955@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