diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-26 05:31:09 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-25 03:39:12 +0300 |
commit | 329061d3e2f9a0082a097e9558bd5497098586c6 (patch) | |
tree | 3a0d34b89b6ef8df26c0ca04a7c60732ada208af /io_uring/Makefile | |
parent | cfd22e6b3319adc7c2a8a092e19ac16575dabc86 (diff) | |
download | linux-329061d3e2f9a0082a097e9558bd5497098586c6.tar.xz |
io_uring: move poll handling into its own file
Add a io_poll_issue() rather than export the general task_work locking
and io_issue_sqe(), and put the io_op_defs definition and structure into
a separate header file so that poll can use it.
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 2db085cdedad..eb1b07a99516 100644 --- a/io_uring/Makefile +++ b/io_uring/Makefile @@ -6,5 +6,5 @@ obj-$(CONFIG_IO_URING) += io_uring.o xattr.o nop.o fs.o splice.o \ sync.o advise.o filetable.o \ openclose.o uring_cmd.o epoll.o \ statx.o net.o msg_ring.o timeout.o \ - sqpoll.o fdinfo.o tctx.o + sqpoll.o fdinfo.o tctx.o poll.o obj-$(CONFIG_IO_WQ) += io-wq.o |