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: Al Viro <viro@zeniv.linux.org.uk>
 static void pipe_advance(struct iov_iter *i, size_t size)
 {
        struct pipe_inode_info *pipe = i->pipe;
-       if (unlikely(i->count < size))
-               size = i->count;
        if (size) {
                struct pipe_buffer *buf;
                unsigned int p_mask = pipe->ring_size - 1;
 
 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))) {
                pipe_advance(i, size);
                return;
                return;
        }
        if (unlikely(iov_iter_is_xarray(i))) {
-               size = min(size, i->count);
                i->iov_offset += size;
                i->count -= size;
                return;