Changeset 103014 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
- Timestamp:
- Jan 24, 2024 12:58:12 AM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r103005 r103014 5144 5144 /* paranoia, clear the shadow page. Remove this laser (i.e. let Alloc and ClearAll do it). */ 5145 5145 STAM_PROFILE_START(&pPool->StatZeroPage, z); 5146 ASMMemZeroPage(pvShw);5146 RT_BZERO(pvShw, PAGE_SIZE); 5147 5147 STAM_PROFILE_STOP(&pPool->StatZeroPage, z); 5148 5148 pPage->fZeroed = true; … … 5480 5480 STAM_PROFILE_START(&pPool->StatZeroPage, z); 5481 5481 void *pv = PGMPOOL_PAGE_2_PTR(pVM, pPage); 5482 ASMMemZeroPage(pv);5482 RT_BZERO(pv, PAGE_SIZE); 5483 5483 STAM_PROFILE_STOP(&pPool->StatZeroPage, z); 5484 5484 }
Note:
See TracChangeset
for help on using the changeset viewer.