From 9581e214b8967bcdd3d0c45db3da14f2e1151220 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Tue, 25 Jun 2024 05:42:21 +0200 Subject: 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. --- include/fuse.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/fuse.h') 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; -- cgit v1.2.3