poll.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/io_uring_types.h>
  3. #define IO_POLL_ALLOC_CACHE_MAX 32
  4. enum {
  5. IO_APOLL_OK,
  6. IO_APOLL_ABORTED,
  7. IO_APOLL_READY
  8. };
  9. struct io_poll {
  10. struct file *file;
  11. struct wait_queue_head *head;
  12. __poll_t events;
  13. int retries;
  14. struct wait_queue_entry wait;
  15. };
  16. struct async_poll {
  17. struct io_poll poll;
  18. struct io_poll *double_poll;
  19. };
  20. /*
  21. * Must only be called inside issue_flags & IO_URING_F_MULTISHOT, or
  22. * potentially other cases where we already "own" this poll request.
  23. */
  24. static inline void io_poll_multishot_retry(struct io_kiocb *req)
  25. {
  26. atomic_inc(&req->poll_refs);
  27. }
  28. int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
  29. int io_poll_add(struct io_kiocb *req, unsigned int issue_flags);
  30. int io_poll_remove_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
  31. int io_poll_remove(struct io_kiocb *req, unsigned int issue_flags);
  32. struct io_cancel_data;
  33. int io_poll_cancel(struct io_ring_ctx *ctx, struct io_cancel_data *cd,
  34. unsigned issue_flags);
  35. int io_arm_apoll(struct io_kiocb *req, unsigned issue_flags, __poll_t mask);
  36. int io_arm_poll_handler(struct io_kiocb *req, unsigned issue_flags);
  37. bool io_poll_remove_all(struct io_ring_ctx *ctx, struct io_uring_task *tctx,
  38. bool cancel_all);
  39. void io_poll_task_func(struct io_tw_req tw_req, io_tw_token_t tw);