From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EE0915806E for ; Fri, 2 Jun 2023 15:09:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DC88E089C; Fri, 2 Jun 2023 15:09:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7816AE089C for ; Fri, 2 Jun 2023 15:09:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDEE9335D64 for ; Fri, 2 Jun 2023 15:09:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41267A7A for ; Fri, 2 Jun 2023 15:09:48 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1685718574.b8a52a844724d67119ef377a2a8e97f1dfee9a33.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:6.3 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 2100_io-uring-undeprecate-epoll-ctl-support.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: b8a52a844724d67119ef377a2a8e97f1dfee9a33 X-VCS-Branch: 6.3 Date: Fri, 2 Jun 2023 15:09:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bc900cca-8b61-4a3c-a8b2-3b3356eb3cfa X-Archives-Hash: b6aeb87368669da52cbbc81f1782c7b0 commit: b8a52a844724d67119ef377a2a8e97f1dfee9a33 Author: Mike Pagano gentoo org> AuthorDate: Fri Jun 2 15:09:34 2023 +0000 Commit: Mike Pagano gentoo org> CommitDate: Fri Jun 2 15:09:34 2023 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=b8a52a84 io_uring: undeprecate epoll_ctl support Signed-off-by: Mike Pagano gentoo.org> 0000_README | 4 ++++ 2100_io-uring-undeprecate-epoll-ctl-support.patch | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/0000_README b/0000_README index 72e833a4..66dc0900 100644 --- a/0000_README +++ b/0000_README @@ -79,6 +79,10 @@ Patch: 2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch From: https://lore.kernel.org/linux-bluetooth/20190522070540.48895-1-marcel@holtmann.org/raw Desc: Bluetooth: Check key sizes only when Secure Simple Pairing is enabled. See bug #686758 +Patch: 2100_io-uring-undeprecate-epoll-ctl-support.patch +From: https://patchwork.kernel.org/project/io-uring/patch/20230506095502.13401-1-info@bnoordhuis.nl/ +Desc: io_uring: undeprecate epoll_ctl support + Patch: 2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch From: https://bugs.gentoo.org/710790 Desc: tmp513 requies REGMAP_I2C to build. Select it by default in Kconfig. See bug #710790. Thanks to Phil Stracchino diff --git a/2100_io-uring-undeprecate-epoll-ctl-support.patch b/2100_io-uring-undeprecate-epoll-ctl-support.patch new file mode 100644 index 00000000..4c3d3904 --- /dev/null +++ b/2100_io-uring-undeprecate-epoll-ctl-support.patch @@ -0,0 +1,21 @@ +io_uring: undeprecate epoll_ctl support + +--- + io_uring/epoll.c | 4 ---- + 1 file changed, 4 deletions(-) + +diff --git a/io_uring/epoll.c b/io_uring/epoll.c +index 9aa74d2c80bc..89bff2068a19 100644 +--- a/io_uring/epoll.c ++++ b/io_uring/epoll.c +@@ -25,10 +25,6 @@ int io_epoll_ctl_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) + { + struct io_epoll *epoll = io_kiocb_to_cmd(req, struct io_epoll); + +- pr_warn_once("%s: epoll_ctl support in io_uring is deprecated and will " +- "be removed in a future Linux kernel version.\n", +- current->comm); +- + if (sqe->buf_index || sqe->splice_fd_in) + return -EINVAL; +