diff options
author | Bryan Cantrill <bryan@joyent.com> | 2011-10-19 15:35:11 +0000 |
---|---|---|
committer | Bryan Cantrill <bryan@joyent.com> | 2011-10-19 15:35:11 +0000 |
commit | 9662c47b72742f8b5f8fcf8c9a440bd43661adf5 (patch) | |
tree | 3c4a0dc38d2c2228cce774e1af737558f6498ff2 | |
parent | 48a386fd9818e010ab0161816bf307d0ac4f4105 (diff) | |
download | illumos-kvm-9662c47b72742f8b5f8fcf8c9a440bd43661adf5.tar.gz |
HVM-677 emulation failure shouldn't be logged to the console
-rw-r--r-- | kvm_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]); } |