summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2022-05-23 17:05:03 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-12-14 11:37:31 +0100
commitf435c66d2336fff104e2c3cbfff60905733e7d89 (patch)
tree18b0478e99f69e1afa030bf0fa2f18f1fadd48b5 /Makefile
parentd9e1e5d8a74c4bbe7595d0e21a733218190c3da7 (diff)
downloadlinux-stable-f435c66d2336fff104e2c3cbfff60905733e7d89.tar.gz
linux-stable-f435c66d2336fff104e2c3cbfff60905733e7d89.tar.bz2
linux-stable-f435c66d2336fff104e2c3cbfff60905733e7d89.zip
io_uring: move to separate directory
[ Upstream commit ed29b0b4fd835b058ddd151c49d021e28d631ee6 ] 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> Stable-dep-of: 998b30c3948e ("io_uring: Fix a null-ptr-deref in io_tctx_exit_cb()") Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0acea54c2ffd..e6570933dcfa 100644
--- a/Makefile
+++ b/Makefile
@@ -1152,6 +1152,7 @@ export MODULES_NSDEPS := $(extmod_prefix)modules.nsdeps
ifeq ($(KBUILD_EXTMOD),)
core-y += kernel/ certs/ mm/ fs/ ipc/ security/ crypto/
core-$(CONFIG_BLOCK) += block/
+core-$(CONFIG_IO_URING) += io_uring/
vmlinux-dirs := $(patsubst %/,%,$(filter %/, \
$(core-y) $(core-m) $(drivers-y) $(drivers-m) \