aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse_lowlevel.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_lowlevel.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_lowlevel.h')
-rw-r--r--include/fuse_lowlevel.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index e849617..e62e24c 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -199,6 +199,9 @@ enum fuse_notify_entry_flags {
* interrupted, and the reply discarded. For example if
* fuse_reply_open() return -ENOENT means, that the release method for
* this file will not be called.
+ *
+ * This data structure is ABI sensitive, on adding new functions these need to
+ * be appended at the end of the struct
*/
struct fuse_lowlevel_ops {
/**
@@ -509,7 +512,7 @@ struct fuse_lowlevel_ops {
* expected to properly handle the O_APPEND flag and ensure
* that each write is appending to the end of the file.
*
- * - When writeback caching is enabled, the kernel will
+ * - When writeback caching is enabled, the kernel will
* handle O_APPEND. However, unless all changes to the file
* come through the kernel this will not work reliably. The
* filesystem should thus either ignore the O_APPEND flag
@@ -744,7 +747,7 @@ struct fuse_lowlevel_ops {
* Returning a directory entry from readdir() does not affect
* its lookup count.
*
- * If off_t is non-zero, then it will correspond to one of the off_t
+ * If off_t is non-zero, then it will correspond to one of the off_t
* values that was previously returned by readdir() for the same
* directory handle. In this case, readdir() should skip over entries
* coming before the position defined by the off_t value. If entries