govmm: Add io_uring as AIO type

io_uring was introduced as a new kernel IO interface in kernel 5.1.
It is designed for higher performance than the older Linux AIO API.
This feature was added in qemu 5.0.

Fixes #4645

Signed-off-by: Archana Shinde <archana.m.shinde@intel.com>
This commit is contained in:
Archana Shinde 2022-07-28 15:37:00 -07:00
parent 81cdaf0771
commit b6cd2348f5

View File

@ -1142,6 +1142,9 @@ const (
// Native is the native Linux AIO implementation.
Native BlockDeviceAIO = "native"
// IOUring is the Linux io_uring I/O implementation.
IOUring BlockDeviceAIO = "io_uring"
)
const (