Changeset 87769 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Feb 16, 2021 5:44:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r87767 r87769 2171 2171 * @param pThis The device state structure. 2172 2172 */ 2173 static int e1kRaiseInterrupt(PPDMDEVINS pDevIns, PE1KSTATE pThis, int rcBusy, uint32_t u32IntCause = 0)2173 static int e1kRaiseInterrupt(PPDMDEVINS pDevIns, PE1KSTATE pThis, int rcBusy, uint32_t u32IntCause) 2174 2174 { 2175 2175 int rc = e1kCsEnter(pThis, rcBusy); … … 3543 3543 e1kCancelTimer(pDevIns, pThis, pThis->hTADTimer); 3544 3544 # endif 3545 e1kRaiseInterrupt(pDevIns, pThis, ICR_TXDW);3545 e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_TXDW); 3546 3546 } 3547 3547 … … 3557 3557 /* Cancel interrupt delay timer as we have already got attention */ 3558 3558 e1kCancelTimer(pDevIns, pThis, pThis->hTIDTimer); 3559 e1kRaiseInterrupt(pDevIns, pThis, ICR_TXDW);3559 e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_TXDW); 3560 3560 } 3561 3561 … … 3574 3574 /* Cancel absolute delay timer as we have already got attention */ 3575 3575 e1kCancelTimer(pDevIns, pThis, pThis->hRADTimer); 3576 e1kRaiseInterrupt(pDevIns, pThis, ICR_RXT0);3576 e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_RXT0); 3577 3577 } 3578 3578 … … 3588 3588 /* Cancel interrupt delay timer as we have already got attention */ 3589 3589 e1kCancelTimer(pDevIns, pThis, pThis->hRIDTimer); 3590 e1kRaiseInterrupt(pDevIns, pThis, ICR_RXT0);3590 e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_RXT0); 3591 3591 } 3592 3592
Note:
See TracChangeset
for help on using the changeset viewer.