Changeset 49844 in vbox
- Timestamp:
- Dec 9, 2013 2:27:00 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91188
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r49493 r49844 2545 2545 E1kLog(("%s Link is down\n", pThis->szPrf)); 2546 2546 STATUS &= ~STATUS_LU; 2547 Phy::setLinkStatus(&pThis->phy, false);2548 2547 e1kRaiseInterrupt(pThis, VERR_SEM_BUSY, ICR_LSC); 2549 2548 if (pThis->pDrvR3) … … 6490 6489 case PDMNETWORKLINKSTATE_DOWN: 6491 6490 pThis->fCableConnected = false; 6491 /* Always set the phy link state to down, regardless of the STATUS_LU bit. 6492 * We might have to set the link state before the driver initializes us. */ 6493 Phy::setLinkStatus(&pThis->phy, false); 6492 6494 /* If link was up, bring it down. */ 6493 6495 if (STATUS & STATUS_LU)
Note:
See TracChangeset
for help on using the changeset viewer.