Changeset 7796 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
- Timestamp:
- Apr 8, 2008 12:21:48 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r7794 r7796 272 272 if (VBOX_SUCCESS(rc)) 273 273 { 274 unsigned iPTESrc = ((RTGCUINTPTR)pvFault >> PAGE_SHIFT) & GST_PT_MASK;274 unsigned iPTESrc = ((RTGCUINTPTR)pvFault >> GST_PT_SHIFT) & GST_PT_MASK; 275 275 if (pPTSrc->a[iPTESrc].n.u1Present) 276 276 GCPhys = pPTSrc->a[iPTESrc].u & GST_PTE_PG_MASK; … … 1674 1674 if (VBOX_SUCCESS(rc)) 1675 1675 { 1676 PGSTPTE pPteSrc = &pPTSrc->a[(GCPtrPage >> PAGE_SHIFT) & GST_PT_MASK];1676 PGSTPTE pPteSrc = &pPTSrc->a[(GCPtrPage >> GST_PT_SHIFT) & GST_PT_MASK]; 1677 1677 const GSTPTE PteSrc = *pPteSrc; 1678 1678 if (pPteSrc->n.u1Present) … … 1721 1721 if (VBOX_SUCCESS(rc)) 1722 1722 { 1723 PGSTPTE pPteSrc = &pPTSrc->a[(GCPtrPage >> PAGE_SHIFT) & GST_PT_MASK];1723 PGSTPTE pPteSrc = &pPTSrc->a[(GCPtrPage >> GST_PT_SHIFT) & GST_PT_MASK]; 1724 1724 const GSTPTE PteSrc = *pPteSrc; 1725 1725 if (pPteSrc->n.u1Present) … … 1778 1778 * Real page fault? 1779 1779 */ 1780 PGSTPTE pPteSrc = &pPTSrc->a[(GCPtrPage >> PAGE_SHIFT) & GST_PT_MASK];1780 PGSTPTE pPteSrc = &pPTSrc->a[(GCPtrPage >> GST_PT_SHIFT) & GST_PT_MASK]; 1781 1781 const GSTPTE PteSrc = *pPteSrc; 1782 1782 if ( !PteSrc.n.u1Present
Note:
See TracChangeset
for help on using the changeset viewer.