diff options
Diffstat (limited to 'xlators/mount/fuse/src')
-rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index d33a961f0..ed9cf1a2c 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -2630,12 +2630,12 @@ init (xlator_t *this_xl) if (ret != -1) ret = fuse_opt_add_arg(&args, "-omax_readahead=131072"); if (ret != -1) - ret = fuse_opt_add_arg(&args, "-omax_read=13107"); + ret = fuse_opt_add_arg(&args, "-omax_read=131072"); if (ret != -1) ret = fuse_opt_add_arg(&args, "-omax_write=131072"); if (ret != -1) ret = fuse_opt_add_arg(&args, "-osuid"); -#if GF_LINUX_HOST_OS /* ! LINUX */ +#if GF_LINUX_HOST_OS /* LINUX */ /* '-o dev', '-o nonempty' is supported only on Linux */ if (ret != -1) ret = fuse_opt_add_arg(&args, "-ononempty"); |