aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse/fuse_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r--fs/fuse/fuse_i.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index 926b41c959d5..7ed1d3c53b8a 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -169,6 +169,7 @@ struct fuse_req {
169 struct fuse_release_in release_in; 169 struct fuse_release_in release_in;
170 struct fuse_init_in init_in; 170 struct fuse_init_in init_in;
171 struct fuse_init_out init_out; 171 struct fuse_init_out init_out;
172 struct fuse_read_in read_in;
172 } misc; 173 } misc;
173 174
174 /** page vector */ 175 /** page vector */
@@ -354,11 +355,10 @@ void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
354 unsigned long nodeid, u64 nlookup); 355 unsigned long nodeid, u64 nlookup);
355 356
356/** 357/**
357 * Send READ or READDIR request 358 * Initialize READ or READDIR request
358 */ 359 */
359size_t fuse_send_read_common(struct fuse_req *req, struct file *file, 360void fuse_read_fill(struct fuse_req *req, struct file *file,
360 struct inode *inode, loff_t pos, size_t count, 361 struct inode *inode, loff_t pos, size_t count, int opcode);
361 int isdir);
362 362
363/** 363/**
364 * Send OPEN or OPENDIR request 364 * Send OPEN or OPENDIR request