QEMU uses 0x0000 for KVM, not 0x0001. Doesn't really matter (both are invalid), but now it matches the comment. Signed-off-by: David Hildenbrand <david@xxxxxxxxxx> --- s390x/selftest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s390x/selftest.c b/s390x/selftest.c index ca94158..87eb934 100644 --- a/s390x/selftest.c +++ b/s390x/selftest.c @@ -29,7 +29,7 @@ static void test_fp(void) static void test_pgm_int(void) { expect_pgm_int(); - asm volatile(" .insn e,0x0001"); /* used for SW breakpoints in QEMU */ + asm volatile(" .insn e,0x0000"); /* used for SW breakpoints in QEMU */ check_pgm_int_code(PGM_INT_CODE_OPERATION); expect_pgm_int(); -- 2.9.4