summaryrefslogtreecommitdiff
path: root/io_uring/uring_cmd.h
blob: 477ea88656390da7a183b7d48a4ac5889d243e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: GPL-2.0

struct uring_cache {
	union {
		struct io_cache_entry cache;
		struct io_uring_sqe sqes[2];
	};
};

int io_uring_cmd(struct io_kiocb *req, unsigned int issue_flags);
int io_uring_cmd_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
void io_uring_cache_free(struct io_cache_entry *entry);

bool io_uring_try_cancel_uring_cmd(struct io_ring_ctx *ctx,
				   struct task_struct *task, bool cancel_all);