Skip to content

Commit

Permalink
Revert "relay: fix splice problem"
Browse files Browse the repository at this point in the history
This reverts commit c3270e5.
  • Loading branch information
Jens Axboe committed May 8, 2008
1 parent ffee025 commit 75065ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fs/splice.c
Expand Up @@ -1072,7 +1072,7 @@ long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,

ret = splice_direct_to_actor(in, &sd, direct_splice_actor);
if (ret > 0)
*ppos = sd.pos;
*ppos += ret;

return ret;
}
Expand Down
2 changes: 1 addition & 1 deletion kernel/relay.c
Expand Up @@ -1191,7 +1191,7 @@ static ssize_t relay_file_splice_read(struct file *in,
ret = 0;
spliced = 0;

while (len && !spliced) {
while (len) {
ret = subbuf_splice_actor(in, ppos, pipe, len, flags, &nonpad_ret);
if (ret < 0)
break;
Expand Down

0 comments on commit 75065ff

Please sign in to comment.