diff options
| author | Dmitry Kadashev <[email protected]> | 2021-07-08 13:34:45 +0700 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2021-08-23 13:41:26 -0600 |
| commit | e34a02dc40c95d126bb6486dcf802bbb8d1624a0 (patch) | |
| tree | 3d60f1e11a69df55152a3a9e698ebc999232f4d0 /include/uapi/linux | |
| parent | 45f30dab395730aa3b3da14d9f19ea0d7d43db53 (diff) | |
io_uring: add support for IORING_OP_MKDIRAT
IORING_OP_MKDIRAT behaves like mkdirat(2) and takes the same flags
and arguments.
Acked-by: Linus Torvalds <[email protected]>
Signed-off-by: Dmitry Kadashev <[email protected]>
Acked-by: Christian Brauner <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
[axboe: add splice_fd_in check]
Signed-off-by: Jens Axboe <[email protected]>
Diffstat (limited to 'include/uapi/linux')
| -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 79126d5cd289..a926407c230e 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -133,6 +133,7 @@ enum { IORING_OP_SHUTDOWN, IORING_OP_RENAMEAT, IORING_OP_UNLINKAT, + IORING_OP_MKDIRAT, /* this goes last, obviously */ IORING_OP_LAST, |