From 9032b1dfbbf8d0bbf8731959ad1048f7bbc530a3 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 2 Sep 2013 09:48:51 +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: Ifa6cd6476bf1939e009142ed4ed1b53b9c3171bd Master-Branch-Change-ID: I440591344a6a5af7b2018e37a2a1fda9de8b5ab2 Bug: 996768 Signed-off-by: Niels de Vos Reviewed-on: http://review.gluster.org/5752 Reviewed-by: Shishir Gowda Reviewed-by: Raghavendra Bhat Tested-by: Gluster Build System Reviewed-by: Vijay Bellur --- contrib/fuse-lib/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/fuse-lib/mount.c b/contrib/fuse-lib/mount.c index a222aaca402..922d9e464db 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