From: Greg Kurz Date: Wed, 24 Jul 2019 16:57:14 +0000 (+0200) Subject: spapr/irq: Inform the user when falling back to emulated IC X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f5bda01066c15aecdca775089a0a0748b52ca55a;p=qemu.git spapr/irq: Inform the user when falling back to emulated IC Just to give an indication to the user that the error condition is handled and how. Reported-by: Satheesh Rajendran Signed-off-by: Greg Kurz Message-Id: <156398743479.546975.14566809803480887488.stgit@bahia.lan> Reviewed-by: Cédric Le Goater Signed-off-by: David Gibson --- diff --git a/hw/ppc/spapr_irq.c b/hw/ppc/spapr_irq.c index ff3df0bbd8..d07aed8ca9 100644 --- a/hw/ppc/spapr_irq.c +++ b/hw/ppc/spapr_irq.c @@ -86,6 +86,7 @@ static void spapr_irq_init_kvm(SpaprMachineState *spapr, * emulated mode */ error_prepend(&local_err, "kernel_irqchip allowed but unavailable: "); + error_append_hint(&local_err, "Falling back to kernel-irqchip=off\n"); warn_report_err(local_err); } }