diff options
author | Jens Axboe | 2019-12-10 10:38:56 -0700 |
---|---|---|
committer | Jens Axboe | 2020-01-20 17:01:53 -0700 |
commit | d63d1b5edb7b832210bfde587ba9e7549fa064eb (patch) | |
tree | e11f428580d82a830abd36d181ea64633090e732 /include/uapi/linux/io_uring.h | |
parent | 4d927483732f759769613388813ff5dbb29902a7 (diff) |
io_uring: add support for fallocate()
This exposes fallocate(2) through io_uring.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/uapi/linux/io_uring.h')
-rw-r--r-- | include/uapi/linux/io_uring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index 55cfcb71606d..ad1574f35eb3 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -76,6 +76,7 @@ enum { IORING_OP_ASYNC_CANCEL, IORING_OP_LINK_TIMEOUT, IORING_OP_CONNECT, + IORING_OP_FALLOCATE, /* this goes last, obviously */ IORING_OP_LAST, |