Changeset 18992 in vbox for trunk/src/VBox/VMM/PATM
- Timestamp:
- Apr 17, 2009 1:51:56 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46084
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PATM/CSAM.cpp
r18988 r18992 1667 1667 1668 1668 /* Prefetch it in case it's not there yet. */ 1669 rc = PGMPrefetchPage(pV M, pVCpu, GCPtr);1669 rc = PGMPrefetchPage(pVCpu, GCPtr); 1670 1670 AssertRC(rc); 1671 1671 … … 1779 1779 1780 1780 /* Prefetch it in case it's not there yet. */ 1781 rc = PGMPrefetchPage(pV M, pVCpu, pPageAddrGC);1781 rc = PGMPrefetchPage(pVCpu, pPageAddrGC); 1782 1782 AssertRC(rc); 1783 1783 … … 1800 1800 1801 1801 /* Prefetch it in case it's not there yet. */ 1802 rc = PGMPrefetchPage(pV M, pVCpu, pPageAddrGC);1802 rc = PGMPrefetchPage(pVCpu, pPageAddrGC); 1803 1803 AssertRC(rc); 1804 1804 … … 1823 1823 { 1824 1824 /* Prefetch it in case it's not there yet. */ 1825 rc = PGMPrefetchPage(pV M, pVCpu, pPageAddrGC);1825 rc = PGMPrefetchPage(pVCpu, pPageAddrGC); 1826 1826 AssertRC(rc); 1827 1827 /* The page was changed behind our back. It won't be made read-only until the next SyncCR3, so force it here. */
Note:
See TracChangeset
for help on using the changeset viewer.