diff options
author | Alexander Yarygin <yarygin@linux.vnet.ibm.com> | 2015-10-01 20:21:33 +0300 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-05-17 15:50:29 +0200 |
commit | 3041e3bead8df443e5212ae8a608cbec81bc90bd (patch) | |
tree | e59c1dab9d79d4ba872c888115613516b4e56b87 /hw/s390x/ipl.h | |
parent | 6aed958978ba9e32301b131e1c5dcadcf952a1ed (diff) |
s390x/ipl: Add ssid field to IplParameterBlock
Add the ssid field to the ipl parameter block struct and fill it when
necessary so the guest can use it.
Signed-off-by: Alexander Yarygin <yarygin@linux.vnet.ibm.com>
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x/ipl.h')
-rw-r--r-- | hw/s390x/ipl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/s390x/ipl.h b/hw/s390x/ipl.h index 0b7f6cbecb..9aa4d942a7 100644 --- a/hw/s390x/ipl.h +++ b/hw/s390x/ipl.h @@ -16,7 +16,8 @@ #include "cpu.h" struct IplBlockCcw { - uint8_t reserved0[86]; + uint8_t reserved0[85]; + uint8_t ssid; uint16_t devno; uint8_t vm_flags; uint8_t reserved3[3]; |