From: Ming Lei <[email protected]>
To: Jens Axboe <[email protected]>,
[email protected], Pavel Begunkov <[email protected]>
Cc: [email protected],
Uday Shankar <[email protected]>,
Akilesh Kailash <[email protected]>,
Ming Lei <[email protected]>
Subject: [PATCH V9 0/7] io_uring: support group buffer & ublk zc
Date: Wed, 6 Nov 2024 20:26:49 +0800 [thread overview]
Message-ID: <[email protected]> (raw)
Hello,
The 1st ~ 4th patches reuse `io_mapped_ubuf` for group kernel buffer.
The 5th patch supports group buffer, so far only kernel buffer is
supported, but it is pretty easy to extend for userspace group buffer.
The 6th patch adds uring_cmd interface for driver.
The last patch applies group kernel buffer for supporting ublk zc.
Tests:
1) pass liburing test
- make runtests
2) add ublk loop-zc test code
https://github.com/ming1/liburing/tree/uring_group
V9:
- reuse io_mapped_ubuf for group kernel buffer(Jens)
- rename as REQ_F_GROUP_BUF which can be extended for userspace
group buffer easily
- rebase on the latest for-6.13/io_uring
- make sure that group buffer is imported once
- use group buffer exclusively with buffer node & buffer select
- misc cleanup
V8:
- simplify & clean up group request completion, don't reuse
SQE_GROUP as state; meantime improve document; now group
implementation is quite clean
- handle short read/recv correctly by zeroing out the remained
part(Pavel)
- fix one group leader reference(Uday Shankar)
- only allow ublk provide buffer command in case of zc(Uday Shankar)
V7:
- remove dead code in sqe group support(Pavel)
- fail single group request(Pavel)
- remove IORING_PROVIDE_GROUP_KBUF(Pavel)
- remove REQ_F_SQE_GROUP_DEP(Pavel)
- rename as leasing buffer
- improve commit log
- map group member's IOSQE_IO_DRAIN to GROUP_KBUF, which
aligns with buffer select use, and it means that io_uring starts
to support leased kbuf from other subsystem for group member
requests only
V6:
- follow Pavel's suggestion to disallow IOSQE_CQE_SKIP_SUCCESS &
LINK_TIMEOUT
- kill __io_complete_group_member() (Pavel)
- simplify link failure handling (Pavel)
- move members' queuing out of completion lock (Pavel)
- cleanup group io complete handler
- add more comment
- add ublk zc into liburing test for covering
IOSQE_SQE_GROUP & IORING_PROVIDE_GROUP_KBUF
V5:
- follow Pavel's suggestion to minimize change on io_uring fast code
path: sqe group code is called in by single 'if (unlikely())' from
both issue & completion code path
- simplify & re-write group request completion
avoid to touch io-wq code by completing group leader via tw
directly, just like ->task_complete
re-write group member & leader completion handling, one
simplification is always to free leader via the last member
simplify queueing group members, not support issuing leader
and members in parallel
- fail the whole group if IO_*LINK & IO_DRAIN is set on group
members, and test code to cover this change
- misc cleanup
V4:
- address most comments from Pavel
- fix request double free
- don't use io_req_commit_cqe() in io_req_complete_defer()
- make members' REQ_F_INFLIGHT discoverable
- use common assembling check in submission code path
- drop patch 3 and don't move REQ_F_CQE_SKIP out of io_free_req()
- don't set .accept_group_kbuf for net send zc, in which members
need to be queued after buffer notification is got, and can be
enabled in future
- add .grp_leader field via union, and share storage with .grp_link
- move .grp_refs into one hole of io_kiocb, so that one extra
cacheline isn't needed for io_kiocb
- cleanup & document improvement
V3:
- add IORING_FEAT_SQE_GROUP
- simplify group completion, and minimize change on io_req_complete_defer()
- simplify & cleanup io_queue_group_members()
- fix many failure handling issues
- cover failure handling code in added liburing tests
- remove RFC
V2:
- add generic sqe group, suggested by Kevin Wolf
- add REQ_F_SQE_GROUP_DEP which is based on IOSQE_SQE_GROUP, for sharing
kernel resource in group wide, suggested by Kevin Wolf
- remove sqe ext flag, and use the last bit for IOSQE_SQE_GROUP(Pavel),
in future we still can extend sqe flags with one uring context flag
- initialize group requests via submit state pattern, suggested by Pavel
- all kinds of cleanup & bug fixes
Ming Lei (7):
io_uring: rename io_mapped_ubuf as io_mapped_buf
io_uring: rename ubuf of io_mapped_buf as start
io_uring: shrink io_mapped_buf
io_uring: reuse io_mapped_buf for kernel buffer
io_uring: support leased group buffer with REQ_F_GROUP_BUF
io_uring/uring_cmd: support leasing device kernel buffer to io_uring
ublk: support leasing io buffer to io_uring
drivers/block/ublk_drv.c | 160 +++++++++++++++++++++++++++++++--
include/linux/io_uring/cmd.h | 7 ++
include/linux/io_uring_types.h | 50 +++++++++++
include/uapi/linux/ublk_cmd.h | 11 ++-
io_uring/fdinfo.c | 4 +-
io_uring/io_uring.c | 32 +++++--
io_uring/io_uring.h | 5 ++
io_uring/kbuf.c | 83 +++++++++++++++++
io_uring/kbuf.h | 46 ++++++++++
io_uring/net.c | 27 +++++-
io_uring/rsrc.c | 19 ++--
io_uring/rsrc.h | 16 +---
io_uring/rw.c | 37 ++++++--
io_uring/uring_cmd.c | 10 +++
14 files changed, 463 insertions(+), 44 deletions(-)
--
2.47.0
next reply other threads:[~2024-11-06 12:27 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-06 12:26 Ming Lei [this message]
2024-11-06 12:26 ` [PATCH V9 1/7] io_uring: rename io_mapped_ubuf as io_mapped_buf Ming Lei
2024-11-06 12:26 ` [PATCH V9 2/7] io_uring: rename ubuf of io_mapped_buf as start Ming Lei
2024-11-06 15:07 ` Jens Axboe
2024-11-06 12:26 ` [PATCH V9 3/7] io_uring: shrink io_mapped_buf Ming Lei
2024-11-06 15:09 ` Jens Axboe
2024-11-07 1:04 ` Ming Lei
2024-11-07 2:13 ` Jens Axboe
2024-11-06 12:26 ` [PATCH V9 4/7] io_uring: reuse io_mapped_buf for kernel buffer Ming Lei
2024-11-06 15:15 ` Jens Axboe
2024-11-07 1:22 ` Ming Lei
2024-11-07 2:16 ` Jens Axboe
2024-11-06 12:26 ` [PATCH V9 5/7] io_uring: support leased group buffer with REQ_F_GROUP_BUF Ming Lei
2024-11-06 15:17 ` Jens Axboe
2024-11-06 12:26 ` [PATCH V9 6/7] io_uring/uring_cmd: support leasing device kernel buffer to io_uring Ming Lei
2024-11-06 12:26 ` [PATCH V9 7/7] ublk: support leasing io " Ming Lei
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
[email protected] \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox