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 <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2020-10-27 08:16:26 +00:00
parent 2e1866a5db
commit 338521c700

View File

@ -50,7 +50,7 @@ serde_json = "1.0.59"
net_util = { path = "net_util" } net_util = { path = "net_util" }
[features] [features]
default = ["acpi", "cmos", "kvm"] default = ["acpi", "cmos", "io_uring", "kvm"]
acpi = ["vmm/acpi"] acpi = ["vmm/acpi"]
cmos = ["vmm/cmos"] cmos = ["vmm/cmos"]
fwdebug = ["vmm/fwdebug"] fwdebug = ["vmm/fwdebug"]