Home
last modified time | relevance | path

Searched refs:apoll (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/io_uring/
H A Dpoll.c109 return req->apoll->double_poll; in io_poll_get_double()
116 return &req->apoll->poll; in io_poll_get_single()
661 struct async_poll *apoll = pt->req->apoll; in io_async_queue_proc() local
663 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll); in io_async_queue_proc()
679 struct async_poll *apoll; in io_req_alloc_apoll() local
682 apoll = req->apoll; in io_req_alloc_apoll()
683 kfree(apoll->double_poll); in io_req_alloc_apoll()
688 apoll = container_of(entry, struct async_poll, cache); in io_req_alloc_apoll()
689 apoll->poll.retries = APOLL_MAX_RETRY; in io_req_alloc_apoll()
692 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC); in io_req_alloc_apoll()
[all …]
H A Dio_uring.c385 if ((req->flags & REQ_F_POLLED) && req->apoll) { in io_clean_op()
386 kfree(req->apoll->double_poll); in io_clean_op()
387 kfree(req->apoll); in io_clean_op()
388 req->apoll = NULL; in io_clean_op()
1527 if ((req->flags & REQ_F_POLLED) && req->apoll) { in io_free_batch_list()
1528 struct async_poll *apoll = req->apoll; in io_free_batch_list() local
1530 if (apoll->double_poll) in io_free_batch_list()
1531 kfree(apoll->double_poll); in io_free_batch_list()
1532 if (!io_alloc_cache_put(&ctx->apoll_cache, &apoll->cache)) in io_free_batch_list()
1533 kfree(apoll); in io_free_batch_list()
/openbmc/linux/include/linux/
H A Dio_uring_types.h585 struct async_poll *apoll; member
/openbmc/linux/drivers/macintosh/
H A Dadbhid.c266 adbhid_keyboard_input(unsigned char *data, int nb, int apoll) in adbhid_keyboard_input() argument