qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] target-s390x: Mask the SIGP order_code to 8bit.
@ 2017-04-23 22:32 Aurelien Jarno
  2017-04-24  8:25 ` Alexander Graf
  0 siblings, 1 reply; 9+ messages in thread
From: Aurelien Jarno @ 2017-04-23 22:32 UTC (permalink / raw)
  To: qemu-devel
  Cc: Alexander Graf, Richard Henderson, Philipp Kern, Aurelien Jarno

From: Philipp Kern <phil@philkern.de>

According to "CPU Signaling and Response", "Signal-Processor Orders",
the order field is bit position 56-63. Without this, the Linux
guest kernel is sometimes unable to stop emulation and enters
an infinite loop of "XXX unknown sigp: 0xffffffff00000005".

Signed-off-by: Philipp Kern <phil@philkern.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
---
 target/s390x/misc_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

This patch has been sent by Philipp Kern a lot of time ago, and it seems
has been lost. I am resending it, as it is still useful.

diff --git a/target/s390x/misc_helper.c b/target/s390x/misc_helper.c
index 3bf09ea222..4946b56ab3 100644
--- a/target/s390x/misc_helper.c
+++ b/target/s390x/misc_helper.c
@@ -534,7 +534,7 @@ uint32_t HELPER(sigp)(CPUS390XState *env, uint64_t order_code, uint32_t r1,
     /* Remember: Use "R1 or R1 + 1, whichever is the odd-numbered register"
        as parameter (input). Status (output) is always R1. */
 
-    switch (order_code) {
+    switch (order_code & 0xff) {
     case SIGP_SET_ARCH:
         /* switch arch */
         break;
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2017-04-25 11:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1439897731-3645-1-git-send-email-phil@philkern.de>
2015-08-18 11:50 ` [Qemu-devel] [PATCH] target-s390x: Mask the SIGP order_code to 8bit Philipp Kern
2015-08-20 17:16   ` Thomas Huth
2015-08-26  9:18     ` Alexander Graf
2016-05-29 14:10       ` Philipp Kern
2017-04-23 22:32 Aurelien Jarno
2017-04-24  8:25 ` Alexander Graf
2017-04-25  9:51   ` Richard Henderson
2017-04-25 11:21     ` Philipp Kern
2017-04-25 11:32       ` Alexander Graf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).