[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-stable] [PULL 04/10] s390x/ioinst: set type and len for SEI respon
From: |
Cornelia Huck |
Subject: |
[Qemu-stable] [PULL 04/10] s390x/ioinst: set type and len for SEI response |
Date: |
Thu, 28 Jan 2016 12:09:05 +0100 |
From: Pierre Morel <address@hidden>
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 <address@hidden>
Reviewed-by: Cornelia Huck <address@hidden>
Reviewed-by: Song Shan Gong <address@hidden>
Cc: address@hidden
Signed-off-by: Cornelia Huck <address@hidden>
---
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-stable] [PULL 04/10] s390x/ioinst: set type and len for SEI response,
Cornelia Huck <=