projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
664e407
)
io_uring: use bvec_set_page to initialize a bvec
author
Christoph Hellwig
<hch@lst.de>
Fri, 3 Feb 2023 15:06:29 +0000
(16:06 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Fri, 3 Feb 2023 17:17:42 +0000
(10:17 -0700)
Use the bvec_set_page helper to initialize a bvec.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Link:
https://lore.kernel.org/r/20230203150634.3199647-19-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/rsrc.c
patch
|
blob
|
history
diff --git
a/io_uring/rsrc.c
b/io_uring/rsrc.c
index 18de10c68a151b3b0ffc36ca956e4d0da7660eb0..a59fc02de5983c4f789e9cdfea3a1376f578ebe6 100644
(file)
--- a/
io_uring/rsrc.c
+++ b/
io_uring/rsrc.c
@@
-1237,9
+1237,7
@@
static int io_sqe_buffer_register(struct io_ring_ctx *ctx, struct iovec *iov,
size_t vec_len;
vec_len = min_t(size_t, size, PAGE_SIZE - off);
- imu->bvec[i].bv_page = pages[i];
- imu->bvec[i].bv_len = vec_len;
- imu->bvec[i].bv_offset = off;
+ bvec_set_page(&imu->bvec[i], pages[i], vec_len, off);
off = 0;
size -= vec_len;
}