Searched refs:ocqe (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/include/trace/events/ |
D | io_uring.h | 577 void *ocqe), 579 TP_ARGS(ctx, user_data, res, cflags, ocqe), 586 __field( void *, ocqe ) 594 __entry->ocqe = ocqe; 600 __entry->cflags, __entry->ocqe)
|
/linux-6.1.9/io_uring/ |
D | fdinfo.c | 55 struct io_overflow_cqe *ocqe; in __io_uring_show_fdinfo() local 198 list_for_each_entry(ocqe, &ctx->cq_overflow_list, list) { in __io_uring_show_fdinfo() 199 struct io_uring_cqe *cqe = &ocqe->cqe; in __io_uring_show_fdinfo()
|
D | io_uring.c | 618 struct io_overflow_cqe *ocqe; in __io_cqring_overflow_flush() local 622 ocqe = list_first_entry(&ctx->cq_overflow_list, in __io_cqring_overflow_flush() 625 memcpy(cqe, &ocqe->cqe, cqe_size); in __io_cqring_overflow_flush() 629 list_del(&ocqe->list); in __io_cqring_overflow_flush() 630 kfree(ocqe); in __io_cqring_overflow_flush() 693 struct io_overflow_cqe *ocqe; in io_cqring_event_overflow() local 700 ocqe = kmalloc(ocq_size, GFP_ATOMIC | __GFP_ACCOUNT); in io_cqring_event_overflow() 701 trace_io_uring_cqe_overflow(ctx, user_data, res, cflags, ocqe); in io_cqring_event_overflow() 702 if (!ocqe) { in io_cqring_event_overflow() 717 ocqe->cqe.user_data = user_data; in io_cqring_event_overflow() [all …]
|