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-20250228' of git://git.kernel.dk/linux

Pull io_uring fix from Jens Axboe:
"Just a single fix headed for stable, ensuring that msg_control is
properly saved in compat mode as well"

* tag 'io_uring-6.14-20250228' of git://git.kernel.dk/linux:
io_uring/net: save msg_control for compat

+3 -1
+3 -1
io_uring/net.c
··· 322 322 if (unlikely(ret)) 323 323 return ret; 324 324 325 - return __get_compat_msghdr(&iomsg->msg, &cmsg, NULL); 325 + ret = __get_compat_msghdr(&iomsg->msg, &cmsg, NULL); 326 + sr->msg_control = iomsg->msg.msg_control_user; 327 + return ret; 326 328 } 327 329 #endif 328 330