public inbox for [email protected]
 help / color / mirror / Atom feed
* [PATCH] io_uring/rsrc: simplify the bvec iter's count calculation
@ 2025-01-03 15:04 Bui Quang Minh
  2025-01-03 17:54 ` Jens Axboe
  0 siblings, 1 reply; 2+ messages in thread
From: Bui Quang Minh @ 2025-01-03 15:04 UTC (permalink / raw)
  To: linux-kernel; +Cc: Bui Quang Minh, Jens Axboe, Pavel Begunkov, io-uring

As we don't use iov_iter_advance() but our own logic in io_import_fixed(),
we can remove the logic that over-sets the iter's count to len + offset
then adjusts it later to len. This helps to make the code cleaner.

Signed-off-by: Bui Quang Minh <[email protected]>
---
 io_uring/rsrc.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/io_uring/rsrc.c b/io_uring/rsrc.c
index 077f84684c18..d0d6ee85f32b 100644
--- a/io_uring/rsrc.c
+++ b/io_uring/rsrc.c
@@ -883,7 +883,7 @@ int io_import_fixed(int ddir, struct iov_iter *iter,
 	 * and advance us to the beginning.
 	 */
 	offset = buf_addr - imu->ubuf;
-	iov_iter_bvec(iter, ddir, imu->bvec, imu->nr_bvecs, offset + len);
+	iov_iter_bvec(iter, ddir, imu->bvec, imu->nr_bvecs, len);
 
 	if (offset) {
 		/*
@@ -905,7 +905,6 @@ int io_import_fixed(int ddir, struct iov_iter *iter,
 		const struct bio_vec *bvec = imu->bvec;
 
 		if (offset < bvec->bv_len) {
-			iter->count -= offset;
 			iter->iov_offset = offset;
 		} else {
 			unsigned long seg_skip;
@@ -916,7 +915,6 @@ int io_import_fixed(int ddir, struct iov_iter *iter,
 
 			iter->bvec += seg_skip;
 			iter->nr_segs -= seg_skip;
-			iter->count -= bvec->bv_len + offset;
 			iter->iov_offset = offset & ((1UL << imu->folio_shift) - 1);
 		}
 	}
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] io_uring/rsrc: simplify the bvec iter's count calculation
  2025-01-03 15:04 [PATCH] io_uring/rsrc: simplify the bvec iter's count calculation Bui Quang Minh
@ 2025-01-03 17:54 ` Jens Axboe
  0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2025-01-03 17:54 UTC (permalink / raw)
  To: linux-kernel, Bui Quang Minh; +Cc: Pavel Begunkov, io-uring


On Fri, 03 Jan 2025 22:04:11 +0700, Bui Quang Minh wrote:
> As we don't use iov_iter_advance() but our own logic in io_import_fixed(),
> we can remove the logic that over-sets the iter's count to len + offset
> then adjusts it later to len. This helps to make the code cleaner.
> 
> 

Applied, thanks!

[1/1] io_uring/rsrc: simplify the bvec iter's count calculation
      commit: 2a51c327d4a4a2eb62d67f4ea13a17efd0f25c5c

Best regards,
-- 
Jens Axboe




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-01-03 17:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-03 15:04 [PATCH] io_uring/rsrc: simplify the bvec iter's count calculation Bui Quang Minh
2025-01-03 17:54 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox