- Timestamp:
- Mar 25, 2011 9:21:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r36439 r36443 512 512 InsertConfigNode(pDevices, "pciraw", &pPciDevs); 513 513 514 PCFGMNODE pRoot = CFGMR3GetParent(pDevices); Assert(pRoot); 515 516 /* Tell PGM to tell GPciRaw about guest mappings. */ 517 CFGMR3InsertNode(pRoot, "PGM", NULL); 518 InsertConfigInteger(CFGMR3GetChild(pRoot, "PGM"), "PciPassThrough", 1); 519 514 520 /* 515 521 * Currently, using IOMMU needed for PCI passthrough 516 522 * requires RAM preallocation. 517 * @todo: check if we can lift this requirement 518 */ 519 PCFGMNODE pRoot = CFGMR3GetParent(pDevices); 520 Assert(pRoot); 523 */ 524 /** @todo: check if we can lift this requirement */ 521 525 CFGMR3RemoveValue(pRoot, "RamPreAlloc"); 522 CFGMR3InsertInteger(pRoot, "RamPreAlloc",1);526 InsertConfigInteger(pRoot, "RamPreAlloc", 1); 523 527 } 524 528
Note:
See TracChangeset
for help on using the changeset viewer.