Changeset 26673 in vbox
- Timestamp:
- Feb 22, 2010 9:26:43 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57890
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r26649 r26673 1122 1122 level = 2; 1123 1123 type = 3; 1124 sharing = cores; /* our L2 cache is modelled as shared between all cores */ 1124 sharing = cores; /* our L2 cache is modelled as shared between all cores */ 1125 1125 linesize = 64; 1126 1126 associativity = 24; … … 1721 1721 { 1722 1722 /* PAE or AMD64 implies support for big pages regardless of CR4.PSE */ 1723 if (pVCpu->cpum.s.Guest.cr4 & X86_CR4_PAE) 1724 return true; 1725 1726 return !!(pVCpu->cpum.s.Guest.cr4 & X86_CR4_PSE); 1723 return !!(pVCpu->cpum.s.Guest.cr4 & (X86_CR4_PSE | X86_CR4_PAE)); 1727 1724 } 1728 1725
Note:
See TracChangeset
for help on using the changeset viewer.