diff options
| author | Harshavardhana <harsha@zresearch.com> | 2009-07-01 04:13:29 +0000 |
|---|---|---|
| committer | Anand V. Avati <avati@dev.gluster.com> | 2009-07-01 18:32:20 -0700 |
| commit | c284d5e73760aef176eefa25ee2054a67662bf98 (patch) | |
| tree | 25b68a0d13794afed02f060c882cb5e6003271e4 /xlators/mount/fuse/src/fuse-bridge.c | |
| parent | 5feb0ccb6efc006b2b17d29509b63a41fa14293c (diff) | |
fuse 2.8 support for xlator/fuse
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'xlators/mount/fuse/src/fuse-bridge.c')
| -rw-r--r-- | xlators/mount/fuse/src/fuse-bridge.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xlators/mount/fuse/src/fuse-bridge.c b/xlators/mount/fuse/src/fuse-bridge.c index ed9cf1a2c60..e938db72f52 100644 --- a/xlators/mount/fuse/src/fuse-bridge.c +++ b/xlators/mount/fuse/src/fuse-bridge.c @@ -2641,6 +2641,11 @@ init (xlator_t *this_xl) ret = fuse_opt_add_arg(&args, "-ononempty"); if (ret != -1) ret = fuse_opt_add_arg(&args, "-odev"); +#ifdef HAVE_FUSE_VERSION_28 + if (ret != -1) + ret = fuse_opt_add_arg(&args, "-obig_writes"); +#endif /* FUSE 2.8 */ + #endif /* LINUX */ #endif /* ! DARWIN_OS */ |
