io_uring.h 1.1 KB
Newer Older
1 2 3 4 5 6
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef _LINUX_IO_URING_H
#define _LINUX_IO_URING_H

#include <linux/sched.h>
#include <linux/xarray.h>
7

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);
12
void io_uring_unreg_ringfd(void);
13
const char *io_uring_get_opcode(u8 opcode);
14

15
static inline void io_uring_files_cancel(void)
16
{
17 18
	if (current->io_uring) {
		io_uring_unreg_ringfd();
19
		__io_uring_cancel(false);
20
	}
21
}
22
static inline void io_uring_task_cancel(void)
23
{
24
	if (current->io_uring)
25
		__io_uring_cancel(true);
26 27 28 29 30 31 32
}
static inline void io_uring_free(struct task_struct *tsk)
{
	if (tsk->io_uring)
		__io_uring_free(tsk);
}
#else
33 34 35 36
static inline struct sock *io_uring_get_socket(struct file *file)
{
	return NULL;
}
37 38 39
static inline void io_uring_task_cancel(void)
{
}
40
static inline void io_uring_files_cancel(void)
41 42 43 44 45
{
}
static inline void io_uring_free(struct task_struct *tsk)
{
}
46 47 48 49
static inline const char *io_uring_get_opcode(u8 opcode)
{
	return "";
}
50 51 52
#endif

#endif