Home
last modified time | relevance | path

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

/linux-6.15/io_uring/
H A Dpoll.c123 struct io_hash_table *table = &req->ctx->cancel_table; in io_poll_req_insert()
721 unsigned nr_buckets = 1U << ctx->cancel_table.hash_bits; in io_poll_remove_all()
730 struct io_hash_bucket *hb = &ctx->cancel_table.hbs[i]; in io_poll_remove_all()
747 u32 index = hash_long(cd->data, ctx->cancel_table.hash_bits); in io_poll_find()
748 struct io_hash_bucket *hb = &ctx->cancel_table.hbs[index]; in io_poll_find()
767 unsigned nr_buckets = 1U << ctx->cancel_table.hash_bits; in io_poll_file_find()
772 struct io_hash_bucket *hb = &ctx->cancel_table.hbs[i]; in io_poll_file_find()
H A Dfdinfo.c227 for (i = 0; i < (1U << ctx->cancel_table.hash_bits); i++) { in __io_uring_show_fdinfo()
228 struct io_hash_bucket *hb = &ctx->cancel_table.hbs[i]; in __io_uring_show_fdinfo()
H A Dio_uring.c317 if (io_alloc_hash_table(&ctx->cancel_table, hash_bits)) in io_ring_ctx_alloc()
377 kvfree(ctx->cancel_table.hbs); in io_ring_ctx_alloc()
2755 kvfree(ctx->cancel_table.hbs); in io_ring_ctx_free()
/linux-6.15/include/linux/
H A Dio_uring_types.h317 struct io_hash_table cancel_table; member