[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 14/16] s390x: protvirt: Handle SIGP store status correctly
From: |
Janosch Frank |
Subject: |
[PATCH v4 14/16] s390x: protvirt: Handle SIGP store status correctly |
Date: |
Thu, 20 Feb 2020 07:56:36 -0500 |
Status storing is not done by QEMU anymore, but is handled by SIE.
Signed-off-by: Janosch Frank <address@hidden>
Reviewed-by: Thomas Huth <address@hidden>
---
target/s390x/helper.c | 4 ++++
target/s390x/sigp.c | 1 +
2 files changed, 5 insertions(+)
diff --git a/target/s390x/helper.c b/target/s390x/helper.c
index a3a49164e4..3800c4b395 100644
--- a/target/s390x/helper.c
+++ b/target/s390x/helper.c
@@ -246,6 +246,10 @@ int s390_store_status(S390CPU *cpu, hwaddr addr, bool
store_arch)
hwaddr len = sizeof(*sa);
int i;
+ if (cpu->env.pv) {
+ return 0;
+ }
+
sa = cpu_physical_memory_map(addr, &len, 1);
if (!sa) {
return -EFAULT;
diff --git a/target/s390x/sigp.c b/target/s390x/sigp.c
index c604f17710..e1c8071464 100644
--- a/target/s390x/sigp.c
+++ b/target/s390x/sigp.c
@@ -497,6 +497,7 @@ void do_stop_interrupt(CPUS390XState *env)
if (s390_cpu_set_state(S390_CPU_STATE_STOPPED, cpu) == 0) {
qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
}
+ /* Storing will occur on next SIE entry for protected VMs */
if (cpu->env.sigp_order == SIGP_STOP_STORE_STATUS) {
s390_store_status(cpu, S390_STORE_STATUS_DEF_ADDR, true);
}
--
2.20.1
- [PATCH v4 06/16] s390x: protvirt: KVM intercept changes, (continued)
- [PATCH v4 06/16] s390x: protvirt: KVM intercept changes, Janosch Frank, 2020/02/20
- [PATCH v4 07/16] s390x: Add SIDA memory ops, Janosch Frank, 2020/02/20
- [PATCH v4 08/16] s390x: protvirt: Move STSI data over SIDAD, Janosch Frank, 2020/02/20
- [PATCH v4 09/16] s390x: protvirt: SCLP interpretation, Janosch Frank, 2020/02/20
- [PATCH v4 12/16] s390x: protvirt: Disable address checks for PV guest IO emulation, Janosch Frank, 2020/02/20
- [PATCH v4 14/16] s390x: protvirt: Handle SIGP store status correctly,
Janosch Frank <=
- [PATCH v4 15/16] s390x: Add unpack feature to GA1, Janosch Frank, 2020/02/20
- [PATCH v4 16/16] docs: Add protvirt docs, Janosch Frank, 2020/02/20
- [PATCH v4 13/16] s390x: protvirt: Move IO control structures over SIDA, Janosch Frank, 2020/02/20
- [PATCH v4 11/16] s390x: protvirt: Move diag 308 data over SIDAD, Janosch Frank, 2020/02/20
- [PATCH v4 10/16] s390x: protvirt: Set guest IPL PSW, Janosch Frank, 2020/02/20