Changeset 88372 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Apr 6, 2021 6:17:00 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r87773 r88372 1738 1738 return VINF_SUCCESS; 1739 1739 } 1740 if (pContext->rdt > =cRxRingSize)1741 { 1742 Log(("%s e1kUpdateRxDContext: called from %s, will return false because RDT too big (%u > =%u)\n",1740 if (pContext->rdt > cRxRingSize) 1741 { 1742 Log(("%s e1kUpdateRxDContext: called from %s, will return false because RDT too big (%u > %u)\n", 1743 1743 pThis->szPrf, pcszCallee, pContext->rdt, cRxRingSize)); 1744 1744 return VINF_SUCCESS; … … 1747 1747 RT_NOREF(pcszCallee); 1748 1748 #endif /* !DEBUG */ 1749 return pContext->rdh < cRxRingSize && pContext->rdt < cRxRingSize; // && (RCTL & RCTL_EN);1749 return pContext->rdh < cRxRingSize && pContext->rdt <= cRxRingSize; // && (RCTL & RCTL_EN); 1750 1750 } 1751 1751 #endif /* E1K_WITH_RXD_CACHE */
Note:
See TracChangeset
for help on using the changeset viewer.