From: Cédric Le Goater <clg@kaod.org> Date: 2017-10-04 09:22:52
Hi,
Recent commit eac1e731b59e ("powerpc/xive: guest exploitation of the
XIVE interrupt controller") introduced support for the XIVE
exploitation mode of the P9 interrupt controller on the pseries
platform.
At the time the patchset was sent, support for CPU removal was not
complete on PowerVM and only CPU hotplug was tested. To also support
CPU hot unplug, some cleanups of the XIVE internal structures are
needed. These two patches include the missing bits without which the
kernel crashes in a rtas call when a CPU is released.
There are still some corner cases to address when stressing the lpar
with plug/unplug loops. These are not necessarily Linux issues. Under
QEMU, it showed to be the decrementer waking the dying CPU. Under
phyp, it is much more rare and investigation is under progress.
Tested under a phyp and a XIVE QEMU model for pseries.
These changes should only impact the pseries platform.
Thanks,
C.
Changes since v2 :
- clarified commit log.
Cédric Le Goater (2):
powerpc/xive: fix IPI reset
powerpc/xive: fix cpu removal
arch/powerpc/sysdev/xive/common.c | 8 ++++++++
arch/powerpc/sysdev/xive/spapr.c | 4 ++++
2 files changed, 12 insertions(+)
--
2.13.5
From: Cédric Le Goater <clg@kaod.org> Date: 2017-10-04 09:23:08
When resetting an IPI, hw_ipi should also be set to zero.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
---
arch/powerpc/sysdev/xive/spapr.c | 4 ++++
1 file changed, 4 insertions(+)
From: Cédric Le Goater <clg@kaod.org> Date: 2017-10-04 09:23:27
Commit eac1e731b59e ("powerpc/xive: guest exploitation of the XIVE
interrupt controller") introduced support for the XIVE exploitation
mode of the P9 interrupt controller on the pseries platform.
At that time, support for CPU removal was not complete on PowerVM and
CPU hot unplug remained untested. It appears that some cleanups of the
XIVE internal structures are required before releasing the CPU,
without which the kernel crashes in a rtas call doing the CPU
isolation.
These changes fix the crash by deconfiguring the IPI interrupt source
and clearing the event queues of the CPU when it is removed.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
---
arch/powerpc/sysdev/xive/common.c | 8 ++++++++
1 file changed, 8 insertions(+)
@@ -1398,6 +1398,14 @@ void xive_teardown_cpu(void)if(xive_ops->teardown_cpu)xive_ops->teardown_cpu(cpu,xc);++#ifdef CONFIG_SMP+/* Get rid of IPI */+xive_cleanup_cpu_ipi(cpu,xc);+#endif++/* Disable and free the queues */+xive_cleanup_cpu_queues(cpu,xc);}voidxive_kexec_teardown_cpu(intsecondary)