Changeset 104843 in vbox for trunk/src/VBox
- Timestamp:
- Jun 5, 2024 1:09:28 AM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r104840 r104843 1813 1813 * Initialize the range. 1814 1814 */ 1815 Assert(pNew->cb == GCPhysLast - GCPhys + 1U); 1815 Assert(pNew->cb == GCPhysLast - GCPhys + 1U); RT_NOREF(GCPhysLast); 1816 1816 pNew->pszDesc = pszDesc; 1817 1817 pNew->uNemRange = UINT32_MAX; … … 3688 3688 for (uint32_t iChunk = 0, idx = idxFirst; iChunk < cChunks; iChunk++, idx++) 3689 3689 { 3690 PPGMREGMMIO2RANGE const pMmio2 = &pVM->pgm.s.aMmio2Ranges[idx]; 3691 PPGMRAMRANGE const pRamRange = pVM->pgm.s.apMmio2RamRanges[idx]; 3692 Assert(pMmio2->GCPhys == pRamRange->GCPhys); 3690 PPGMRAMRANGE const pRamRange = pVM->pgm.s.apMmio2RamRanges[idx]; 3691 Assert(pVM->pgm.s.aMmio2Ranges[idx].GCPhys == pRamRange->GCPhys); 3693 3692 3694 3693 rc = NEMR3NotifyPhysMmioExMapLate(pVM, pRamRange->GCPhys, pRamRange->cb, fNemFlags, NULL /*pvRam*/,
Note:
See TracChangeset
for help on using the changeset viewer.