diff options
author | Stefan Roesch <shr@fb.com> | 2021-11-23 10:07:50 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-12-22 07:16:55 -0700 |
commit | baf0a8c986e0ef6a7472d9b86dc072c1b2f2e390 (patch) | |
tree | cc1668da96470bbe3e1564a982711d0bac83324e | |
parent | 56c7bb43bdac67acd808cd88a507c78ac6c56259 (diff) | |
download | liburing-baf0a8c986e0ef6a7472d9b86dc072c1b2f2e390.tar.gz liburing-baf0a8c986e0ef6a7472d9b86dc072c1b2f2e390.tar.bz2 |
liburing: update io_uring.h header file
Update io_uring.h header file with new op code for getdents64.
Signed-off-by: Stefan Roesch <shr@fb.com>
Link: https://lore.kernel.org/r/20211123180753.1598611-2-shr@fb.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | src/include/liburing/io_uring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/liburing/io_uring.h b/src/include/liburing/io_uring.h index a7d193d..d75ca47 100644 --- a/src/include/liburing/io_uring.h +++ b/src/include/liburing/io_uring.h @@ -147,6 +147,7 @@ enum { IORING_OP_MKDIRAT, IORING_OP_SYMLINKAT, IORING_OP_LINKAT, + IORING_OP_GETDENTS, /* this goes last, obviously */ IORING_OP_LAST, |