Restore compat ABI in 'struct fuse_file_info'
authorBernd Schubert <bernd@bsbernd.com>
Sat, 28 Dec 2024 10:15:30 +0000 (11:15 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 30 Dec 2024 22:04:03 +0000 (23:04 +0100)
This fixes commit
a5eb7f2 "Enable parallel direct writes on the same file"
and restores the ABI by moving the parallel_direct_writes
bit.

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
include/fuse_common.h

index 396358d8d1e23d26738b619658d23f946366e25a..49ba7d91f0c022630ac46874c385a23ab22d63e2 100644 (file)
@@ -280,21 +280,6 @@ struct fuse_config {
         */
        int nullpath_ok;
 
-       /**
-        *  Allow parallel direct-io writes to operate on the same file.
-        *
-        *  FUSE implementations which do not handle parallel writes on
-        *  same file/region should NOT enable this option at all as it
-        *  might lead to data inconsistencies.
-        *
-        *  For the FUSE implementations which have their own mechanism
-        *  of cache/data integrity are beneficiaries of this setting as
-        *  it now open doors to parallel writes on the same file (without
-        *  enabling this setting, all direct writes on the same file are
-        *  serialized, resulting in huge data bandwidth loss).
-        */
-       int parallel_direct_writes;
-
        /**
         * These 3 options are used by libfuse internally and
         * should not be touched.
@@ -310,6 +295,22 @@ struct fuse_config {
         */
        unsigned int fmask;
        unsigned int dmask;
+
+       /**
+        *  Allow parallel direct-io writes to operate on the same file.
+        *
+        *  FUSE implementations which do not handle parallel writes on
+        *  same file/region should NOT enable this option at all as it
+        *  might lead to data inconsistencies.
+        *
+        *  For the FUSE implementations which have their own mechanism
+        *  of cache/data integrity are beneficiaries of this setting as
+        *  it now open doors to parallel writes on the same file (without
+        *  enabling this setting, all direct writes on the same file are
+        *  serialized, resulting in huge data bandwidth loss).
+        */
+       int parallel_direct_writes;
+
 };
 
 
index e6c3b5d4465a65839201e6db1af3e832346efbcf..c46aacba6ffd82f42e78ea989d7a9bf05905217e 100644 (file)
@@ -67,10 +67,6 @@ struct fuse_file_info {
            the file/directory is closed. */
        unsigned int keep_cache : 1;
 
-       /** Can be filled by open/create, to allow parallel direct writes on this
-           file */
-       unsigned int parallel_direct_writes : 1;
-
        /** Indicates a flush operation.  Set in flush operation, also
            maybe set in highlevel lock operation and lowlevel release
            operation. */
@@ -95,6 +91,10 @@ struct fuse_file_info {
            on close. */
        unsigned int noflush : 1;
 
+       /** Can be filled by open/create, to allow parallel direct writes on this
+           file */
+       unsigned int parallel_direct_writes : 1;
+
        /** Padding.  Reserved for future use*/
        unsigned int padding : 23;
        unsigned int padding2 : 32;