Removed ``-o big_writes`` option
authorNikolaus Rath <Nikolaus@rath.org>
Sat, 8 Oct 2016 04:08:40 +0000 (21:08 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 9 Oct 2016 04:26:36 +0000 (21:26 -0700)
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.

ChangeLog.rst
include/fuse_common.h
lib/fuse_i.h
lib/fuse_lowlevel.c
test/test_examples.py

index 78f6d5183df39c8ef29e1db7a8e628c43909ccd4..bfe956b708e41bc5663d3008d2476bc2011ee7c3 100644 (file)
@@ -1,3 +1,10 @@
+Unreleased Changes
+==================
+
+* The ``-o big_writes`` mount option has been removed. It is now
+  always active. File systems that want to limit the size of write
+  requests should use the ``-o max_write=<N>`` option instead.
+
 FUSE 3.0.0pre0 (2016-10-03)
 ============================
 
index f32c872d3428bb8744d085b0cd25e1d33a2b0567..6eadc90bc051694648cc644eb45ce96cd0f86232 100644 (file)
@@ -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)
index cbc44830529087d8175323d15683dc0f8268f91a..446842a2c5026e11792dd92df02e16da7d6ead2f 100644 (file)
@@ -52,7 +52,6 @@ struct fuse_session {
        int atomic_o_trunc;
        int no_remote_posix_lock;
        int no_remote_flock;
-       int big_writes;
        int splice_write;
        int splice_move;
        int splice_read;
index 34d17a9e3703ea5fd4141db29740f9df5f526285..4ad5daf9f1d689ae3d81f13d09de4579c1fdc5f3 100644 (file)
@@ -1860,8 +1860,6 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
                        f->conn.capable |= FUSE_CAP_ATOMIC_O_TRUNC;
                if (arg->flags & FUSE_EXPORT_SUPPORT)
                        f->conn.capable |= FUSE_CAP_EXPORT_SUPPORT;
-               if (arg->flags & FUSE_BIG_WRITES)
-                       f->conn.capable |= FUSE_CAP_BIG_WRITES;
                if (arg->flags & FUSE_DONT_MASK)
                        f->conn.capable |= FUSE_CAP_DONT_MASK;
                if (arg->flags & FUSE_FLOCK_LOCKS)
@@ -1906,8 +1904,6 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
                f->conn.want |= FUSE_CAP_POSIX_LOCKS;
        if (f->op.flock && !f->no_remote_flock)
                f->conn.want |= FUSE_CAP_FLOCK_LOCKS;
-       if (f->big_writes)
-               f->conn.want |= FUSE_CAP_BIG_WRITES;
        if (f->auto_inval_data)
                f->conn.want |= FUSE_CAP_AUTO_INVAL_DATA;
        if (f->op.readdirplus && !f->no_readdirplus) {
@@ -1951,6 +1947,10 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
        if (f->no_writeback_cache)
                f->conn.want &= ~FUSE_CAP_WRITEBACK_CACHE;
 
+       /* Always enable big writes, this is superseded
+          by the max_write option */
+       outarg.flags |= FUSE_BIG_WRITES;
+
        if (f->conn.async_read || (f->conn.want & FUSE_CAP_ASYNC_READ))
                outarg.flags |= FUSE_ASYNC_READ;
        if (f->conn.want & FUSE_CAP_POSIX_LOCKS)
@@ -1959,8 +1959,6 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
                outarg.flags |= FUSE_ATOMIC_O_TRUNC;
        if (f->conn.want & FUSE_CAP_EXPORT_SUPPORT)
                outarg.flags |= FUSE_EXPORT_SUPPORT;
-       if (f->conn.want & FUSE_CAP_BIG_WRITES)
-               outarg.flags |= FUSE_BIG_WRITES;
        if (f->conn.want & FUSE_CAP_DONT_MASK)
                outarg.flags |= FUSE_DONT_MASK;
        if (f->conn.want & FUSE_CAP_FLOCK_LOCKS)
@@ -2565,7 +2563,6 @@ static const struct fuse_opt fuse_ll_opts[] = {
        { "no_remote_lock", offsetof(struct fuse_session, no_remote_flock), 1},
        { "no_remote_flock", offsetof(struct fuse_session, no_remote_flock), 1},
        { "no_remote_posix_lock", offsetof(struct fuse_session, no_remote_posix_lock), 1},
-       { "big_writes", offsetof(struct fuse_session, big_writes), 1},
        { "splice_write", offsetof(struct fuse_session, splice_write), 1},
        { "no_splice_write", offsetof(struct fuse_session, no_splice_write), 1},
        { "splice_move", offsetof(struct fuse_session, splice_move), 1},
@@ -2605,7 +2602,6 @@ void fuse_lowlevel_help(void)
 "    -o async_read          perform reads asynchronously (default)\n"
 "    -o sync_read           perform reads synchronously\n"
 "    -o atomic_o_trunc      enable atomic open+truncate support\n"
-"    -o big_writes          enable larger than 4kB writes\n"
 "    -o no_remote_lock      disable remote file locking\n"
 "    -o no_remote_flock     disable remote file locking (BSD)\n"
 "    -o no_remote_posix_lock  disable remote file locking (POSIX)\n"
index 3f8892b0d38049310307d7d0e6c7455e53b4b320..226835f14d499686954a27a0e7ee2840e4b4a434 100755 (executable)
@@ -28,7 +28,7 @@ def name_generator(__ctr=[0]):
     return 'testfile_%d' % __ctr[0]
 
 LL_OPTIONS = [ ['-o', 'splice_move,splice_write,splice_read' ],
-               ['-o', 'clone_fd,big_writes,writeback_cache' ] ]
+               ['-o', 'clone_fd,writeback_cache' ] ]
 
 @pytest.mark.parametrize("name", ('hello', 'hello_ll'))
 @pytest.mark.parametrize("options", LL_OPTIONS)