io_uring: fix off-by one bvec index
authorKeith Busch <kbusch@kernel.org>
Mon, 20 Nov 2023 22:18:31 +0000 (14:18 -0800)
committerJens Axboe <axboe@kernel.dk>
Mon, 20 Nov 2023 22:21:38 +0000 (15:21 -0700)
commitd6fef34ee4d102be448146f24caf96d7b4a05401
tree3745518ea8f7e860b7a3fbc6178a9ee2c063aac7
parent8479063f1fbee201a8739130e816cc331b675838
io_uring: fix off-by one bvec index

If the offset equals the bv_len of the first registered bvec, then the
request does not include any of that first bvec. Skip it so that drivers
don't have to deal with a zero length bvec, which was observed to break
NVMe's PRP list creation.

Cc: stable@vger.kernel.org
Fixes: bd11b3a391e3 ("io_uring: don't use iov_iter_advance() for fixed buffers")
Signed-off-by: Keith Busch <kbusch@kernel.org>
Link: https://lore.kernel.org/r/20231120221831.2646460-1-kbusch@meta.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/rsrc.c