Index: /trunk/src/VBox/Devices/Network/DevE1000.cpp
===================================================================
--- /trunk/src/VBox/Devices/Network/DevE1000.cpp	(revision 87768)
+++ /trunk/src/VBox/Devices/Network/DevE1000.cpp	(revision 87769)
@@ -2171,5 +2171,5 @@
  * @param   pThis       The device state structure.
  */
-static int e1kRaiseInterrupt(PPDMDEVINS pDevIns, PE1KSTATE pThis, int rcBusy, uint32_t u32IntCause = 0)
+static int e1kRaiseInterrupt(PPDMDEVINS pDevIns, PE1KSTATE pThis, int rcBusy, uint32_t u32IntCause)
 {
     int rc = e1kCsEnter(pThis, rcBusy);
@@ -3543,5 +3543,5 @@
     e1kCancelTimer(pDevIns, pThis, pThis->hTADTimer);
 #  endif
-    e1kRaiseInterrupt(pDevIns, pThis, ICR_TXDW);
+    e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_TXDW);
 }
 
@@ -3557,5 +3557,5 @@
     /* Cancel interrupt delay timer as we have already got attention */
     e1kCancelTimer(pDevIns, pThis, pThis->hTIDTimer);
-    e1kRaiseInterrupt(pDevIns, pThis, ICR_TXDW);
+    e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_TXDW);
 }
 
@@ -3574,5 +3574,5 @@
     /* Cancel absolute delay timer as we have already got attention */
     e1kCancelTimer(pDevIns, pThis, pThis->hRADTimer);
-    e1kRaiseInterrupt(pDevIns, pThis, ICR_RXT0);
+    e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_RXT0);
 }
 
@@ -3588,5 +3588,5 @@
     /* Cancel interrupt delay timer as we have already got attention */
     e1kCancelTimer(pDevIns, pThis, pThis->hRIDTimer);
-    e1kRaiseInterrupt(pDevIns, pThis, ICR_RXT0);
+    e1kRaiseInterrupt(pDevIns, pThis, VERR_IGNORED, ICR_RXT0);
 }
 
