From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56351) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMakn-0000tE-FJ for qemu-devel@nongnu.org; Fri, 22 Jan 2016 07:23:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aMakj-0001bl-7Z for qemu-devel@nongnu.org; Fri, 22 Jan 2016 07:23:49 -0500 Received: from e06smtp14.uk.ibm.com ([195.75.94.110]:55721) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMaki-0001bZ-Tn for qemu-devel@nongnu.org; Fri, 22 Jan 2016 07:23:45 -0500 Received: from localhost by e06smtp14.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 22 Jan 2016 12:23:43 -0000 From: Cornelia Huck Date: Fri, 22 Jan 2016 13:23:27 +0100 Message-Id: <1453465413-12846-5-git-send-email-cornelia.huck@de.ibm.com> In-Reply-To: <1453465413-12846-1-git-send-email-cornelia.huck@de.ibm.com> References: <1453465413-12846-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PATCH 04/10] s390x/ioinst: set type and len for SEI response List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Pierre Morel , agraf@suse.de, qemu-stable@nongnu.org, borntraeger@de.ibm.com, jfrei@linux.vnet.ibm.com, Cornelia Huck From: Pierre Morel 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 --- target-s390x/ioinst.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/target-s390x/ioinst.c b/target-s390x/ioinst.c index 77f2a1f..57c2d8b 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); } } -- 2.7.0