dm: dm-zoned: use __bio_add_page for adding single metadata page
[linux-block.git] / io_uring / poll.h
... / ...
CommitLineData
1// SPDX-License-Identifier: GPL-2.0
2
3#include "alloc_cache.h"
4
5enum {
6 IO_APOLL_OK,
7 IO_APOLL_ABORTED,
8 IO_APOLL_READY
9};
10
11struct io_poll {
12 struct file *file;
13 struct wait_queue_head *head;
14 __poll_t events;
15 int retries;
16 struct wait_queue_entry wait;
17};
18
19struct async_poll {
20 union {
21 struct io_poll poll;
22 struct io_cache_entry cache;
23 };
24 struct io_poll *double_poll;
25};
26
27int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
28int io_poll_add(struct io_kiocb *req, unsigned int issue_flags);
29
30int io_poll_remove_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
31int io_poll_remove(struct io_kiocb *req, unsigned int issue_flags);
32
33struct io_cancel_data;
34int io_poll_cancel(struct io_ring_ctx *ctx, struct io_cancel_data *cd,
35 unsigned issue_flags);
36int io_arm_poll_handler(struct io_kiocb *req, unsigned issue_flags);
37bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk,
38 bool cancel_all);
39
40void io_apoll_cache_free(struct io_cache_entry *entry);