diff options
| author | Greg Kurz | 2019-07-24 18:57:14 +0200 |
|---|---|---|
| committer | David Gibson | 2019-07-28 03:50:26 +0200 |
| commit | f5bda01066c15aecdca775089a0a0748b52ca55a (patch) | |
| tree | ad1c932d91dd87691cd4cdbd582626568ba94628 /hw | |
| parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20190726'... (diff) | |
| download | qemu-f5bda01066c15aecdca775089a0a0748b52ca55a.tar.gz qemu-f5bda01066c15aecdca775089a0a0748b52ca55a.tar.xz qemu-f5bda01066c15aecdca775089a0a0748b52ca55a.zip | |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); } } |
