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.

io_uring/uring_cmd: fix __io_uring_cmd_do_in_task !CONFIG_IO_URING typo

A manual application of this patch resulted in a typo for the stub
function __io_uring_cmd_do_in_task(), for the case where CONFIG_IO_URING
isn't true. Fix that up.

Reported-by: Klara Modin <klarasmodin@gmail.com>
Fixes: df3a7762ee24 ("io_uring/uring_cmd: add io_uring_cmd_tw_t type alias")
Signed-off-by: Jens Axboe <axboe@kernel.dk>

+1 -2
+1 -2
include/linux/io_uring/cmd.h
··· 109 109 { 110 110 } 111 111 static inline void __io_uring_cmd_do_in_task(struct io_uring_cmd *ioucmd, 112 - io_uring_tw_t task_work_cb, 113 - unsigned flags) 112 + io_uring_cmd_tw_t task_work_cb, unsigned flags) 114 113 { 115 114 } 116 115 static inline void io_uring_cmd_mark_cancelable(struct io_uring_cmd *cmd,