Home
last modified time | relevance | path

Searched refs:check_cq (Results 1 – 2 of 2) sorted by relevance

/linux/io_uring/
H A Dio_uring.c634 clear_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq); in __io_cqring_overflow_flush()
703 set_bit(IO_CHECK_CQ_DROPPED_BIT, &ctx->check_cq); in io_cqring_add_overflow()
707 set_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq); in io_cqring_add_overflow()
778 if (!overflow && (ctx->check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))) in io_cqe_cache_refill()
1589 unsigned long check_cq; in io_iopoll_check() local
1598 check_cq = READ_ONCE(ctx->check_cq); in io_iopoll_check()
1599 if (unlikely(check_cq)) { in io_iopoll_check()
1600 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT)) in io_iopoll_check()
1606 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)) in io_iopoll_check()
2615 if (unlikely(READ_ONCE(ctx->check_cq))) in io_cqring_wait_schedule()
[all …]
/linux/include/linux/
H A Dio_uring_types.h376 unsigned long check_cq; member