OSDN Git Service

KVM: PPC: Book3S HV: XIVE: Fix page offset when clearing ESB pages
authorCédric Le Goater <clg@kaod.org>
Tue, 28 May 2019 21:13:24 +0000 (23:13 +0200)
committerPaul Mackerras <paulus@ozlabs.org>
Thu, 30 May 2019 03:55:41 +0000 (13:55 +1000)
commitbcaa3110d584f982a17e9ddbfc03e1130bca2bc9
tree7d9d3ba61c6120d833400b947f7847aac31b8b67
parentaedb5b19429c807331e8387bcb98cb5dc4c2a75e
KVM: PPC: Book3S HV: XIVE: Fix page offset when clearing ESB pages

Under XIVE, the ESB pages of an interrupt are used for interrupt
management (EOI) and triggering. They are made available to guests
through a mapping of the XIVE KVM device.

When a device is passed-through, the passthru_irq helpers,
kvmppc_xive_set_mapped() and kvmppc_xive_clr_mapped(), clear the ESB
pages of the guest IRQ number being mapped and let the VM fault
handler repopulate with the correct page.

The ESB pages are mapped at offset 4 (KVM_XIVE_ESB_PAGE_OFFSET) in the
KVM device mapping. Unfortunately, this offset was not taken into
account when clearing the pages. This lead to issues with the
passthrough devices for which the interrupts were not functional under
some guest configuration (tg3 and single CPU) or in any configuration
(e1000e adapter).

Reviewed-by: Greg Kurz <groug@kaod.org>
Tested-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
arch/powerpc/kvm/book3s_xive_native.c