io_uring.h 943 字节
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(struct files_struct *files);
11 12
void __io_uring_free(struct task_struct *tsk);

13
static inline void io_uring_files_cancel(struct files_struct *files)
14
{
P
Pavel Begunkov 已提交
15
	if (current->io_uring)
16
		__io_uring_cancel(files);
17
}
18
static inline void io_uring_task_cancel(void)
19
{
20
	return io_uring_files_cancel(NULL);
21 22 23 24 25 26 27
}
static inline void io_uring_free(struct task_struct *tsk)
{
	if (tsk->io_uring)
		__io_uring_free(tsk);
}
#else
28 29 30 31
static inline struct sock *io_uring_get_socket(struct file *file)
{
	return NULL;
}
32 33 34 35 36 37 38 39 40 41 42 43
static inline void io_uring_task_cancel(void)
{
}
static inline void io_uring_files_cancel(struct files_struct *files)
{
}
static inline void io_uring_free(struct task_struct *tsk)
{
}
#endif

#endif