diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-25 06:13:00 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-25 03:39:11 +0300 |
commit | 11aeb71406ddd0ef526ad1df48b54aae628aad3b (patch) | |
tree | 1dcb74e06320e7f4e4c0e65efe3b9adc1a07240f /io_uring/Makefile | |
parent | e28683bdfc2f2cb0dab042f9079cda89dbf589d9 (diff) | |
download | linux-11aeb71406ddd0ef526ad1df48b54aae628aad3b.tar.xz |
io_uring: split out filesystem related operations
This splits out renameat, unlinkat, mkdirat, symlinkat, and linkat.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/Makefile')
-rw-r--r-- | io_uring/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/Makefile b/io_uring/Makefile index 32c02a38f83b..50e68c9a4d1b 100644 --- a/io_uring/Makefile +++ b/io_uring/Makefile @@ -2,5 +2,5 @@ # # Makefile for io_uring -obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o +obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o fs.o obj-$(CONFIG_IO_WQ) += io-wq.o |