Changeset 57006 in vbox for trunk/src/VBox/Devices/Network/DevPCNet.cpp
- Timestamp:
- Jul 19, 2015 1:36:21 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r56292 r57006 3948 3948 */ 3949 3949 pHlp->pfnPrintf(pHlp, 3950 "pcnet #%d: port=%RTiop mmio=%RX32 mac-cfg=%RTmac %s \n",3950 "pcnet #%d: port=%RTiop mmio=%RX32 mac-cfg=%RTmac %s%s%s\n", 3951 3951 pDevIns->iInstance, 3952 3952 pThis->IOPortBase, pThis->MMIOBase, &pThis->MacConfigured, 3953 pThis->fAm79C973 ? "Am79C973" : "Am79C970A", pThis->fGCEnabled ? " GC" : "", pThis->fR0Enabled ? " R0" : "");3953 pThis->fAm79C973 ? "Am79C973" : "Am79C970A", pThis->fGCEnabled ? " RC" : "", pThis->fR0Enabled ? " R0" : ""); 3954 3954 3955 3955 PDMCritSectEnter(&pThis->CritSect, VERR_INTERNAL_ERROR); /* Take it here so we know why we're hanging... */ … … 4118 4118 "BUFF=%d UFLO=%d EXDEF=%d LCOL=%d LCAR=%d RTRY=%d TDR=%03x TRC=%#x ONES=%#x\n" 4119 4119 , 4120 i, GCPhys, i + 1 == CSR_XMTRC(pThis) ? '*' : ' ', GCPhys == CSR_CXDA(pThis) ? '*' : ' ', 4121 tmd.tmd0.tbadr, 4096 - tmd.tmd1.bcnt, 4122 tmd.tmd2.tdr, 4123 tmd.tmd2.trc, 4120 i, 4121 GCPhys, 4122 i + 1 == CSR_XMTRC(pThis) ? '*' : ' ', 4123 GCPhys == CSR_CXDA(pThis) ? '*' : ' ', 4124 tmd.tmd0.tbadr, 4125 4096 - tmd.tmd1.bcnt, 4124 4126 tmd.tmd1.own, 4125 4127 tmd.tmd1.err, … … 5153 5155 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->aStatXmitChainCounts[i], STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, "", "/Devices/PCNet%d/XmitChainCounts/%d+", iInstance, i + 1); 5154 5156 5155 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatXmitSkipCurrent, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "", "/Devices/PCNet%d/Xmit/Skipped", iInstance , i + 1);5157 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatXmitSkipCurrent, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, "", "/Devices/PCNet%d/Xmit/Skipped", iInstance); 5156 5158 5157 5159 PDMDevHlpSTAMRegisterF(pDevIns, &pThis->StatInterrupt, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, "Profiling interrupt checks", "/Devices/PCNet%d/UpdateIRQ", iInstance);
Note:
See TracChangeset
for help on using the changeset viewer.