summaryrefslogtreecommitdiff
path: root/io_uring/io_uring_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'io_uring/io_uring_types.h')
-rw-r--r--io_uring/io_uring_types.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/io_uring/io_uring_types.h b/io_uring/io_uring_types.h
index 349524907b6b..147e1e597530 100644
--- a/io_uring/io_uring_types.h
+++ b/io_uring/io_uring_types.h
@@ -498,4 +498,17 @@ struct io_cancel_data {
int seq;
};
+struct io_overflow_cqe {
+ struct list_head list;
+ struct io_uring_cqe cqe;
+};
+
+struct io_mapped_ubuf {
+ u64 ubuf;
+ u64 ubuf_end;
+ unsigned int nr_bvecs;
+ unsigned long acct_pages;
+ struct bio_vec bvec[];
+};
+
#endif