From: Jan Kiszka <[email protected]> The parser my bail out on opcode byte 0-2.
Signed-off-by: Jan Kiszka <[email protected]> --- hypervisor/arch/x86/mmio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/arch/x86/mmio.c b/hypervisor/arch/x86/mmio.c index c1b9f10e8..775ec4b7b 100644 --- a/hypervisor/arch/x86/mmio.c +++ b/hypervisor/arch/x86/mmio.c @@ -219,7 +219,7 @@ error_noinst: error_unsupported: panic_printk("FATAL: unsupported instruction " - "(0x%02x [0x%02x] 0x%02x 0x%02x)\n", + "(0x%02x 0x%02x 0x%02x 0x%02x)\n", op[0].raw, op[1].raw, op[2].raw, op[3].raw); goto error; -- 2.13.6 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
