]> git.proxmox.com Git - mirror_qemu.git/commitdiff
s390x/ioinst: set type and len for SEI response
authorPierre Morel <pmorel@linux.vnet.ibm.com>
Thu, 14 Jan 2016 12:29:53 +0000 (13:29 +0100)
committerCornelia Huck <cornelia.huck@de.ibm.com>
Wed, 27 Jan 2016 14:34:47 +0000 (15:34 +0100)
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>
target-s390x/ioinst.c

index 77f2a1fb96f849433c8f5d7d2c626618bd19bc0b..57c2d8b226d52eebc97acbe3816bd04ab08ad328 100644 (file)
@@ -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);
     }
 }