mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-29 20:24:31 +00:00
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:
parent
81cdaf0771
commit
b6cd2348f5
@ -1142,6 +1142,9 @@ const (
|
|||||||
|
|
||||||
// Native is the native Linux AIO implementation.
|
// Native is the native Linux AIO implementation.
|
||||||
Native BlockDeviceAIO = "native"
|
Native BlockDeviceAIO = "native"
|
||||||
|
|
||||||
|
// IOUring is the Linux io_uring I/O implementation.
|
||||||
|
IOUring BlockDeviceAIO = "io_uring"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
Loading…
Reference in New Issue
Block a user