Lines Matching refs:cq_ev_fd
401 struct eventfd_ctx *cq_ev_fd;
1626 if (likely(!ctx->cq_ev_fd))
1653 eventfd_signal_mask(ctx->cq_ev_fd, 1, EPOLL_URING_WAKE);
1670 eventfd_signal_mask(ctx->cq_ev_fd, 1, EPOLL_URING_WAKE);
9297 if (ctx->cq_ev_fd)
9303 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
9304 if (IS_ERR(ctx->cq_ev_fd)) {
9305 int ret = PTR_ERR(ctx->cq_ev_fd);
9307 ctx->cq_ev_fd = NULL;
9316 if (ctx->cq_ev_fd) {
9317 eventfd_ctx_put(ctx->cq_ev_fd);
9318 ctx->cq_ev_fd = NULL;
11093 ctx->cq_ev_fd != NULL, ret);