Home
last modified time | relevance | path

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

/linux-6.15/io_uring/
H A Dio_uring.c1503 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()
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()
[all …]
H A Dio_uring.h525 return test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq) || in io_has_work()
/linux-6.15/include/linux/
H A Dio_uring_types.h359 unsigned long check_cq; member