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.6-2023-09-28' of git://git.kernel.dk/linux

Pull io_uring fix from Jens Axboe:
"A single fix going to stable for the IORING_OP_LINKAT flag handling"

* tag 'io_uring-6.6-2023-09-28' of git://git.kernel.dk/linux:
io_uring/fs: remove sqe->rw_flags checking from LINKAT

+1 -1
+1 -1
io_uring/fs.c
··· 243 243 struct io_link *lnk = io_kiocb_to_cmd(req, struct io_link); 244 244 const char __user *oldf, *newf; 245 245 246 - if (sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in) 246 + if (sqe->buf_index || sqe->splice_fd_in) 247 247 return -EINVAL; 248 248 if (unlikely(req->flags & REQ_F_FIXED_FILE)) 249 249 return -EBADF;