Changeset 82091 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 21, 2019 11:56:21 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134898
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r81705 r82091 2888 2888 * Link it into the list (order doesn't matter, so insert it at the head). 2889 2889 * 2890 * Note! The range we're link may consist of multiple chunks, so we have to2891 * find the last one.2890 * Note! The range we're linking may consist of multiple chunks, so we 2891 * have to find the last one. 2892 2892 */ 2893 2893 PPGMREGMMIO2RANGE pLast = pNew; … … 2901 2901 Assert(pLast->pNextR3->iRegion == pNew->iRegion); 2902 2902 Assert((pLast->pNextR3->fFlags & PGMREGMMIO2RANGE_F_MMIO2) == (pNew->fFlags & PGMREGMMIO2RANGE_F_MMIO2)); 2903 Assert(pLast->pNextR3->idMmio2 == (pLast->fFlags & PGMREGMMIO2RANGE_F_MMIO2 ? p New->idMmio2 + 1 : UINT8_MAX));2903 Assert(pLast->pNextR3->idMmio2 == (pLast->fFlags & PGMREGMMIO2RANGE_F_MMIO2 ? pLast->idMmio2 + 1 : UINT8_MAX)); 2904 2904 } 2905 2905 … … 2924 2924 break; 2925 2925 pNew = pNew->pNextR3; 2926 idMmio2++; 2926 2927 } 2927 2928 }
Note:
See TracChangeset
for help on using the changeset viewer.