Skip to content

Commit 26d1477

Browse files
committed
Merge tag 'io_uring-6.4-2023-06-02' of git://git.kernel.dk/linux
Pull io_uring fix from Jens Axboe: "Just a single revert in here, removing the warning on the epoll ctl opcode. We originally deprecated this a few releases ago, but I've since had two people report that it's being used. Which isn't the biggest deal, obviously this is why we out in the deprecation notice in the first place, but it also means that we should just kill this warning again and abandon the deprecation plans. Since it's only a few handfuls of code to support epoll ctl, not worth going any further with this imho" * tag 'io_uring-6.4-2023-06-02' of git://git.kernel.dk/linux: io_uring: undeprecate epoll_ctl support
2 parents 921bdc7 + 4ea0bf4 commit 26d1477

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

io_uring/epoll.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ int io_epoll_ctl_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2525
{
2626
struct io_epoll *epoll = io_kiocb_to_cmd(req, struct io_epoll);
2727

28-
pr_warn_once("%s: epoll_ctl support in io_uring is deprecated and will "
29-
"be removed in a future Linux kernel version.\n",
30-
current->comm);
31-
3228
if (sqe->buf_index || sqe->splice_fd_in)
3329
return -EINVAL;
3430

0 commit comments

Comments
 (0)