diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fuse.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 015a8b15a388..6f4a31266cd5 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h | |||
@@ -119,6 +119,13 @@ struct fuse_file_lock { | |||
119 | */ | 119 | */ |
120 | #define FUSE_LK_FLOCK (1 << 0) | 120 | #define FUSE_LK_FLOCK (1 << 0) |
121 | 121 | ||
122 | /** | ||
123 | * WRITE flags | ||
124 | * | ||
125 | * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed | ||
126 | */ | ||
127 | #define FUSE_WRITE_CACHE (1 << 0) | ||
128 | |||
122 | enum fuse_opcode { | 129 | enum fuse_opcode { |
123 | FUSE_LOOKUP = 1, | 130 | FUSE_LOOKUP = 1, |
124 | FUSE_FORGET = 2, /* no reply */ | 131 | FUSE_FORGET = 2, /* no reply */ |