Changeset 81301 in vbox
- Timestamp:
- Oct 17, 2019 6:04:59 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp
r81300 r81301 561 561 uint8_t uStatus; /**< SCSI status code */ 562 562 } VIRTIOSCSIREQ; 563 564 DECLINLINE(bool) isBufZero(uint8_t *pv, uint32_t cb)565 {566 for (uint32_t i = 0; i < cb; i++)567 if (pv[i])568 return false;569 return true;570 }571 563 572 564 DECLINLINE(const char *) virtioGetTxDirText(uint32_t enmTxDir)
Note:
See TracChangeset
for help on using the changeset viewer.