aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fuse.h')
-rw-r--r--include/linux/fuse.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h
index e7a76ec0f05c..9fc48a674b82 100644
--- a/include/linux/fuse.h
+++ b/include/linux/fuse.h
@@ -125,7 +125,8 @@ enum fuse_opcode {
125 FUSE_SETLK = 32, 125 FUSE_SETLK = 32,
126 FUSE_SETLKW = 33, 126 FUSE_SETLKW = 33,
127 FUSE_ACCESS = 34, 127 FUSE_ACCESS = 34,
128 FUSE_CREATE = 35 128 FUSE_CREATE = 35,
129 FUSE_INTERRUPT = 36,
129}; 130};
130 131
131/* The read buffer is required to be at least 8k, but may be much larger */ 132/* The read buffer is required to be at least 8k, but may be much larger */
@@ -291,6 +292,10 @@ struct fuse_init_out {
291 __u32 max_write; 292 __u32 max_write;
292}; 293};
293 294
295struct fuse_interrupt_in {
296 __u64 unique;
297};
298
294struct fuse_in_header { 299struct fuse_in_header {
295 __u32 len; 300 __u32 len;
296 __u32 opcode; 301 __u32 opcode;