- Timestamp:
- May 20, 2020 6:27:41 AM (5 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevVirtioNet_1_0.cpp
r84389 r84390 1863 1863 1864 1864 if (pThisCC->pDrv && fPromiscChanged) 1865 pThisCC->pDrv->pfnSetPromiscuousMode(pThisCC->pDrv, pThis->fPromiscuous | pThis->fAllMulticast); 1865 if (pThis->fPromiscuous | pThis->fAllMulticast) 1866 pThisCC->pDrv->pfnSetPromiscuousMode(pThisCC->pDrv, true); 1867 else 1868 pThisCC->pDrv->pfnSetPromiscuousMode(pThisCC->pDrv, false); 1866 1869 1867 1870 return VIRTIONET_OK; -
trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp
r84389 r84390 881 881 */ 882 882 static int virtioScsiR3ReqErr4(PPDMDEVINS pDevIns, PVIRTIOSCSI pThis, PVIRTIOSCSICC pThisCC, uint16_t qIdx, 883 PVIRTIO_DESC_CHAIN_T pDescChain, uint32_t cbResidual, uint8_t bStatus, uint8_t bResponse,883 PVIRTIO_DESC_CHAIN_T pDescChain, size_t cbResidual, uint8_t bStatus, uint8_t bResponse, 884 884 uint8_t *pbSense, size_t cbSense, size_t cbSenseCfg) 885 885 { … … 1195 1195 * vague and confusing part of the VirtIO spec (which deviates from the SCSI standard). 1196 1196 * I have not been able to determine how to implement this properly. I've checked the 1197 * source code of Guest drivers, so far, and none I've founduse it. If logs show1198 * this warning implementing it can be re-visited */1197 * source code of Guest drivers, and so far none seem to use it. If logs show 1198 * this warning, implementing it can be re-visited */ 1199 1199 uScsiLun = 0xff; 1200 1200 }
Note:
See TracChangeset
for help on using the changeset viewer.