Skip to content

Commit

Permalink
Remove iov_iter_advance() for iter_write
Browse files Browse the repository at this point in the history
It seems like this should have gone with #11378.

The additional iter advance is incorrect, as copy_from_iter() has
already done the right thing.

Closes: #12041

Suggested-by: @siebenmann
Signed-off-by: Rich Ercolani <rincebrain@gmail.com>
  • Loading branch information
rincebrain committed May 30, 2021
1 parent 45516b4 commit 1b053d6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions module/os/linux/zfs/zpl_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,6 @@ zpl_iter_write(struct kiocb *kiocb, struct iov_iter *from)
ssize_t wrote = count - uio.uio_resid;
kiocb->ki_pos += wrote;

if (wrote > 0)
iov_iter_advance(from, wrote);

return (wrote);
}

Expand Down

0 comments on commit 1b053d6

Please sign in to comment.