aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorGreg Kurz <groug@kaod.org>2019-07-24 18:57:14 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2019-07-28 11:50:26 +1000
commitf5bda01066c15aecdca775089a0a0748b52ca55a (patch)
treead1c932d91dd87691cd4cdbd582626568ba94628 /hw
parentfff3159900d2b95613a9cb75fc3703e67a674729 (diff)
downloadqemu-f5bda01066c15aecdca775089a0a0748b52ca55a.zip
qemu-f5bda01066c15aecdca775089a0a0748b52ca55a.tar.gz
qemu-f5bda01066c15aecdca775089a0a0748b52ca55a.tar.bz2
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 <sathnaga@linux.vnet.ibm.com> Signed-off-by: Greg Kurz <groug@kaod.org> Message-Id: <156398743479.546975.14566809803480887488.stgit@bahia.lan> Reviewed-by: Cédric Le Goater <clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw')
-rw-r--r--hw/ppc/spapr_irq.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/spapr_irq.c b/hw/ppc/spapr_irq.c
index ff3df0b..d07aed8 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);
}
}