]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/xive: Clear the page tables for the ESB IO mapping
authorCédric Le Goater <clg@kaod.org>
Wed, 29 Apr 2020 07:51:20 +0000 (09:51 +0200)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 26 May 2020 13:37:14 +0000 (23:37 +1000)
commit1a41d4ac821dc932c283dd56aaf7fec43df401eb
tree5eb5be85a1665248d19f92f5937081077842af37
parentd6dad76d2ada0f68ccbc557586312114e426d1fa
powerpc/xive: Clear the page tables for the ESB IO mapping

Commit a8b868a276c5 ("powerpc/xive: Prevent page fault issues in the
machine crash handler") fixed an issue in the FW assisted dump of
machines using hash MMU and the XIVE interrupt mode under the POWER
hypervisor. It forced the mapping of the ESB page of interrupts being
mapped in the Linux IRQ number space to make sure the 'crash kexec'
sequence worked during such an event. But it didn't handle the
un-mapping.

This mapping is now blocking the removal of a passthrough IO adapter
under the POWER hypervisor because it expects the guest OS to have
cleared all page table entries related to the adapter. If some are
still present, the RTAS call which isolates the PCI slot returns error
9001 "valid outstanding translations".

Remove these mapping in the IRQ data cleanup routine.

Under KVM, this cleanup is not required because the ESB pages for the
adapter interrupts are un-mapped from the guest by the hypervisor in
the KVM XIVE native device. This is now redundant but it's harmless.

Fixes: a8b868a276c5 ("powerpc/xive: Prevent page fault issues in the machine crash handler")
Cc: stable@vger.kernel.org # v5.5+
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200429075122.1216388-2-clg@kaod.org
arch/powerpc/sysdev/xive/common.c