Changeset 88417 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 8, 2021 1:34:35 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuIntel.cpp
r88416 r88417 456 456 * @param uSagaw The CAP_REG.SAGAW value. 457 457 */ 458 DECLINLINE(uint8_t)vtdGetSupGstAddrBits(uint8_t uSagaw)458 static uint8_t vtdGetSupGstAddrBits(uint8_t uSagaw) 459 459 { 460 460 if (uSagaw > 0 && uSagaw < 4) 461 return uSagaw + 2;461 return 30 + (uSagaw * 9); 462 462 return 0; 463 463 }
Note:
See TracChangeset
for help on using the changeset viewer.