diff options
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index 3ec2aff3fdb5..0af1ac646927 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h | |||
@@ -34,6 +34,9 @@ | |||
34 | be flushed on open */ | 34 | be flushed on open */ |
35 | #define FUSE_KERNEL_CACHE (1 << 2) | 35 | #define FUSE_KERNEL_CACHE (1 << 2) |
36 | 36 | ||
37 | /** Bypass the page cache for read and write operations */ | ||
38 | #define FUSE_DIRECT_IO (1 << 3) | ||
39 | |||
37 | /** FUSE inode */ | 40 | /** FUSE inode */ |
38 | struct fuse_inode { | 41 | struct fuse_inode { |
39 | /** Inode data */ | 42 | /** Inode data */ |
@@ -207,6 +210,9 @@ struct fuse_conn { | |||
207 | /** Maximum read size */ | 210 | /** Maximum read size */ |
208 | unsigned max_read; | 211 | unsigned max_read; |
209 | 212 | ||
213 | /** Maximum write size */ | ||
214 | unsigned max_write; | ||
215 | |||
210 | /** Readers of the connection are waiting on this */ | 216 | /** Readers of the connection are waiting on this */ |
211 | wait_queue_head_t waitq; | 217 | wait_queue_head_t waitq; |
212 | 218 | ||