Changeset 99775 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- May 12, 2023 12:21:58 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 157370
- Location:
- trunk/src/VBox/Devices/Storage
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r99739 r99775 3438 3438 * @todo Generate better SAS addresses. (Request a block from SUN probably) 3439 3439 */ 3440 voidlsilogicSASAddressGenerate(PSASADDRESS pSASAddress, unsigned iId)3440 DECLINLINE(void) lsilogicSASAddressGenerate(PSASADDRESS pSASAddress, unsigned iId) 3441 3441 { 3442 3442 pSASAddress->u8Address[0] = (0x5 << 5); -
trunk/src/VBox/Devices/Storage/DrvRamDisk.cpp
r99739 r99775 725 725 * @param rc Status code to check. 726 726 */ 727 bool drvramdiskMediaExIoReqIsRedoSetWarning(PDRVRAMDISK pThis, int rc)727 static bool drvramdiskMediaExIoReqIsRedoSetWarning(PDRVRAMDISK pThis, int rc) 728 728 { 729 729 if (rc == VERR_NO_MEMORY) -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r99739 r99775 2331 2331 * @param rc Status code to check. 2332 2332 */ 2333 bool drvvdMediaExIoReqIsRedoSetWarning(PVBOXDISK pThis, int rc)2333 static bool drvvdMediaExIoReqIsRedoSetWarning(PVBOXDISK pThis, int rc) 2334 2334 { 2335 2335 if (rc == VERR_DISK_FULL)
Note:
See TracChangeset
for help on using the changeset viewer.