diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-06-13 15:27:03 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-25 02:39:12 +0200 |
commit | f3b44f92e59a804cf375479bda0bccbf4b6e6ef6 (patch) | |
tree | cc1a658d1fd71f4f197bae3c1ba004bf3079c1df /io_uring/Makefile | |
parent | io_uring: move remaining file table manipulation to filetable.c (diff) | |
download | linux-f3b44f92e59a804cf375479bda0bccbf4b6e6ef6.tar.xz linux-f3b44f92e59a804cf375479bda0bccbf4b6e6ef6.zip |
io_uring: move read/write related opcodes to its own file
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 360a83039c2a..d70deed65a0b 100644 --- a/io_uring/Makefile +++ b/io_uring/Makefile @@ -7,5 +7,5 @@ obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o fs.o splice.o \ openclose.o uring_cmd.o epoll.o \ statx.o net.o msg_ring.o timeout.o \ sqpoll.o fdinfo.o tctx.o poll.o \ - cancel.o kbuf.o rsrc.o + cancel.o kbuf.o rsrc.o rw.o obj-$(CONFIG_IO_WQ) += io-wq.o |