mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
vringh: don't use vringh_kiov_advance() in vringh_iov_xfer()
In the while loop of vringh_iov_xfer(), `partlen` could be 0 if one of the `iov` has 0 lenght. In this case, we should skip the iov and go to the next one. But calling vringh_kiov_advance() with 0 lenght does not cause the advancement, since it returns immediately if asked to advance by 0 bytes. Let's restore the code that was there before commitb8c06ad4d6("vringh: implement vringh_kiov_advance()"), avoiding using vringh_kiov_advance(). Fixes:b8c06ad4d6("vringh: implement vringh_kiov_advance()") Cc: stable@vger.kernel.org Reported-by: Jason Wang <jasowang@redhat.com> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com> Acked-by: Jason Wang <jasowang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
a0c55bba0d
commit
7aed44babc
@@ -123,8 +123,18 @@ static inline ssize_t vringh_iov_xfer(struct vringh *vrh,
|
|||||||
done += partlen;
|
done += partlen;
|
||||||
len -= partlen;
|
len -= partlen;
|
||||||
ptr += partlen;
|
ptr += partlen;
|
||||||
|
iov->consumed += partlen;
|
||||||
|
iov->iov[iov->i].iov_len -= partlen;
|
||||||
|
iov->iov[iov->i].iov_base += partlen;
|
||||||
|
|
||||||
vringh_kiov_advance(iov, partlen);
|
if (!iov->iov[iov->i].iov_len) {
|
||||||
|
/* Fix up old iov element then increment. */
|
||||||
|
iov->iov[iov->i].iov_len = iov->consumed;
|
||||||
|
iov->iov[iov->i].iov_base -= iov->consumed;
|
||||||
|
|
||||||
|
iov->consumed = 0;
|
||||||
|
iov->i++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return done;
|
return done;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user