mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 12:11:48 -04:00
Prior to aborting due to an ioport error, it is always interesting to
see what the guest's %rip is. Reviewed by: grehan
This commit is contained in:
parent
1a688aa53e
commit
3b65fbe4d1
1 changed files with 4 additions and 2 deletions
|
|
@ -325,8 +325,10 @@ vmexit_inout(struct vmctx *ctx, struct vm_exit *vme, int *pvcpu)
|
|||
|
||||
error = emulate_inout(ctx, vcpu, vme, strictio);
|
||||
if (error) {
|
||||
fprintf(stderr, "Unhandled %s%c 0x%04x\n", in ? "in" : "out",
|
||||
bytes == 1 ? 'b' : (bytes == 2 ? 'w' : 'l'), port);
|
||||
fprintf(stderr, "Unhandled %s%c 0x%04x at 0x%lx\n",
|
||||
in ? "in" : "out",
|
||||
bytes == 1 ? 'b' : (bytes == 2 ? 'w' : 'l'),
|
||||
port, vmexit->rip);
|
||||
return (VMEXIT_ABORT);
|
||||
} else {
|
||||
return (VMEXIT_CONTINUE);
|
||||
|
|
|
|||
Loading…
Reference in a new issue