Message ID | 20210125173644.10220-1-idryomov@gmail.com |
---|---|
State | New |
Headers | show |
Series | libceph: remove osdtimeout option entirely | expand |
On Mon, 2021-01-25 at 18:36 +0100, Ilya Dryomov wrote: > Commit 83aff95eb9d6 ("libceph: remove 'osdtimeout' option") deprecated > osdtimeout over 8 years ago, but it is still recognized. Let's remove > it entirely. > > Signed-off-by: Ilya Dryomov <idryomov@gmail.com> > --- > net/ceph/ceph_common.c | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c > index bec181181d41..97d6ea763e32 100644 > --- a/net/ceph/ceph_common.c > +++ b/net/ceph/ceph_common.c > @@ -252,7 +252,6 @@ static int parse_fsid(const char *str, struct ceph_fsid *fsid) > * ceph options > */ > enum { > - Opt_osdtimeout, > Opt_osdkeepalivetimeout, > Opt_mount_timeout, > Opt_osd_idle_ttl, > @@ -320,8 +319,6 @@ static const struct fs_parameter_spec ceph_parameters[] = { > fsparam_u32 ("osd_idle_ttl", Opt_osd_idle_ttl), > fsparam_u32 ("osd_request_timeout", Opt_osd_request_timeout), > fsparam_u32 ("osdkeepalive", Opt_osdkeepalivetimeout), > - __fsparam (fs_param_is_s32, "osdtimeout", Opt_osdtimeout, > - fs_param_deprecated, NULL), > fsparam_enum ("read_from_replica", Opt_read_from_replica, > ceph_param_read_from_replica), > fsparam_enum ("ms_mode", Opt_ms_mode, > @@ -553,9 +550,6 @@ int ceph_parse_param(struct fs_parameter *param, struct ceph_options *opt, > } > break; > > > - case Opt_osdtimeout: > - warn_plog(&log, "Ignoring osdtimeout"); > - break; > case Opt_osdkeepalivetimeout: > /* 0 isn't well defined right now, reject it */ > if (result.uint_32 < 1 || result.uint_32 > INT_MAX / 1000) Reviewed-by: Jeff Layton <jlayton@kernel.org>
diff --git a/net/ceph/ceph_common.c b/net/ceph/ceph_common.c index bec181181d41..97d6ea763e32 100644 --- a/net/ceph/ceph_common.c +++ b/net/ceph/ceph_common.c @@ -252,7 +252,6 @@ static int parse_fsid(const char *str, struct ceph_fsid *fsid) * ceph options */ enum { - Opt_osdtimeout, Opt_osdkeepalivetimeout, Opt_mount_timeout, Opt_osd_idle_ttl, @@ -320,8 +319,6 @@ static const struct fs_parameter_spec ceph_parameters[] = { fsparam_u32 ("osd_idle_ttl", Opt_osd_idle_ttl), fsparam_u32 ("osd_request_timeout", Opt_osd_request_timeout), fsparam_u32 ("osdkeepalive", Opt_osdkeepalivetimeout), - __fsparam (fs_param_is_s32, "osdtimeout", Opt_osdtimeout, - fs_param_deprecated, NULL), fsparam_enum ("read_from_replica", Opt_read_from_replica, ceph_param_read_from_replica), fsparam_enum ("ms_mode", Opt_ms_mode, @@ -553,9 +550,6 @@ int ceph_parse_param(struct fs_parameter *param, struct ceph_options *opt, } break; - case Opt_osdtimeout: - warn_plog(&log, "Ignoring osdtimeout"); - break; case Opt_osdkeepalivetimeout: /* 0 isn't well defined right now, reject it */ if (result.uint_32 < 1 || result.uint_32 > INT_MAX / 1000)
Commit 83aff95eb9d6 ("libceph: remove 'osdtimeout' option") deprecated osdtimeout over 8 years ago, but it is still recognized. Let's remove it entirely. Signed-off-by: Ilya Dryomov <idryomov@gmail.com> --- net/ceph/ceph_common.c | 6 ------ 1 file changed, 6 deletions(-)