Changeset 47565 in vbox
- Timestamp:
- Aug 6, 2013 5:17:05 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r47558 r47565 47 47 && pCtx->tr.Attr.n.u4Type != AMD64_SEL_TYPE_SYS_TSS_AVAIL)) 48 48 { 49 Log(("i omInterpretCheckPortIOAccess: Port=%#x cb=%d - TSS type %#x (attr=%#x) has no I/O bitmap -> #GP(0)\n",49 Log(("iemHlpCheckPortIOPermissionBitmap: Port=%#x cb=%d - TSS type %#x (attr=%#x) has no I/O bitmap -> #GP(0)\n", 50 50 u16Port, cbOperand, pCtx->tr.Attr.n.u4Type, pCtx->tr.Attr.u)); 51 51 return iemRaiseGeneralProtectionFault0(pIemCpu); … … 60 60 if (rcStrict != VINF_SUCCESS) 61 61 { 62 Log(("i omInterpretCheckPortIOAccess: Error reading offIoBitmap (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));62 Log(("iemHlpCheckPortIOPermissionBitmap: Error reading offIoBitmap (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict))); 63 63 return rcStrict; 64 64 } … … 74 74 if (offFirstBit + 1 > pCtx->tr.u32Limit) /* the limit is inclusive */ 75 75 { 76 Log(("i omInterpretCheckPortIOAccess: offFirstBit=%#x + 1 is beyond u32Limit=%#x -> #GP(0)\n",76 Log(("iemHlpCheckPortIOPermissionBitmap: offFirstBit=%#x + 1 is beyond u32Limit=%#x -> #GP(0)\n", 77 77 offFirstBit, pCtx->tr.u32Limit)); 78 78 return iemRaiseGeneralProtectionFault0(pIemCpu); … … 89 89 if (rcStrict != VINF_SUCCESS) 90 90 { 91 Log(("i omInterpretCheckPortIOAccess: Error reading I/O bitmap @%#x (%Rrc)\n", offFirstBit, VBOXSTRICTRC_VAL(rcStrict)));91 Log(("iemHlpCheckPortIOPermissionBitmap: Error reading I/O bitmap @%#x (%Rrc)\n", offFirstBit, VBOXSTRICTRC_VAL(rcStrict))); 92 92 return rcStrict; 93 93 } … … 100 100 if (bmBytes & fPortMask) 101 101 { 102 Log(("i omInterpretCheckPortIOAccess: u16Port=%#x LB %u - access denied (bm=%#x mask=%#x) -> #GP(0)\n",102 Log(("iemHlpCheckPortIOPermissionBitmap: u16Port=%#x LB %u - access denied (bm=%#x mask=%#x) -> #GP(0)\n", 103 103 u16Port, cbOperand, bmBytes, fPortMask)); 104 104 return iemRaiseGeneralProtectionFault0(pIemCpu);
Note:
See TracChangeset
for help on using the changeset viewer.