Changeset 66103 in vbox
- Timestamp:
- Mar 15, 2017 9:45:01 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113983
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r66062 r66103 3223 3223 InsertConfigInteger(pCfg, "McfgLength", cbMcfgLength); 3224 3224 /* 64-bit prefetch window root resource: 3225 * Only for ICH9 and if PAE or Long Mode is enabled */ 3226 if (fEnablePAE || fIsGuest64Bit) 3227 InsertConfigInteger(pCfg, "PciPref64Enabled", 1); 3225 * Only for ICH9 and if PAE or Long Mode is enabled. 3226 * And only with hardware virtualization (@bugref:5454). */ 3227 if ( (fEnablePAE || fIsGuest64Bit) 3228 && fSupportsHwVirtEx /* HwVirt needs to be supported by the host 3229 otherwise VMM falls back to raw mode */ 3230 && fHMEnabled /* HwVirt needs to be enabled in VM config */) 3231 InsertConfigInteger(pCfg, "PciPref64Enabled", 1); 3228 3232 } 3229 3233 InsertConfigInteger(pCfg, "HostBusPciAddress", uHbcPCIAddress);
Note:
See TracChangeset
for help on using the changeset viewer.