Restore compat ABI in 'struct fuse_config'
authorBernd Schubert <bernd@bsbernd.com>
Sat, 28 Dec 2024 10:22:14 +0000 (11:22 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 30 Dec 2024 22:04:11 +0000 (23:04 +0100)
This fixes commit
dad15aee26835 "Add no_rofd_flush mount option"
and restores the ABI by moving the no_rofd_flush field.

Given that there were already several releases with this commit
we will still need an so version bump.

Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
include/fuse.h

index 49ba7d91f0c022630ac46874c385a23ab22d63e2..78d856b56875214a60394bce047d4675ca6cb7c0 100644 (file)
@@ -252,14 +252,6 @@ struct fuse_config {
         */
        int auto_cache;
 
-       /**
-        * By default, fuse waits for all pending writes to complete
-        * and calls the FLUSH operation on close(2) of every fuse fd.
-        * With this option, wait and FLUSH are not done for read-only
-        * fuse fd, similar to the behavior of NFS/SMB clients.
-        */
-       int no_rofd_flush;
-
        /**
         * The timeout in seconds for which file attributes are cached
         * for the purpose of checking if auto_cache should flush the
@@ -296,6 +288,14 @@ struct fuse_config {
        unsigned int fmask;
        unsigned int dmask;
 
+       /**
+        * By default, fuse waits for all pending writes to complete
+        * and calls the FLUSH operation on close(2) of every fuse fd.
+        * With this option, wait and FLUSH are not done for read-only
+        * fuse fd, similar to the behavior of NFS/SMB clients.
+        */
+       int no_rofd_flush;
+
        /**
         *  Allow parallel direct-io writes to operate on the same file.
         *