From: Changli Gao Date: Tue, 29 Jun 2010 11:09:18 +0000 (+0200) Subject: splice: direct_splice_actor() should not use pos in sd X-Git-Tag: v2.6.33.20~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abce205833f32d215c65d1e223d6d898647fbcad;p=thirdparty%2Fkernel%2Fstable.git splice: direct_splice_actor() should not use pos in sd commit 2cb4b05e7647891b46b91c07c9a60304803d1688 upstream. direct_splice_actor() shouldn't use sd->pos, as sd->pos is for file reading, file->f_pos should be used instead. Signed-off-by: Changli Gao Signed-off-by: Miklos Szeredi Signed-off-by: Jens Axboe Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/splice.c b/fs/splice.c index 39208663aaf17..03e42380a3b41 100644 --- a/fs/splice.c +++ b/fs/splice.c @@ -1231,7 +1231,8 @@ static int direct_splice_actor(struct pipe_inode_info *pipe, { struct file *file = sd->u.file; - return do_splice_from(pipe, file, &sd->pos, sd->total_len, sd->flags); + return do_splice_from(pipe, file, &file->f_pos, sd->total_len, + sd->flags); } /**