Searched refs:ocqe (Results 1 - 3 of 3) sorted by relevance

/linux-master/include/trace/events/
H A Dio_uring.h568 * @ocqe: pointer to the overflow cqe (if available)
574 void *ocqe),
576 TP_ARGS(ctx, user_data, res, cflags, ocqe),
583 __field( void *, ocqe )
591 __entry->ocqe = ocqe;
597 __entry->cflags, __entry->ocqe)
/linux-master/io_uring/
H A Dfdinfo.c56 struct io_overflow_cqe *ocqe; local
217 list_for_each_entry(ocqe, &ctx->cq_overflow_list, list) {
218 struct io_uring_cqe *cqe = &ocqe->cqe;
H A Dio_uring.c671 struct io_overflow_cqe *ocqe; local
680 ocqe = list_first_entry(&list, struct io_overflow_cqe, list);
681 list_del(&ocqe->list);
682 kfree(ocqe);
699 struct io_overflow_cqe *ocqe; local
703 ocqe = list_first_entry(&ctx->cq_overflow_list,
705 memcpy(cqe, &ocqe->cqe, cqe_size);
706 list_del(&ocqe->list);
707 kfree(ocqe);
783 struct io_overflow_cqe *ocqe; local
[all...]

Completed in 245 milliseconds