From 1b71b3ac8169acad293bfdee999be9d4bfe1006e Mon Sep 17 00:00:00 2001 From: Martin Kletzander Date: Mon, 30 May 2022 13:11:56 +0200 Subject: [PATCH] virt-host-validate: Improve failure message when no HW virt is found MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Make sure that more users understand that without HW virtualization you cannot have KVM working. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2086677 Signed-off-by: Martin Kletzander Reviewed-by: Ján Tomko --- tools/virt-host-validate-qemu.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/virt-host-validate-qemu.c b/tools/virt-host-validate-qemu.c index 46ff1d2494..096419869c 100644 --- a/tools/virt-host-validate-qemu.c +++ b/tools/virt-host-validate-qemu.c @@ -71,7 +71,8 @@ int virHostValidateQEMU(void) virHostMsgPass(); } else { virHostMsgFail(VIR_HOST_VALIDATE_FAIL, - _("Only emulated CPUs are available, performance will be significantly limited")); + _("Host not compatible with KVM; HW virtualization CPU features not found. " + "Only emulated CPUs are available; performance will be significantly limited")); ret = -1; } }