mbox series

[GIT,PULL] io_uring fixes for 6.13-rc4

Message ID 785290eb-4182-4ea0-bce1-b3d895de09bf@kernel.dk (mailing list archive)
State New
Headers show
Series [GIT,PULL] io_uring fixes for 6.13-rc4 | expand

Pull-request

git://git.kernel.dk/linux.git tags/io_uring-6.13-20241220

Message

Jens Axboe Dec. 20, 2024, 4:24 p.m. UTC
Hi Linus,

Fixes for io_uring that should go into the 6.13-rc4 kernel release. This
pull request contains:

- Fix for a file ref leak for registered ring fds

- Turn the ->timeout_lock into a raw spinlock, as it nests under the
  io-wq lock which is a raw spinlock as it's called from the scheduler
  side

- Limit ring resizing to DEFER_TASKRUN for now. We will broaden this in
  the future, but for now, ensure that it's only feasible on rings with
  a single user

- Add sanity check for io-wq enqueuing

Please pull!


The following changes since commit 99d6af6e8a22b792e1845b186f943cd10bb4b7b0:

  io_uring/rsrc: don't put/free empty buffers (2024-12-12 08:01:52 -0700)

are available in the Git repository at:

  git://git.kernel.dk/linux.git tags/io_uring-6.13-20241220

for you to fetch changes up to dbd2ca9367eb19bc5e269b8c58b0b1514ada9156:

  io_uring: check if iowq is killed before queuing (2024-12-19 13:31:53 -0700)

----------------------------------------------------------------
io_uring-6.13-20241220

----------------------------------------------------------------
Jann Horn (1):
      io_uring: Fix registered ring file refcount leak

Jens Axboe (2):
      io_uring: make ctx->timeout_lock a raw spinlock
      io_uring/register: limit ring resizing to DEFER_TASKRUN

Pavel Begunkov (1):
      io_uring: check if iowq is killed before queuing

 include/linux/io_uring.h       |  4 +---
 include/linux/io_uring_types.h |  2 +-
 io_uring/io_uring.c            | 17 +++++++++++------
 io_uring/register.c            |  3 +++
 io_uring/timeout.c             | 40 ++++++++++++++++++++--------------------
 5 files changed, 36 insertions(+), 30 deletions(-)

Comments

pr-tracker-bot@kernel.org Dec. 20, 2024, 10:12 p.m. UTC | #1
The pull request you sent on Fri, 20 Dec 2024 09:24:27 -0700:

> git://git.kernel.dk/linux.git tags/io_uring-6.13-20241220

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/7c05bd92305d13e18945270b7bfaf300d53f6ed2

Thank you!