Changeset 32539 in vbox
- Timestamp:
- Sep 16, 2010 8:08:24 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65921
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r32521 r32539 1933 1933 iPTDst -= PGM_SYNC_NR_PAGES / 2; 1934 1934 1935 /* Paranoia: the faulting page can't be present. We assume that below. */1936 Assert(!SHW_PTE_IS_P(pPTDst->a[iPTDstPage]));1937 1938 1935 for (; iPTDst < iPTDstEnd; iPTDst++) 1939 1936 { 1940 1937 const PGSTPTE pPteSrc = &pPTSrc->a[offPTSrc + iPTDst]; 1941 1938 1942 if ( 1943 && 1939 if ( pPteSrc->n.u1Present 1940 && !SHW_PTE_IS_P(pPTDst->a[iPTDst])) 1944 1941 { 1945 1942 RTGCPTR GCPtrCurPage = (GCPtrPage & ~(RTGCPTR)(GST_PT_MASK << GST_PT_SHIFT)) | ((offPTSrc + iPTDst) << PAGE_SHIFT);
Note:
See TracChangeset
for help on using the changeset viewer.