Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'io_uring-6.14-20250322' of git://git.kernel.dk/linux

Pull io_uring fix from Jens Axboe:
"Just a single fix for the commit that went into your tree yesterday,
which exposed an issue with not always clearing notifications. That
could cause them to be used more than once"

* tag 'io_uring-6.14-20250322' of git://git.kernel.dk/linux:
io_uring/net: fix sendzc double notif flush

+2
+2
io_uring/net.c
··· 1440 1440 */ 1441 1441 if (!(issue_flags & IO_URING_F_UNLOCKED)) { 1442 1442 io_notif_flush(zc->notif); 1443 + zc->notif = NULL; 1443 1444 io_req_msg_cleanup(req, 0); 1444 1445 } 1445 1446 io_req_set_res(req, ret, IORING_CQE_F_MORE); ··· 1501 1500 */ 1502 1501 if (!(issue_flags & IO_URING_F_UNLOCKED)) { 1503 1502 io_notif_flush(sr->notif); 1503 + sr->notif = NULL; 1504 1504 io_req_msg_cleanup(req, 0); 1505 1505 } 1506 1506 io_req_set_res(req, ret, IORING_CQE_F_MORE);