diff options
author | Jens Axboe <axboe@kernel.dk> | 2024-06-03 11:51:19 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-06-16 14:54:55 -0600 |
commit | 200f3abd14db55f9aadcb74f4e7a678f1c469ba1 (patch) | |
tree | 5588e398e3c45e010128ab2c9bf285e68080ee3d /io_uring/Makefile | |
parent | 60b6c075e8eb8bd23c106e2ab13370a146a94a5b (diff) | |
download | linux-stable-200f3abd14db55f9aadcb74f4e7a678f1c469ba1.tar.gz linux-stable-200f3abd14db55f9aadcb74f4e7a678f1c469ba1.tar.bz2 linux-stable-200f3abd14db55f9aadcb74f4e7a678f1c469ba1.zip |
io_uring/eventfd: move eventfd handling to separate file
This is pretty nicely abstracted already, but let's move it to a separate
file rather than have it in the main io_uring file. With that, we can
also move the io_ev_fd struct and enum out of global scope.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/Makefile')
-rw-r--r-- | io_uring/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/io_uring/Makefile b/io_uring/Makefile index fc1b23c524e8..61923e11c767 100644 --- a/io_uring/Makefile +++ b/io_uring/Makefile @@ -4,9 +4,9 @@ obj-$(CONFIG_IO_URING) += io_uring.o opdef.o kbuf.o rsrc.o notif.o \ tctx.o filetable.o rw.o net.o poll.o \ - uring_cmd.o openclose.o sqpoll.o \ - xattr.o nop.o fs.o splice.o sync.o \ - msg_ring.o advise.o openclose.o \ + eventfd.o uring_cmd.o openclose.o \ + sqpoll.o xattr.o nop.o fs.o splice.o \ + sync.o msg_ring.o advise.o openclose.o \ epoll.o statx.o timeout.o fdinfo.o \ cancel.o waitid.o register.o \ truncate.o memmap.o |