VirtualBox

Ignore:
Timestamp:
Jul 30, 2020 9:07:13 AM (4 years ago)
Author:
vboxsync
Message:

SUP: Logging adjustment in supLoadModuleCompileSegmentsCB. bugref:9801

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp

    r85543 r85546  
    359359    RT_NOREF(hLdrMod);
    360360
     361    Log2(("supLoadModuleCompileSegmentsCB: %RTptr/%RTptr LB %RTptr/%RTptr prot %#x %s\n",
     362          pSeg->LinkAddress, pSeg->RVA, pSeg->cbMapped, pSeg->cb, pSeg->fProt, pSeg->pszName));
     363
    361364    /* Ignore segments not part of the loaded image. */
    362365    if (pSeg->RVA == NIL_RTLDRADDR || pSeg->cbMapped == 0)
     366    {
     367        Log2(("supLoadModuleCompileSegmentsCB: -> skipped\n"));
    363368        return VINF_SUCCESS;
     369    }
    364370
    365371    /* We currently ASSUME that all relevant segments are in ascending RVA order. */
     
    374380    AssertReturn(pSeg->RVA      < _1G, VERR_INTERNAL_ERROR_3);
    375381    uint32_t uRvaSeg  = (uint32_t)pSeg->RVA;
    376     Log2(("supLoadModuleCompileSegmentsCB: %RTptr/%RTptr LB %RTptr/%RTptr prot %#x %s\n",
    377           pSeg->LinkAddress, pSeg->RVA, pSeg->cbMapped, pSeg->cb, pSeg->fProt, pSeg->pszName));
    378382
    379383    /*
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