Changeset 30768 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jul 9, 2010 3:32:12 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63558
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r30590 r30768 1582 1582 | X86_CR0_PG /* Must monitor this bit (assumptions are made for real mode & protected mode without paging emulation) */ 1583 1583 | X86_CR0_CD /* Bit not restored during VM-exit! */ 1584 | X86_CR0_NW; /* Bit not restored during VM-exit! */ 1584 | X86_CR0_NW /* Bit not restored during VM-exit! */ 1585 | X86_CR0_NE; 1585 1586 1586 1587 /* When the guest's FPU state is active, then we no longer care about … … 1588 1589 */ 1589 1590 if (CPUMIsGuestFPUStateActive(pVCpu) == false) 1590 val |= X86_CR0_TS | X86_CR0_ET | X86_CR0_ NE | X86_CR0_MP;1591 val |= X86_CR0_TS | X86_CR0_ET | X86_CR0_MP; 1591 1592 1592 1593 pVCpu->hwaccm.s.vmx.cr0_mask = val;
Note:
See TracChangeset
for help on using the changeset viewer.