From: kfraser@localhost.localdomain Date: Mon, 14 Aug 2006 10:18:37 +0000 (+0100) Subject: [HVM] More info when failing to emulate instruction group 1. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15710^2~131 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f49361ae788ef224a79ee2cfbe279279b067bd0e;p=xen.git [HVM] More info when failing to emulate instruction group 1. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/hvm/platform.c b/xen/arch/x86/hvm/platform.c index 2ee9fd9683..f1bfd4c479 100644 --- a/xen/arch/x86/hvm/platform.c +++ b/xen/arch/x86/hvm/platform.c @@ -462,7 +462,8 @@ static int hvm_decode(int realmode, unsigned char *opcode, struct instruction *i return DECODE_success; default: - printf("%x, This opcode isn't handled yet!\n", *opcode); + printf("%x/%x, This opcode isn't handled yet!\n", + *opcode, ins_subtype); return DECODE_failure; } }