commit: 30c068202a80d619731e1de9e959fecae4d4ff2e Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Fri Mar 3 14:59:58 2023 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Fri Mar 3 14:59:58 2023 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=30c06820
Linux patch 5.15.98 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> 0000_README | 4 ++++ 1097_linux-5.15.98.patch | 27 +++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/0000_README b/0000_README index bb0c0362..93378923 100644 --- a/0000_README +++ b/0000_README @@ -431,6 +431,10 @@ Patch: 1096_linux-5.15.97.patch From: https://www.kernel.org Desc: Linux 5.15.97 +Patch: 1097_linux-5.15.98.patch +From: https://www.kernel.org +Desc: Linux 5.15.98 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1097_linux-5.15.98.patch b/1097_linux-5.15.98.patch new file mode 100644 index 00000000..477d925f --- /dev/null +++ b/1097_linux-5.15.98.patch @@ -0,0 +1,27 @@ +diff --git a/Makefile b/Makefile +index 89e039ab5968e..b17ce4c2e8f28 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 5 + PATCHLEVEL = 15 +-SUBLEVEL = 97 ++SUBLEVEL = 98 + EXTRAVERSION = + NAME = Trick or Treat + +diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c +index 7857b3d9d6a76..51d6fbe17f7f3 100644 +--- a/io_uring/io_uring.c ++++ b/io_uring/io_uring.c +@@ -7310,7 +7310,8 @@ static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req, + + if (io_op_defs[req->opcode].needs_file) { + req->file = io_file_get(ctx, req, READ_ONCE(sqe->fd), +- (sqe_flags & IOSQE_FIXED_FILE), 0); ++ (sqe_flags & IOSQE_FIXED_FILE), ++ IO_URING_F_NONBLOCK); + if (unlikely(!req->file)) + ret = -EBADF; + }
