summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Cantrill <bryan@joyent.com>2011-10-19 15:35:11 +0000
committerBryan Cantrill <bryan@joyent.com>2011-10-19 15:35:11 +0000
commit9662c47b72742f8b5f8fcf8c9a440bd43661adf5 (patch)
tree3c4a0dc38d2c2228cce774e1af737558f6498ff2
parent48a386fd9818e010ab0161816bf307d0ac4f4105 (diff)
downloadillumos-kvm-9662c47b72742f8b5f8fcf8c9a440bd43661adf5.tar.gz
HVM-677 emulation failure shouldn't be logged to the console
-rw-r--r--kvm_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvm_x86.c b/kvm_x86.c
index 97f3b7d..b27521e 100644
--- a/kvm_x86.c
+++ b/kvm_x86.c
@@ -2585,7 +2585,7 @@ kvm_report_emulation_failure(struct kvm_vcpu *vcpu, const char *context)
kvm_read_guest_virt(rip_linear, (void *)opcodes, 4, vcpu, NULL);
- cmn_err(CE_WARN, "emulation failed (%s) rip %lx %02x %02x %02x %02x\n",
+ cmn_err(CE_CONT, "!emulation failed (%s) rip %lx %02x %02x %02x %02x\n",
context, rip, opcodes[0], opcodes[1], opcodes[2], opcodes[3]);
}