From: Sage Weil Date: Mon, 2 Aug 2010 23:23:49 +0000 (-0700) Subject: ceph: do not ignore osd_idle_ttl mount option X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e9d177443134bc4ac1c1393af69e2a8704bcac09;p=linux-beck.git ceph: do not ignore osd_idle_ttl mount option Actually apply the mount option to the mount_args struct. Signed-off-by: Sage Weil --- diff --git a/fs/ceph/super.c b/fs/ceph/super.c index 7f751f2850ba..9922628532b2 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c @@ -548,6 +548,9 @@ static struct ceph_mount_args *parse_mount_args(int flags, char *options, case Opt_osdkeepalivetimeout: args->osd_keepalive_timeout = intval; break; + case Opt_osd_idle_ttl: + args->osd_idle_ttl = intval; + break; case Opt_mount_timeout: args->mount_timeout = intval; break;