Changeset 88621 in vbox for trunk/src/VBox
- Timestamp:
- Apr 21, 2021 3:19:56 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuAmd.cpp
r88620 r88621 697 697 * Global Variables * 698 698 *********************************************************************************************************************************/ 699 #if defined(IN_RING3) || defined(LOG_ENABLED) 700 /** 701 * The IOMMU I/O permission names. 702 */ 703 static const char * const g_aszPerm[] = { "none", "read", "write", "read+write" }; 704 699 705 /** 700 706 * An array of the number of device table segments supported. … … 702 708 */ 703 709 static uint8_t const g_acDevTabSegs[] = { 0, 2, 4, 8 }; 710 #endif 704 711 705 712 /** … … 719 726 */ 720 727 static uint16_t const g_auDevTabSegMaxSizes[] = { 0x1ff, 0xff, 0x7f, 0x7f, 0x3f, 0x3f, 0x3f, 0x3f }; 721 722 /**723 * The IOMMU I/O permission names.724 */725 static const char * const g_aszPerm[] = { "none", "read", "write", "read+write" };726 728 727 729
Note:
See TracChangeset
for help on using the changeset viewer.