[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v4 8/8] s390: guest support for diagnose 0x318
From: |
Cornelia Huck |
Subject: |
Re: [PATCH v4 8/8] s390: guest support for diagnose 0x318 |
Date: |
Fri, 26 Jun 2020 12:03:08 +0200 |
On Wed, 24 Jun 2020 16:23:12 -0400
Collin Walling <walling@linux.ibm.com> wrote:
> DIAGNOSE 0x318 (diag318) is an s390 instruction that allows the storage
> of diagnostic information that is collected by the firmware in the case
> of hardware/firmware service events.
>
> QEMU handles the instruction by storing the info in the CPU state. A
> subsequent register sync will communicate the data to the hypervisor.
>
> QEMU handles the migration via a VM State Description.
>
> This feature depends on the Extended-Length SCCB (els) feature. If
> els is not present, then a warning will be printed and the SCLP bit
> that allows the Linux kernel to execute the instruction will not be
> set.
>
> Availability of this instruction is determined by byte 134 (aka fac134)
> bit 0 of the SCLP Read Info block. This coincidentally expands into the
> space used for CPU entries, which means VMs running with the diag318
> capability may not be able to read information regarding all CPUs
> unless the guest kernel supports an extended-length SCCB.
>
> This feature is not supported in protected virtualization mode.
>
> Signed-off-by: Collin Walling <walling@linux.ibm.com>
> Acked-by: Janosch Frank <frankja@linux.ibm.com>
> ---
> hw/s390x/sclp.c | 5 +++++
> include/hw/s390x/sclp.h | 3 +++
> target/s390x/cpu.h | 2 ++
> target/s390x/cpu_features.h | 1 +
> target/s390x/cpu_features_def.inc.h | 3 +++
> target/s390x/cpu_models.c | 1 +
> target/s390x/gen-features.c | 1 +
> target/s390x/kvm.c | 31 +++++++++++++++++++++++++++++
> target/s390x/machine.c | 17 ++++++++++++++++
> 9 files changed, 64 insertions(+)
Acked-by: Cornelia Huck <cohuck@redhat.com>
- [PATCH v4 0/8] s390: Extended-Length SCCB & DIAGNOSE 0x318, Collin Walling, 2020/06/24
- [PATCH v4 5/8] s390/sclp: use cpu offset to locate cpu entries, Collin Walling, 2020/06/24
- [PATCH v4 6/8] s390/sclp: add extended-length sccb support for kvm guest, Collin Walling, 2020/06/24
- [PATCH v4 1/8] s390/sclp: get machine once during read scp/cpu info, Collin Walling, 2020/06/24
- [PATCH v4 3/8] s390/sclp: rework sclp boundary and length checks, Collin Walling, 2020/06/24
- [PATCH v4 7/8] s390/kvm: header sync for diag318, Collin Walling, 2020/06/24
- [PATCH v4 8/8] s390: guest support for diagnose 0x318, Collin Walling, 2020/06/24
- Re: [PATCH v4 8/8] s390: guest support for diagnose 0x318,
Cornelia Huck <=
- [PATCH v4 2/8] s390/sclp: check sccb len before filling in data, Collin Walling, 2020/06/24
- [PATCH v4 4/8] s390/sclp: read sccb from mem based on sccb length, Collin Walling, 2020/06/24