mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

io_uring commands provide an ioctl style interface for files to implement file specific operations. io_uring provides many features and advanced api to commands, and it's getting hard to test as it requires specific files/devices. Add basic infrastucture for creating special mock files that will be implementing the cmd api and using various io_uring features we want to test. It'll also be useful to test some more obscure read/write/polling edge cases in the future. Suggested-by: chase xd <sl1589472800@gmail.com> Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/93f21b0af58c1367a2b22635d5a7d694ad0272fc.1750599274.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
24 lines
752 B
Makefile
24 lines
752 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for io_uring
|
|
|
|
ifdef CONFIG_GCOV_PROFILE_URING
|
|
GCOV_PROFILE := y
|
|
endif
|
|
|
|
obj-$(CONFIG_IO_URING) += io_uring.o opdef.o kbuf.o rsrc.o notif.o \
|
|
tctx.o filetable.o rw.o poll.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 \
|
|
statx.o timeout.o cancel.o \
|
|
waitid.o register.o truncate.o \
|
|
memmap.o alloc_cache.o
|
|
obj-$(CONFIG_IO_URING_ZCRX) += zcrx.o
|
|
obj-$(CONFIG_IO_WQ) += io-wq.o
|
|
obj-$(CONFIG_FUTEX) += futex.o
|
|
obj-$(CONFIG_EPOLL) += epoll.o
|
|
obj-$(CONFIG_NET_RX_BUSY_POLL) += napi.o
|
|
obj-$(CONFIG_NET) += net.o cmd_net.o
|
|
obj-$(CONFIG_PROC_FS) += fdinfo.o
|
|
obj-$(CONFIG_IO_URING_MOCK_FILE) += mock_file.o
|