Changeset 33707 in vbox
- Timestamp:
- Nov 2, 2010 6:44:21 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67333
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r33690 r33707 535 535 uint32_t cbRamHole = MM_RAM_HOLE_SIZE_DEFAULT; 536 536 uint64_t u64McfgBase = 0; 537 uint 64_t u64McfgLength = 0;537 uint32_t u32McfgLength = 0; 538 538 539 539 ChipsetType_T chipsetType; … … 543 543 /* We'd better have 0x10000000 region, to cover 256 buses 544 544 but this put too much load on hypervisor heap */ 545 u 64McfgLength = 0x4000000; //0x10000000;546 cbRamHole += u 64McfgLength;545 u32McfgLength = 0x4000000; //0x10000000; 546 cbRamHole += u32McfgLength; 547 547 u64McfgBase = _4G - cbRamHole; 548 548 } … … 875 875 /* Provide MCFG info */ 876 876 InsertConfigInteger(pCfg, "McfgBase", u64McfgBase); 877 InsertConfigInteger(pCfg, "McfgLength", u 64McfgLength);877 InsertConfigInteger(pCfg, "McfgLength", u32McfgLength); 878 878 879 879 … … 2322 2322 { 2323 2323 InsertConfigInteger(pCfg, "McfgBase", u64McfgBase); 2324 InsertConfigInteger(pCfg, "McfgLength", u 64McfgLength);2324 InsertConfigInteger(pCfg, "McfgLength", u32McfgLength); 2325 2325 } 2326 2326 InsertConfigInteger(pCfg, "HostBusPciAddress", u32HbcPciAddress);
Note:
See TracChangeset
for help on using the changeset viewer.