mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
c43203154d
Most of this code is basically self contained, move it out of the core io_uring file to bring a bit more separation to the registration related bits. This moves another ~10% of the code into register.c. Signed-off-by: Jens Axboe <axboe@kernel.dk>
14 lines
425 B
Makefile
14 lines
425 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for io_uring
|
|
|
|
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 poll.o \
|
|
cancel.o kbuf.o rsrc.o rw.o opdef.o \
|
|
notif.o waitid.o register.o
|
|
obj-$(CONFIG_IO_WQ) += io-wq.o
|
|
obj-$(CONFIG_FUTEX) += futex.o
|