*/
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.
*/
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;
+
};
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. */
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;