aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse_kernel.h
diff options
context:
space:
mode:
authorHereThereBeDragons <HereThereBeDragons@users.noreply.github.com>2022-10-27 17:52:10 +0200
committerNikolaus Rath <Nikolaus@rath.org>2023-01-06 18:35:52 +0000
commit8fd95ab0a62a753896fdd3b5fcb68603f0e41ad3 (patch)
treed7e464353a08f1638c6f4d9a8ea3ca11ded5d27a /include/fuse_kernel.h
parentd372d3f80b5437e652ea501d8a4a917f7001b9d7 (diff)
downloadlibfuse-8fd95ab0a62a753896fdd3b5fcb68603f0e41ad3.tar.gz
Initial patch provided by Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'include/fuse_kernel.h')
-rw-r--r--include/fuse_kernel.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/fuse_kernel.h b/include/fuse_kernel.h
index 09da620..e0666a1 100644
--- a/include/fuse_kernel.h
+++ b/include/fuse_kernel.h
@@ -387,6 +387,12 @@ struct fuse_file_lock {
*/
#define FUSE_FSYNC_FDATASYNC (1 << 0)
+/**
+ * notify_inval_entry flags
+ * FUSE_EXPIRE_ONLY
+ */
+#define FUSE_EXPIRE_ONLY (1 << 0)
+
enum fuse_opcode {
FUSE_LOOKUP = 1,
FUSE_FORGET = 2, /* no reply */
@@ -800,7 +806,7 @@ struct fuse_notify_inval_inode_out {
struct fuse_notify_inval_entry_out {
uint64_t parent;
uint32_t namelen;
- uint32_t padding;
+ uint32_t flags;
};
struct fuse_notify_delete_out {