Changeset 19794 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 18, 2009 3:06:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r19792 r19794 820 820 * @returns false if we consider it to still be a paging page. 821 821 * @param pVM VM Handle. 822 * @param pPage The page in question.823 822 * @param pRegFrame Trap register frame. 824 823 * @param pCpu The disassembly info for the faulting instruction. … … 827 826 * @remark The REP prefix check is left to the caller because of STOSD/W. 828 827 */ 829 DECLINLINE(bool) pgmPoolMonitorIsReused(PVM pVM, P PGMPOOLPAGE pPage, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, RTGCPTR pvFault)828 DECLINLINE(bool) pgmPoolMonitorIsReused(PVM pVM, PCPUMCTXCORE pRegFrame, PDISCPUSTATE pCpu, RTGCPTR pvFault) 830 829 { 831 830 #ifndef IN_RC … … 886 885 } 887 886 888 //if (pPage->fCR3Mix)889 // return false;890 887 return false; 891 888 } … … 1127 1124 || pgmPoolIsPageLocked(&pVM->pgm.s, pPage) 1128 1125 ) 1129 && !(fReused = pgmPoolMonitorIsReused(pVM, p Page, pRegFrame, &Cpu, pvFault))1126 && !(fReused = pgmPoolMonitorIsReused(pVM, pRegFrame, &Cpu, pvFault)) 1130 1127 && !pgmPoolMonitorIsForking(pPool, &Cpu, GCPhysFault & PAGE_OFFSET_MASK)) 1131 1128 {
Note:
See TracChangeset
for help on using the changeset viewer.