Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:5.15 commit in: /
Date: Fri, 03 Mar 2023 15:00:12
Message-Id: 1677855598.30c068202a80d619731e1de9e959fecae4d4ff2e.mpagano@gentoo
1 commit: 30c068202a80d619731e1de9e959fecae4d4ff2e
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 3 14:59:58 2023 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 3 14:59:58 2023 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=30c06820
7
8 Linux patch 5.15.98
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 0000_README | 4 ++++
13 1097_linux-5.15.98.patch | 27 +++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/0000_README b/0000_README
17 index bb0c0362..93378923 100644
18 --- a/0000_README
19 +++ b/0000_README
20 @@ -431,6 +431,10 @@ Patch: 1096_linux-5.15.97.patch
21 From: https://www.kernel.org
22 Desc: Linux 5.15.97
23
24 +Patch: 1097_linux-5.15.98.patch
25 +From: https://www.kernel.org
26 +Desc: Linux 5.15.98
27 +
28 Patch: 1500_XATTR_USER_PREFIX.patch
29 From: https://bugs.gentoo.org/show_bug.cgi?id=470644
30 Desc: Support for namespace user.pax.* on tmpfs.
31
32 diff --git a/1097_linux-5.15.98.patch b/1097_linux-5.15.98.patch
33 new file mode 100644
34 index 00000000..477d925f
35 --- /dev/null
36 +++ b/1097_linux-5.15.98.patch
37 @@ -0,0 +1,27 @@
38 +diff --git a/Makefile b/Makefile
39 +index 89e039ab5968e..b17ce4c2e8f28 100644
40 +--- a/Makefile
41 ++++ b/Makefile
42 +@@ -1,7 +1,7 @@
43 + # SPDX-License-Identifier: GPL-2.0
44 + VERSION = 5
45 + PATCHLEVEL = 15
46 +-SUBLEVEL = 97
47 ++SUBLEVEL = 98
48 + EXTRAVERSION =
49 + NAME = Trick or Treat
50 +
51 +diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
52 +index 7857b3d9d6a76..51d6fbe17f7f3 100644
53 +--- a/io_uring/io_uring.c
54 ++++ b/io_uring/io_uring.c
55 +@@ -7310,7 +7310,8 @@ static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
56 +
57 + if (io_op_defs[req->opcode].needs_file) {
58 + req->file = io_file_get(ctx, req, READ_ONCE(sqe->fd),
59 +- (sqe_flags & IOSQE_FIXED_FILE), 0);
60 ++ (sqe_flags & IOSQE_FIXED_FILE),
61 ++ IO_URING_F_NONBLOCK);
62 + if (unlikely(!req->file))
63 + ret = -EBADF;
64 + }