Changeset 108676 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
- Timestamp:
- Mar 20, 2025 9:29:19 PM (7 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168089
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPhys.cpp
r108132 r108676 52 52 #ifdef IN_RING3 53 53 # include <iprt/thread.h> 54 # ifdef VBOX_WITH_ONLY_PGM_NEM_MODE 55 # include <iprt/zero.h> 56 # endif 54 57 #elif defined(IN_RING0) 55 58 # include <iprt/mem.h> … … 3003 3006 #ifndef VBOX_WITH_ONLY_PGM_NEM_MODE 3004 3007 AssertMsg(PGM_PAGE_GET_HCPHYS(pPage) == pVM->pgm.s.HCPhysZeroPg, ("%RGp/%R[pgmpage]\n", GCPhys, pPage)); 3005 #endif3006 3008 #ifndef IN_RING0 3007 3009 pTlbe->pMap = NULL; 3008 3010 #endif 3009 3011 pTlbe->pv = pVM->pgm.s.abZeroPg; 3012 #else 3013 /* 3014 * Should not ever be used, as we don't implement zero pages for NEM mode currently and 3015 * MMIO accesses are not handled through the TLB. 3016 */ 3017 pTlbe->pv = (void *)&g_abRTZero64K[0]; /* Maximum granule size on ARM. */ 3018 #endif 3010 3019 } 3011 3020 #ifdef PGM_WITH_PHYS_TLB
Note:
See TracChangeset
for help on using the changeset viewer.