Changeset 3956 in vbox
- Timestamp:
- Aug 1, 2007 11:13:19 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23374
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r3696 r3956 1125 1125 { 1126 1126 /* 1127 * Always flag the necessary updates; necessary for hardware acceleration 1128 */ 1129 VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3_NON_GLOBAL); 1130 if (fGlobal) 1131 VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3); 1132 1133 /* 1127 1134 * When in real or protected mode there is no TLB flushing, but 1128 1135 * we may still be called because of REM not caring/knowing this. … … 1133 1140 LogFlow(("PGMFlushTLB: cr3=%#x OldCr3=%#x fGlobal=%d\n", cr3, pVM->pgm.s.GCPhysCR3, fGlobal)); 1134 1141 STAM_PROFILE_START(&pVM->pgm.s.StatFlushTLB, a); 1135 1136 /*1137 * Flag the necessary updates.1138 */1139 VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3_NON_GLOBAL);1140 if (fGlobal)1141 VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3);1142 1142 1143 1143 /*
Note:
See TracChangeset
for help on using the changeset viewer.