From: Pierre Morel Date: Thu, 14 Jan 2016 12:29:53 +0000 (+0100) Subject: s390x/ioinst: set type and len for SEI response X-Git-Tag: v2.5.1~30 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d98392379ac3ac3e2a7ef2df5b300883beb3fe9e;p=thirdparty%2Fqemu.git 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 Reviewed-by: Cornelia Huck Reviewed-by: Song Shan Gong Cc: qemu-stable@nongnu.org Signed-off-by: Cornelia Huck (cherry picked from commit f70202be535b5601fd02c725dc1d74f3bfc5039c) Signed-off-by: Michael Roth --- diff --git a/target-s390x/ioinst.c b/target-s390x/ioinst.c index 77f2a1fb96f..57c2d8b226d 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); } }