aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/super.c
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2010-08-02 16:23:49 -0700
committerSage Weil <sage@newdream.net>2010-08-03 12:56:57 -0700
commite9d177443134bc4ac1c1393af69e2a8704bcac09 (patch)
tree77da337352fe11a62b1f712c30d28105175b4378 /fs/ceph/super.c
parent52dfb8ac0ef41168c1a10590b7259a5ab1cd2ab7 (diff)
downloadkernel_samsung_smdk4412-e9d177443134bc4ac1c1393af69e2a8704bcac09.zip
kernel_samsung_smdk4412-e9d177443134bc4ac1c1393af69e2a8704bcac09.tar.gz
kernel_samsung_smdk4412-e9d177443134bc4ac1c1393af69e2a8704bcac09.tar.bz2
ceph: do not ignore osd_idle_ttl mount option
Actually apply the mount option to the mount_args struct. Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r--fs/ceph/super.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index 7f751f2..9922628 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;