diff options
author | Yi Min Zhao <zyimin@linux.vnet.ibm.com> | 2016-04-19 15:03:13 +0800 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-07-11 09:48:05 +0200 |
commit | 5d1abf234462d13bef3617cc2c55b6815703ddf2 (patch) | |
tree | a8cd1e8033e3fbf840829a1ecc4dab6c0c06a78d /include | |
parent | 06a96dae11a70f3c519a706639e200a635a2cc55 (diff) | |
download | qemu-5d1abf234462d13bef3617cc2c55b6815703ddf2.zip qemu-5d1abf234462d13bef3617cc2c55b6815703ddf2.tar.gz qemu-5d1abf234462d13bef3617cc2c55b6815703ddf2.tar.bz2 |
s390x/pci: enforce zPCI state checking
Current code uses some fields combinatorially to indicate the state of
a s390 pci device. This patch introduces device states in order to make
the code more readable and more logical.
Signed-off-by: Yi Min Zhao <zyimin@linux.vnet.ibm.com>
Reviewed-by: Pierre Morel <pmorel@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/s390x/sclp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/s390x/sclp.h b/include/hw/s390x/sclp.h index b0c71b5..fbf357d 100644 --- a/include/hw/s390x/sclp.h +++ b/include/hw/s390x/sclp.h @@ -58,6 +58,7 @@ #define SCLP_RC_CONTAINED_EQUIPMENT_CHECK 0x0340 #define SCLP_RC_INSUFFICIENT_SCCB_LENGTH 0x0300 #define SCLP_RC_STANDBY_READ_COMPLETION 0x0410 +#define SCLP_RC_ADAPTER_IN_RESERVED_STATE 0x05f0 #define SCLP_RC_ADAPTER_ID_NOT_RECOGNIZED 0x09f0 #define SCLP_RC_INVALID_FUNCTION 0x40f0 #define SCLP_RC_NO_EVENT_BUFFERS_STORED 0x60f0 |