From 338521c7009315d49e3741e587097c9edebcb19e Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 27 Oct 2020 08:16:26 +0000 Subject: [PATCH] build: Enable io_uring feature by default Now that we that our CI is running with a kernel that is new enough to support io_uring we can turn this feature on by default. See: #1561 Signed-off-by: Rob Bradford --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 46ad3ff9b..f2af75543 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ serde_json = "1.0.59" net_util = { path = "net_util" } [features] -default = ["acpi", "cmos", "kvm"] +default = ["acpi", "cmos", "io_uring", "kvm"] acpi = ["vmm/acpi"] cmos = ["vmm/cmos"] fwdebug = ["vmm/fwdebug"]