- Timestamp:
- Dec 1, 2008 5:51:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PGMR0DynMap.cpp
r14877 r14880 857 857 PGMR0DYNMAPPGLVL PgLvl; 858 858 pgmR0DynMapPagingArrayInit(pThis, &PgLvl); 859 uint32_t const iEndPage = p This->cPages+ cPages;860 for (uint32_t iPage = p This->cPages;859 uint32_t const iEndPage = pSeg->iPage + cPages; 860 for (uint32_t iPage = pSeg->iPage; 861 861 iPage < iEndPage; 862 862 iPage++, pbPage += PAGE_SIZE) … … 911 911 * (Note: TLBs will be shot down later on.) 912 912 */ 913 uint32_t iPage = p This->cPages;913 uint32_t iPage = pSeg->iPage; 914 914 while (iPage < iEndPage) 915 915 {
Note:
See TracChangeset
for help on using the changeset viewer.