mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-03 13:26:01 +00:00

The IOQueue has a pool of iocb structs and a function to add new read/write requests. Multiple requests can be added before calling the submit function to actually tell the host kernel to begin I/O. This allows callers to batch requests and submit them in one go. The actual I/O is performed using Linux AIO. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
4 lines
116 B
Makefile
4 lines
116 B
Makefile
ifeq ($(CONFIG_VIRTIO), y)
|
|
common-obj-$(CONFIG_VIRTIO_BLK_DATA_PLANE) += hostmem.o vring.o event-poll.o ioq.o
|
|
endif
|