forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
io_uring: move to separate directory
[ Upstream commit ed29b0b ] 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 <[email protected]> Stable-dep-of: 998b30c ("io_uring: Fix a null-ptr-deref in io_tctx_exit_cb()") Signed-off-by: Sasha Levin <[email protected]>
- Loading branch information
Showing
8 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7244,9 +7244,6 @@ F: include/linux/fs.h | |
F: include/linux/fs_types.h | ||
F: include/uapi/linux/fs.h | ||
F: include/uapi/linux/openat2.h | ||
X: fs/io-wq.c | ||
X: fs/io-wq.h | ||
X: fs/io_uring.c | ||
|
||
FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER | ||
M: Riku Voipio <[email protected]> | ||
|
@@ -9818,9 +9815,7 @@ L: [email protected] | |
S: Maintained | ||
T: git git://git.kernel.dk/linux-block | ||
T: git git://git.kernel.dk/liburing | ||
F: fs/io-wq.c | ||
F: fs/io-wq.h | ||
F: fs/io_uring.c | ||
F: io_uring/ | ||
F: include/linux/io_uring.h | ||
F: include/uapi/linux/io_uring.h | ||
F: tools/io_uring/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters