diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-23 17:05:03 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-24 18:39:10 -0600 |
commit | ed29b0b4fd835b058ddd151c49d021e28d631ee6 (patch) | |
tree | 8bc60aff490502462c43d96246a50a5e9da20b90 /io_uring/Makefile | |
parent | 0702e5364f643bc86683d9f585edfe76dbabae39 (diff) | |
download | linux-ed29b0b4fd835b058ddd151c49d021e28d631ee6.tar.bz2 |
io_uring: move to separate directory
In preparation for splitting io_uring up a bit, move it into its own
top level directory. It didn't really belong in fs/ anyway, as it's
not a file system only API.
This adds io_uring/ and moves the core files in there, and updates the
MAINTAINERS file for the new location.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/Makefile')
-rw-r--r-- | io_uring/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/io_uring/Makefile b/io_uring/Makefile new file mode 100644 index 000000000000..3680425df947 --- /dev/null +++ b/io_uring/Makefile @@ -0,0 +1,6 @@ +# SPDX-License-Identifier: GPL-2.0 +# +# Makefile for io_uring + +obj-$(CONFIG_IO_URING) += io_uring.o +obj-$(CONFIG_IO_WQ) += io-wq.o |