mbox series

[0/6] random fixes and patches for io_uring

Message ID cover.1721819383.git.asml.silence@gmail.com (mailing list archive)
Headers show
Series random fixes and patches for io_uring | expand

Message

Pavel Begunkov July 24, 2024, 11:16 a.m. UTC
Patch 1 improves task exit cancellation. The problem is a mind
experiment, I haven't seen it anywhere, and should be rare as
it involves io_uring polling another io_uring.

Patch 2 fails netpolling with IOPOLL, as it's not supported

The rest is random cleanups.

Pavel Begunkov (6):
  io_uring: tighten task exit cancellations
  io_uring: don't allow netpolling with SETUP_IOPOLL
  io_uring: fix io_match_task must_hold
  io_uring: simplify io_uring_cmd return
  io_uring: kill REQ_F_CANCEL_SEQ
  io_uring: align iowq and task request error handling

 include/linux/io_uring_types.h | 3 ---
 io_uring/io_uring.c            | 7 +++++--
 io_uring/napi.c                | 2 ++
 io_uring/timeout.c             | 2 +-
 io_uring/uring_cmd.c           | 2 +-
 5 files changed, 9 insertions(+), 7 deletions(-)

Comments

Jens Axboe July 24, 2024, 3:52 p.m. UTC | #1
On Wed, 24 Jul 2024 12:16:15 +0100, Pavel Begunkov wrote:
> Patch 1 improves task exit cancellation. The problem is a mind
> experiment, I haven't seen it anywhere, and should be rare as
> it involves io_uring polling another io_uring.
> 
> Patch 2 fails netpolling with IOPOLL, as it's not supported
> 
> The rest is random cleanups.
> 
> [...]

Applied, thanks!

[1/6] io_uring: tighten task exit cancellations
      (no commit info)
[2/6] io_uring: don't allow netpolling with SETUP_IOPOLL
      (no commit info)
[3/6] io_uring: fix io_match_task must_hold
      (no commit info)
[4/6] io_uring: simplify io_uring_cmd return
      (no commit info)
[5/6] io_uring: kill REQ_F_CANCEL_SEQ
      (no commit info)
[6/6] io_uring: align iowq and task request error handling
      (no commit info)

Best regards,