1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _LINUX_IO_URING_H
3 #define _LINUX_IO_URING_H
5 #include <linux/sched.h>
6 #include <linux/xarray.h>
8 #if defined(CONFIG_IO_URING)
9 struct sock *io_uring_get_socket(struct file *file);
10 void __io_uring_cancel(bool cancel_all);
11 void __io_uring_free(struct task_struct *tsk);
13 static inline void io_uring_files_cancel(void)
15 if (current->io_uring)
16 __io_uring_cancel(false);
18 static inline void io_uring_task_cancel(void)
20 if (current->io_uring)
21 __io_uring_cancel(true);
23 static inline void io_uring_free(struct task_struct *tsk)
29 static inline struct sock *io_uring_get_socket(struct file *file)
33 static inline void io_uring_task_cancel(void)
36 static inline void io_uring_files_cancel(void)
39 static inline void io_uring_free(struct task_struct *tsk)