91 lines
2.8 KiB
Diff
91 lines
2.8 KiB
Diff
From 8b06cba98e37b9c50e2a9deb1567d8cf4e1ba2b6 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Huth <thuth@redhat.com>
|
|
Date: Wed, 11 Nov 2020 12:03:05 -0500
|
|
Subject: [PATCH 05/18] s390x/sclp.c: remove unneeded label in
|
|
sclp_service_call()
|
|
|
|
RH-Author: Thomas Huth <thuth@redhat.com>
|
|
Message-id: <20201111120316.707489-2-thuth@redhat.com>
|
|
Patchwork-id: 99497
|
|
O-Subject: [RHEL-8.4.0 qemu-kvm PATCH v2 01/12] s390x/sclp.c: remove unneeded label in sclp_service_call()
|
|
Bugzilla: 1798506
|
|
RH-Acked-by: Jens Freimann <jfreimann@redhat.com>
|
|
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
RH-Acked-by: David Hildenbrand <david@redhat.com>
|
|
|
|
From: Daniel Henrique Barboza <danielhb413@gmail.com>
|
|
|
|
'out' label can be replaced by 'return' with the appropriate
|
|
value. The 'r' integer, which is used solely to set the
|
|
return value for this label, can also be removed.
|
|
|
|
CC: Cornelia Huck <cohuck@redhat.com>
|
|
CC: Halil Pasic <pasic@linux.ibm.com>
|
|
CC: Christian Borntraeger <borntraeger@de.ibm.com>
|
|
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
|
|
Reviewed-by: Thomas Huth <thuth@redhat.com>
|
|
Message-Id: <20200106182425.20312-39-danielhb413@gmail.com>
|
|
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
|
|
(cherry picked from commit e6de76fca48012348d8c81b1399c861f444bd4a4)
|
|
Signed-off-by: Thomas Huth <thuth@redhat.com>
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
hw/s390x/sclp.c | 16 +++++-----------
|
|
1 file changed, 5 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/hw/s390x/sclp.c b/hw/s390x/sclp.c
|
|
index 1c380a49cc7..d8ae207731f 100644
|
|
--- a/hw/s390x/sclp.c
|
|
+++ b/hw/s390x/sclp.c
|
|
@@ -241,24 +241,20 @@ int sclp_service_call(CPUS390XState *env, uint64_t sccb, uint32_t code)
|
|
{
|
|
SCLPDevice *sclp = get_sclp_device();
|
|
SCLPDeviceClass *sclp_c = SCLP_GET_CLASS(sclp);
|
|
- int r = 0;
|
|
SCCB work_sccb;
|
|
|
|
hwaddr sccb_len = sizeof(SCCB);
|
|
|
|
/* first some basic checks on program checks */
|
|
if (env->psw.mask & PSW_MASK_PSTATE) {
|
|
- r = -PGM_PRIVILEGED;
|
|
- goto out;
|
|
+ return -PGM_PRIVILEGED;
|
|
}
|
|
if (cpu_physical_memory_is_io(sccb)) {
|
|
- r = -PGM_ADDRESSING;
|
|
- goto out;
|
|
+ return -PGM_ADDRESSING;
|
|
}
|
|
if ((sccb & ~0x1fffUL) == 0 || (sccb & ~0x1fffUL) == env->psa
|
|
|| (sccb & ~0x7ffffff8UL) != 0) {
|
|
- r = -PGM_SPECIFICATION;
|
|
- goto out;
|
|
+ return -PGM_SPECIFICATION;
|
|
}
|
|
|
|
/*
|
|
@@ -270,8 +266,7 @@ int sclp_service_call(CPUS390XState *env, uint64_t sccb, uint32_t code)
|
|
|
|
/* Valid sccb sizes */
|
|
if (be16_to_cpu(work_sccb.h.length) < sizeof(SCCBHeader)) {
|
|
- r = -PGM_SPECIFICATION;
|
|
- goto out;
|
|
+ return -PGM_SPECIFICATION;
|
|
}
|
|
|
|
if (!sclp_command_code_valid(code)) {
|
|
@@ -291,8 +286,7 @@ out_write:
|
|
|
|
sclp_c->service_interrupt(sclp, sccb);
|
|
|
|
-out:
|
|
- return r;
|
|
+ return 0;
|
|
}
|
|
|
|
static void service_interrupt(SCLPDevice *sclp, uint32_t sccb)
|
|
--
|
|
2.27.0
|
|
|