diff options
author | Dave Chinner <dchinner@redhat.com> | 2015-01-09 10:47:43 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-01-09 10:47:43 +1100 |
commit | 64af7a6ea5a4c7e12ae79415250d054424b7e0c2 (patch) | |
tree | be242c7fb221345e0b469dc0dce65a6e207e4ab3 /fs/xfs | |
parent | aa5d95c1b57792119804c587b9a468019219d7e0 (diff) | |
download | op-kernel-dev-64af7a6ea5a4c7e12ae79415250d054424b7e0c2.zip op-kernel-dev-64af7a6ea5a4c7e12ae79415250d054424b7e0c2.tar.gz |
xfs: remove deprecated sysctls
xfsbufd_centisecs and age_buffer_centisecs were due for removal in
3.14. We forgot to do that - it's now well past time to remove these
deprecated, unused sysctls.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_sysctl.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/fs/xfs/xfs_sysctl.c b/fs/xfs/xfs_sysctl.c index 1743b9f..a0c8067 100644 --- a/fs/xfs/xfs_sysctl.c +++ b/fs/xfs/xfs_sysctl.c @@ -149,24 +149,6 @@ static struct ctl_table xfs_table[] = { .extra2 = &xfs_params.inherit_noatim.max }, { - .procname = "xfsbufd_centisecs", - .data = &xfs_params.xfs_buf_timer.val, - .maxlen = sizeof(int), - .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &xfs_params.xfs_buf_timer.min, - .extra2 = &xfs_params.xfs_buf_timer.max - }, - { - .procname = "age_buffer_centisecs", - .data = &xfs_params.xfs_buf_age.val, - .maxlen = sizeof(int), - .mode = 0644, - .proc_handler = proc_dointvec_minmax, - .extra1 = &xfs_params.xfs_buf_age.min, - .extra2 = &xfs_params.xfs_buf_age.max - }, - { .procname = "inherit_nosymlinks", .data = &xfs_params.inherit_nosym.val, .maxlen = sizeof(int), |