diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-06-16 01:27:42 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-25 03:39:12 +0300 |
commit | d9b57aa3cfc792ccac6858376c017dbea6cb2872 (patch) | |
tree | 8fd8a6d7407df0a2f155d85f29acadd22f78090f /io_uring/Makefile | |
parent | f3b44f92e59a804cf375479bda0bccbf4b6e6ef6 (diff) | |
download | linux-d9b57aa3cfc792ccac6858376c017dbea6cb2872.tar.xz |
io_uring: move opcode table to opdef.c
We already have the declarations in opdef.h, move the rest into its own
file rather than in the main io_uring.c 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 d70deed65a0b..466639c289be 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 rw.o + cancel.o kbuf.o rsrc.o rw.o opdef.o obj-$(CONFIG_IO_WQ) += io-wq.o |