diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-24 21:25:19 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-24 18:39:11 -0600 |
commit | 0d58472740370108f8ece9076d79f736f53b5b77 (patch) | |
tree | 2a1394f1d03df88a0bfd1f87c9f8dcd45bc27a73 /io_uring/Makefile | |
parent | 531113bbd5bfc93e8de45440752af11c751e4aaf (diff) | |
download | linux-0d58472740370108f8ece9076d79f736f53b5b77.tar.bz2 |
io_uring: split out fs related sync/fallocate functions
This splits out sync_file_range, fsync, and fallocate.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/Makefile')
-rw-r--r-- | io_uring/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/io_uring/Makefile b/io_uring/Makefile index c6aca2af6f4a..7285c6aef8da 100644 --- a/io_uring/Makefile +++ b/io_uring/Makefile @@ -2,5 +2,6 @@ # # Makefile for io_uring -obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o fs.o splice.o +obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o fs.o splice.o \ + sync.o obj-$(CONFIG_IO_WQ) += io-wq.o |