VirtualBox

Changeset 47565 in vbox


Ignore:
Timestamp:
Aug 6, 2013 5:17:05 PM (11 years ago)
Author:
vboxsync
Message:

logging corrections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h

    r47558 r47565  
    4747                    && pCtx->tr.Attr.n.u4Type != AMD64_SEL_TYPE_SYS_TSS_AVAIL))
    4848    {
    49         Log(("iomInterpretCheckPortIOAccess: 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",
    5050             u16Port, cbOperand, pCtx->tr.Attr.n.u4Type, pCtx->tr.Attr.u));
    5151        return iemRaiseGeneralProtectionFault0(pIemCpu);
     
    6060    if (rcStrict != VINF_SUCCESS)
    6161    {
    62         Log(("iomInterpretCheckPortIOAccess: Error reading offIoBitmap (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
     62        Log(("iemHlpCheckPortIOPermissionBitmap: Error reading offIoBitmap (%Rrc)\n", VBOXSTRICTRC_VAL(rcStrict)));
    6363        return rcStrict;
    6464    }
     
    7474    if (offFirstBit + 1 > pCtx->tr.u32Limit) /* the limit is inclusive */
    7575    {
    76         Log(("iomInterpretCheckPortIOAccess: offFirstBit=%#x + 1 is beyond u32Limit=%#x -> #GP(0)\n",
     76        Log(("iemHlpCheckPortIOPermissionBitmap: offFirstBit=%#x + 1 is beyond u32Limit=%#x -> #GP(0)\n",
    7777             offFirstBit, pCtx->tr.u32Limit));
    7878        return iemRaiseGeneralProtectionFault0(pIemCpu);
     
    8989    if (rcStrict != VINF_SUCCESS)
    9090    {
    91         Log(("iomInterpretCheckPortIOAccess: 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)));
    9292        return rcStrict;
    9393    }
     
    100100    if (bmBytes & fPortMask)
    101101    {
    102         Log(("iomInterpretCheckPortIOAccess: 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",
    103103             u16Port, cbOperand, bmBytes, fPortMask));
    104104        return iemRaiseGeneralProtectionFault0(pIemCpu);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette