Commit 3b3fc051 authored by Al Viro's avatar Al Viro

iov_iter_advance(): use consistent semantics for move past the end

asking to advance by more than we have left in the iov_iter should
move to the very end; it should *not* leave negative i->count and
it should not spew into syslog, etc. - it's a legitimate operation.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 0e8f0d67
...@@ -1117,8 +1117,6 @@ static inline void pipe_truncate(struct iov_iter *i) ...@@ -1117,8 +1117,6 @@ static inline void pipe_truncate(struct iov_iter *i)
static void pipe_advance(struct iov_iter *i, size_t size) static void pipe_advance(struct iov_iter *i, size_t size)
{ {
struct pipe_inode_info *pipe = i->pipe; struct pipe_inode_info *pipe = i->pipe;
if (unlikely(i->count < size))
size = i->count;
if (size) { if (size) {
struct pipe_buffer *buf; struct pipe_buffer *buf;
unsigned int p_mask = pipe->ring_size - 1; unsigned int p_mask = pipe->ring_size - 1;
...@@ -1159,6 +1157,8 @@ static void iov_iter_bvec_advance(struct iov_iter *i, size_t size) ...@@ -1159,6 +1157,8 @@ static void iov_iter_bvec_advance(struct iov_iter *i, size_t size)
void iov_iter_advance(struct iov_iter *i, size_t size) void iov_iter_advance(struct iov_iter *i, size_t size)
{ {
if (unlikely(i->count < size))
size = i->count;
if (unlikely(iov_iter_is_pipe(i))) { if (unlikely(iov_iter_is_pipe(i))) {
pipe_advance(i, size); pipe_advance(i, size);
return; return;
...@@ -1168,7 +1168,6 @@ void iov_iter_advance(struct iov_iter *i, size_t size) ...@@ -1168,7 +1168,6 @@ void iov_iter_advance(struct iov_iter *i, size_t size)
return; return;
} }
if (unlikely(iov_iter_is_xarray(i))) { if (unlikely(iov_iter_is_xarray(i))) {
size = min(size, i->count);
i->iov_offset += size; i->iov_offset += size;
i->count -= size; i->count -= size;
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment