poll.h 1.2 KB

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