spapr/xics: Drop unused argument to xics_kvm_has_broken_disconnect()

Never used from the start.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <20201120174646.619395-6-groug@kaod.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Greg Kurz 2020-11-20 18:46:43 +01:00 committed by David Gibson
parent 484d774c3a
commit 0b66209d9f
3 changed files with 3 additions and 3 deletions

View File

@ -484,7 +484,7 @@ void xics_kvm_disconnect(SpaprInterruptController *intc)
* support destruction of a KVM XICS device while the VM is running. * support destruction of a KVM XICS device while the VM is running.
* Required to start a spapr machine with ic-mode=dual,kernel-irqchip=on. * Required to start a spapr machine with ic-mode=dual,kernel-irqchip=on.
*/ */
bool xics_kvm_has_broken_disconnect(SpaprMachineState *spapr) bool xics_kvm_has_broken_disconnect(void)
{ {
int rc; int rc;

View File

@ -186,7 +186,7 @@ static int spapr_irq_check(SpaprMachineState *spapr, Error **errp)
if (kvm_enabled() && if (kvm_enabled() &&
spapr->irq == &spapr_irq_dual && spapr->irq == &spapr_irq_dual &&
kvm_kernel_irqchip_required() && kvm_kernel_irqchip_required() &&
xics_kvm_has_broken_disconnect(spapr)) { xics_kvm_has_broken_disconnect()) {
error_setg(errp, error_setg(errp,
"KVM is incompatible with ic-mode=dual,kernel-irqchip=on"); "KVM is incompatible with ic-mode=dual,kernel-irqchip=on");
error_append_hint(errp, error_append_hint(errp,

View File

@ -38,6 +38,6 @@ DECLARE_INSTANCE_CHECKER(ICSState, ICS_SPAPR,
int xics_kvm_connect(SpaprInterruptController *intc, uint32_t nr_servers, int xics_kvm_connect(SpaprInterruptController *intc, uint32_t nr_servers,
Error **errp); Error **errp);
void xics_kvm_disconnect(SpaprInterruptController *intc); void xics_kvm_disconnect(SpaprInterruptController *intc);
bool xics_kvm_has_broken_disconnect(SpaprMachineState *spapr); bool xics_kvm_has_broken_disconnect(void);
#endif /* XICS_SPAPR_H */ #endif /* XICS_SPAPR_H */