diff mbox series

[1/1] io_uring/kbuf: remove last buf_index manipulation

Message ID 0c01d76ff12986c2f48614db8610caff8f78c869.1743500909.git.asml.silence@gmail.com (mailing list archive)
State New
Headers show
Series [1/1] io_uring/kbuf: remove last buf_index manipulation | expand

Commit Message

Pavel Begunkov April 1, 2025, 11:15 a.m. UTC
It doesn't cause any problem, but there is one more place missed where
we set req->buf_index back to bgid. Remove it.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
---
 io_uring/kbuf.h | 1 -
 1 file changed, 1 deletion(-)

Comments

Jens Axboe April 1, 2025, 1:13 p.m. UTC | #1
On 4/1/25 5:15 AM, Pavel Begunkov wrote:
> It doesn't cause any problem, but there is one more place missed where
> we set req->buf_index back to bgid. Remove it.

Want me to just fold that in with the previous one, it's top of
tree anyway and part of the 6.16 series that I haven't even
pushed out yet?
Jens Axboe April 1, 2025, 2:15 p.m. UTC | #2
On 4/1/25 8:15 AM, Pavel Begunkov wrote:
> On 4/1/25 14:13, Jens Axboe wrote:
>> On 4/1/25 5:15 AM, Pavel Begunkov wrote:
>>> It doesn't cause any problem, but there is one more place missed where
>>> we set req->buf_index back to bgid. Remove it.
>>
>> Want me to just fold that in with the previous one, it's top of
>> tree anyway and part of the 6.16 series that I haven't even
>> pushed out yet?
> 
> Would be great!

Done!
Pavel Begunkov April 1, 2025, 2:15 p.m. UTC | #3
On 4/1/25 14:13, Jens Axboe wrote:
> On 4/1/25 5:15 AM, Pavel Begunkov wrote:
>> It doesn't cause any problem, but there is one more place missed where
>> we set req->buf_index back to bgid. Remove it.
> 
> Want me to just fold that in with the previous one, it's top of
> tree anyway and part of the 6.16 series that I haven't even
> pushed out yet?

Would be great!
diff mbox series

Patch

diff --git a/io_uring/kbuf.h b/io_uring/kbuf.h
index c576a15fbfd4..0798a732e6cb 100644
--- a/io_uring/kbuf.h
+++ b/io_uring/kbuf.h
@@ -95,7 +95,6 @@  static inline bool io_kbuf_recycle_ring(struct io_kiocb *req)
 	 * to monopolize the buffer.
 	 */
 	if (req->buf_list) {
-		req->buf_index = req->buf_list->bgid;
 		req->flags &= ~(REQ_F_BUFFER_RING|REQ_F_BUFFERS_COMMIT);
 		return true;
 	}