Changeset 94800 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 3, 2022 9:49:43 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151193
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
r93925 r94800 24 24 #include <VBox/rawpci.h> 25 25 #include <VBox/vmm/pgm.h> 26 #include <VBox/vmm/iem.h> 26 27 #include <VBox/vmm/gmm.h> 27 28 #include "PGMInternal.h" … … 631 632 * invalidate everything. Add a version to the TLB? */ 632 633 pgmPhysInvalidatePageMapTLB(pGVM); 634 IEMTlbInvalidateAllPhysicalAllCpus(pGVM, idCpu); 633 635 634 636 STAM_PROFILE_STOP(&pGVM->pgm.s.Stats.StatLargePageSetup, a); -
trunk/src/VBox/VMM/VMMR0/PGMR0SharedPage.cpp
r93554 r94800 23 23 #define VBOX_WITHOUT_PAGING_BIT_FIELDS /* 64-bit bitfields are just asking for trouble. See @bugref{9841} and others. */ 24 24 #include <VBox/vmm/pgm.h> 25 #include <VBox/vmm/iem.h> 25 26 #include <VBox/vmm/gmm.h> 26 27 #include "PGMInternal.h" … … 124 125 /* Invalidate page map TLB entry for this page too. */ 125 126 pgmPhysInvalidatePageMapTLBEntry(pVM, PageDesc.GCPhys); 127 IEMTlbInvalidateAllPhysicalAllCpus(pVM, NIL_VMCPUID); 126 128 pVM->pgm.s.cReusedSharedPages++; 127 129 }
Note:
See TracChangeset
for help on using the changeset viewer.