aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2024-06-25 05:42:21 +0200
committerBernd Schubert <bernd.schubert@fastmail.fm>2024-07-03 13:10:46 +0200
commit9581e214b8967bcdd3d0c45db3da14f2e1151220 (patch)
tree6f4830d9040a8d0113c7a4f3dcba0a0ff706fd77 /include/fuse.h
parent54b8cd6757ed383c0da10a5ba6a778dd45f28ad6 (diff)
downloadlibfuse-9581e214b8967bcdd3d0c45db3da14f2e1151220.tar.gz
Annotate ABI sensitivness for some data structures
These are not all ABI sensitive data structures yet. Also some space vs tab indentation issues are corrected.
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index ad50d7f..396358d 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -94,6 +94,9 @@ typedef int (*fuse_fill_dir_t) (void *buf, const char *name,
* fuse_new(), and then passed to the file system's init() handler
* which should ensure that the configuration is compatible with the
* file system implementation.
+ *
+ * Note: this data structure is ABI sensitive, new options have to be
+ * appended at the end of the structure
*/
struct fuse_config {
/**
@@ -276,6 +279,7 @@ struct fuse_config {
* fuse_file_info argument is NULL.
*/
int nullpath_ok;
+
/**
* Allow parallel direct-io writes to operate on the same file.
*
@@ -292,7 +296,7 @@ struct fuse_config {
int parallel_direct_writes;
/**
- * The remaining options are used by libfuse internally and
+ * These 3 options are used by libfuse internally and
* should not be touched.
*/
int show_help;