search for: cur_inode_filp

Displaying 1 result from an estimated 1 matches for "cur_inode_filp".

2013 Oct 25
1
[PATCH] Btrfs: stop using vfs_read in send
...----------- 1 file changed, 73 insertions(+), 108 deletions(-) diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index eb4b458..2f43623 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -122,7 +122,6 @@ struct send_ctx { struct list_head name_cache_list; int name_cache_size; - struct file *cur_inode_filp; char *read_buf; }; @@ -2128,77 +2127,6 @@ out: } /* - * Called for regular files when sending extents data. Opens a struct file - * to read from the file. - */ -static int open_cur_inode_file(struct send_ctx *sctx) -{ - int ret = 0; - struct btrfs_key key; - struct path path; - struct ino...