Files

64 lines
1.3 KiB
C
Raw Permalink Normal View History

/* 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>
2022-09-30 11:57:38 +05:30
#include <uapi/linux/io_uring.h>
#if defined(CONFIG_IO_URING)
void __io_uring_cancel(bool cancel_all);
void __io_uring_free(struct task_struct *tsk);
void io_uring_unreg_ringfd(void);
2022-04-26 01:29:05 -07:00
const char *io_uring_get_opcode(u8 opcode);
bool io_is_uring_fops(struct file *file);
2026-01-16 15:28:58 -07:00
int __io_uring_fork(struct task_struct *tsk);
static inline void io_uring_files_cancel(void)
{
if (current->io_uring)
__io_uring_cancel(false);
2021-04-11 01:46:27 +01:00
}
static inline void io_uring_task_cancel(void)
{
if (current->io_uring)
__io_uring_cancel(true);
}
static inline void io_uring_free(struct task_struct *tsk)
{
2026-01-16 15:28:58 -07:00
if (tsk->io_uring || tsk->io_uring_restrict)
__io_uring_free(tsk);
}
2026-01-16 15:28:58 -07:00
static inline int io_uring_fork(struct task_struct *tsk)
{
if (tsk->io_uring_restrict)
return __io_uring_fork(tsk);
return 0;
}
#else
static inline void io_uring_task_cancel(void)
{
}
static inline void io_uring_files_cancel(void)
{
}
static inline void io_uring_free(struct task_struct *tsk)
{
}
2022-04-26 01:29:05 -07:00
static inline const char *io_uring_get_opcode(u8 opcode)
{
return "";
}
static inline bool io_is_uring_fops(struct file *file)
{
return false;
}
2026-01-16 15:28:58 -07:00
static inline int io_uring_fork(struct task_struct *tsk)
{
return 0;
}
#endif
#endif