aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-07 21:08:40 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-08 21:26:36 -0700
commit97f4a9cb4fc69be5c3b4d7631ebe20355bdc83dc (patch)
treea8575cf3f00cf10ec0a6bd0e591fabe1a697c5e5 /include
parent2680c5b9951b022351dd698b1ba21e965355ad16 (diff)
Removed ``-o big_writes`` option
This option is obsolete and should always be enabled. File systems that want to limit the size of write requests should use the ``-o max_write=<N>`` option instead.
Diffstat (limited to 'include')
-rw-r--r--include/fuse_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h
index f32c872..6eadc90 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -90,7 +90,6 @@ struct fuse_file_info {
* FUSE_CAP_POSIX_LOCKS: filesystem supports "remote" locking
* FUSE_CAP_ATOMIC_O_TRUNC: filesystem handles the O_TRUNC open flag
* FUSE_CAP_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
- * FUSE_CAP_BIG_WRITES: filesystem can handle write size larger than 4kB
* FUSE_CAP_DONT_MASK: don't apply umask to file mode on create operations
* FUSE_CAP_SPLICE_WRITE: ability to use splice() to write to the fuse device
* FUSE_CAP_SPLICE_MOVE: ability to move data to the fuse device with splice()
@@ -107,7 +106,8 @@ struct fuse_file_info {
#define FUSE_CAP_POSIX_LOCKS (1 << 1)
#define FUSE_CAP_ATOMIC_O_TRUNC (1 << 3)
#define FUSE_CAP_EXPORT_SUPPORT (1 << 4)
-#define FUSE_CAP_BIG_WRITES (1 << 5)
+/* (1 << 5) used to be FUSE_CAP_BIG_WRITES, which is now
+ always enabled */
#define FUSE_CAP_DONT_MASK (1 << 6)
#define FUSE_CAP_SPLICE_WRITE (1 << 7)
#define FUSE_CAP_SPLICE_MOVE (1 << 8)