[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v10 0/6] target-ppc/spapr: Add FWNMI support in QEMU
From: |
Aravinda Prasad |
Subject: |
[Qemu-devel] [PATCH v10 0/6] target-ppc/spapr: Add FWNMI support in QEMU for PowerKVM guests |
Date: |
Wed, 12 Jun 2019 14:50:47 +0530 |
User-agent: |
StGit/0.17.1-dirty |
This patch set adds support for FWNMI in PowerKVM guests.
System errors such as SLB multihit and memory errors
that cannot be corrected by hardware is passed on to
the kernel for handling by raising machine check
exception (an NMI). Upon such machine check exceptions,
if the address in error belongs to guest then KVM
invokes guests' 0x200 interrupt vector if the guest
is not FWNMI capable. For FWNMI capable guest
KVM passes the control to QEMU by exiting the guest.
This patch series adds functionality to QEMU to pass
on such machine check exceptions to the FWNMI capable
guest kernel by building an error log and invoking
the guest registered machine check handling routine.
The KVM changes are now part of the upstream kernel
(commit e20bbd3d). This series contain QEMU changes.
Change Log v10:
- Reshuffled the patch sequence + minor fixes
Change Log v9:
- Fixed kvm cap and spapr cap issues
Change Log v8:
- Added functionality to check FWNMI capability during
VM migration
---
Aravinda Prasad (6):
Wrapper function to wait on condition for the main loop mutex
ppc: spapr: Introduce FWNMI capability
target/ppc: Handle NMI guest exit
target/ppc: Build rtas error log upon an MCE
migration: Include migration support for machine check handling
ppc: spapr: Handle "ibm,nmi-register" and "ibm,nmi-interlock" RTAS calls
cpus.c | 5 +
hw/ppc/spapr.c | 53 +++++++++
hw/ppc/spapr_caps.c | 26 ++++
hw/ppc/spapr_events.c | 273 ++++++++++++++++++++++++++++++++++++++++++++++
hw/ppc/spapr_rtas.c | 89 +++++++++++++++
include/hw/ppc/spapr.h | 25 ++++
include/qemu/main-loop.h | 8 +
target/ppc/kvm.c | 35 ++++++
target/ppc/kvm_ppc.h | 14 ++
target/ppc/trace-events | 1
10 files changed, 527 insertions(+), 2 deletions(-)
--
Aravinda Prasad
- [Qemu-devel] [PATCH v10 0/6] target-ppc/spapr: Add FWNMI support in QEMU for PowerKVM guests,
Aravinda Prasad <=
- [Qemu-devel] [PATCH v10 1/6] Wrapper function to wait on condition for the main loop mutex, Aravinda Prasad, 2019/06/12
- [Qemu-devel] [PATCH v10 5/6] migration: Include migration support for machine check handling, Aravinda Prasad, 2019/06/12
- [Qemu-devel] [PATCH v10 3/6] target/ppc: Handle NMI guest exit, Aravinda Prasad, 2019/06/12
- [Qemu-devel] [PATCH v10 6/6] ppc: spapr: Handle "ibm, nmi-register" and "ibm, nmi-interlock" RTAS calls, Aravinda Prasad, 2019/06/12
- Re: [Qemu-devel] [PATCH v10 6/6] ppc: spapr: Handle "ibm, nmi-register" and "ibm, nmi-interlock" RTAS calls, Greg Kurz, 2019/06/24
- Re: [Qemu-devel] [PATCH v10 6/6] ppc: spapr: Handle "ibm, nmi-register" and "ibm, nmi-interlock" RTAS calls, Aravinda Prasad, 2019/06/25
- Re: [Qemu-devel] [PATCH v10 6/6] ppc: spapr: Handle "ibm, nmi-register" and "ibm, nmi-interlock" RTAS calls, Greg Kurz, 2019/06/25
- Re: [Qemu-devel] [Qemu-ppc] [PATCH v10 6/6] ppc: spapr: Handle "ibm, nmi-register" and "ibm, nmi-interlock" RTAS calls, Aravinda Prasad, 2019/06/26
[Qemu-devel] [PATCH v10 2/6] ppc: spapr: Introduce FWNMI capability, Aravinda Prasad, 2019/06/12
[Qemu-devel] [PATCH v10 4/6] target/ppc: Build rtas error log upon an MCE, Aravinda Prasad, 2019/06/12