Lines Matching refs:check_cq
649 clear_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq); in __io_cqring_overflow_flush()
725 set_bit(IO_CHECK_CQ_DROPPED_BIT, &ctx->check_cq); in io_cqring_event_overflow()
729 set_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq); in io_cqring_event_overflow()
768 if (!overflow && (ctx->check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))) in io_cqe_cache_refill()
1503 unsigned long check_cq; in io_iopoll_check() local
1512 check_cq = READ_ONCE(ctx->check_cq); in io_iopoll_check()
1513 if (unlikely(check_cq)) { in io_iopoll_check()
1514 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT)) in io_iopoll_check()
1520 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)) in io_iopoll_check()
2514 if (unlikely(READ_ONCE(ctx->check_cq))) in io_cqring_wait_schedule()
2549 if (unlikely(test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq))) in io_cqring_wait()
2589 unsigned long check_cq; in io_cqring_wait() local
2632 check_cq = READ_ONCE(ctx->check_cq); in io_cqring_wait()
2633 if (unlikely(check_cq)) { in io_cqring_wait()
2635 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT)) in io_cqring_wait()
2637 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)) { in io_cqring_wait()
2881 if (test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)) { in io_ring_exit_work()
3450 &ctx->check_cq); in SYSCALL_DEFINE6()