diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2008-05-08 08:06:19 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-05-08 08:06:19 -0400 |
commit | 75065ff619e42fe35178eda863cbcddd57776794 (patch) | |
tree | e41d6e838cb2d2fcd62e5ea1980f720e98b57de7 /fs/splice.c | |
parent | ffee0259c9edcc4c0f06b60df51c461eeecad4c0 (diff) |
Revert "relay: fix splice problem"
This reverts commit c3270e577c18b3d0e984c3371493205a4807db9d.
Diffstat (limited to 'fs/splice.c')
-rw-r--r-- | fs/splice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/splice.c b/fs/splice.c index cece15b4ef72..78150038b584 100644 --- a/fs/splice.c +++ b/fs/splice.c | |||
@@ -1072,7 +1072,7 @@ long do_splice_direct(struct file *in, loff_t *ppos, struct file *out, | |||
1072 | 1072 | ||
1073 | ret = splice_direct_to_actor(in, &sd, direct_splice_actor); | 1073 | ret = splice_direct_to_actor(in, &sd, direct_splice_actor); |
1074 | if (ret > 0) | 1074 | if (ret > 0) |
1075 | *ppos = sd.pos; | 1075 | *ppos += ret; |
1076 | 1076 | ||
1077 | return ret; | 1077 | return ret; |
1078 | } | 1078 | } |