From 37d2c255e46eea98df473fbc693931462882392e Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 3 Jul 2013 09:45:41 +0200 Subject: fuse: pass the mountflags to older (< 2.6.21) kernels The change for Bug 853895 fixed mounting volumes read-only for recent kernels. Older kernels fail the first mount() syscall, and the second mount() did not add the 'mountflags'. Full analysis and a description for reproducing is in the bugreport. The test included in http://review.gluster.org/4163 would have caught this problem when the tests are executed on RHEL-5 or similar systems. Change-Id: I440591344a6a5af7b2018e37a2a1fda9de8b5ab2 Bug: 980770 Signed-off-by: Niels de Vos Reviewed-on: http://review.gluster.org/5278 Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- contrib/fuse-lib/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/fuse-lib/mount.c b/contrib/fuse-lib/mount.c index a222aaca4..922d9e464 100644 --- a/contrib/fuse-lib/mount.c +++ b/contrib/fuse-lib/mount.c @@ -201,7 +201,7 @@ fuse_mount_sys (const char *mountpoint, char *fsname, goto out; } - ret = mount (source, mountpoint, fstype, 0, + ret = mount (source, mountpoint, fstype, mountflags, mnt_param_mnt); } if (ret == -1) -- cgit