diff options
| author | Pierre Morel <pmorel@linux.vnet.ibm.com> | 2016-01-14 13:29:53 +0100 |
|---|---|---|
| committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-01-27 15:34:47 +0100 |
| commit | f70202be535b5601fd02c725dc1d74f3bfc5039c (patch) | |
| tree | 993a5ce56402926e406c8f9a82215c3cf802b155 | |
| parent | 8b638c43afa8d756d803a0ef6ef42213d612984f (diff) | |
| download | focaccia-qemu-f70202be535b5601fd02c725dc1d74f3bfc5039c.tar.gz focaccia-qemu-f70202be535b5601fd02c725dc1d74f3bfc5039c.zip | |
s390x/ioinst: set type and len for SEI response
If no event information is pending, the return code is set to 0x0005 and the length of the response is set to 8 bytes. Signed-off-by: Pierre Morel <pmorel@linux.vnet.ibm.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: Song Shan Gong <gongss@linux.vnet.ibm.com> Cc: qemu-stable@nongnu.org Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
| -rw-r--r-- | target-s390x/ioinst.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-s390x/ioinst.c b/target-s390x/ioinst.c index 77f2a1fb96..57c2d8b226 100644 --- a/target-s390x/ioinst.c +++ b/target-s390x/ioinst.c @@ -616,7 +616,8 @@ static void ioinst_handle_chsc_sei(ChscReq *req, ChscResp *res) (*res_flags) &= ~0x80; } } else { - res->code = cpu_to_be16(0x0004); + res->code = cpu_to_be16(0x0005); + res->len = cpu_to_be16(CHSC_MIN_RESP_LEN); } } |