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-5.11-2021-02-12' of git://git.kernel.dk/linux-block

Pull io_uring fix from Jens Axboe:
"Revert of a patch from this release that caused a regression"

* tag 'io_uring-5.11-2021-02-12' of git://git.kernel.dk/linux-block:
Revert "io_uring: don't take fs for recvmsg/sendmsg"

+4 -2
+4 -2
fs/io_uring.c
··· 857 857 .pollout = 1, 858 858 .needs_async_data = 1, 859 859 .async_size = sizeof(struct io_async_msghdr), 860 - .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG, 860 + .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG | 861 + IO_WQ_WORK_FS, 861 862 }, 862 863 [IORING_OP_RECVMSG] = { 863 864 .needs_file = 1, ··· 867 866 .buffer_select = 1, 868 867 .needs_async_data = 1, 869 868 .async_size = sizeof(struct io_async_msghdr), 870 - .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG, 869 + .work_flags = IO_WQ_WORK_MM | IO_WQ_WORK_BLKCG | 870 + IO_WQ_WORK_FS, 871 871 }, 872 872 [IORING_OP_TIMEOUT] = { 873 873 .needs_async_data = 1,