Changeset 63560 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
- Timestamp:
- Aug 16, 2016 2:01:20 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110215
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r63465 r63560 156 156 return VINF_SUCCESS; 157 157 #else 158 /* @todo in RC we could attempt to use the virtual address, although this can cause many faults (PAE Windows XP guest). */158 /** @todo in RC we could attempt to use the virtual address, although this can cause many faults (PAE Windows XP guest). */ 159 159 NOREF(pvSrc); 160 160 return PGMPhysSimpleReadGCPhys(pVM, pvDst, GCPhysSrc & ~(RTGCPHYS)(cb - 1), cb); … … 2166 2166 int rc = pgmPoolFlushPage(pPool, pPage); 2167 2167 /* This flush was initiated by us and not the guest, so explicitly flush the TLB. */ 2168 /* todo:find out why this is necessary; pgmPoolFlushPage should trigger a flush if one is really needed. */2168 /** @todo find out why this is necessary; pgmPoolFlushPage should trigger a flush if one is really needed. */ 2169 2169 if (rc == VINF_SUCCESS) 2170 2170 PGM_INVL_ALL_VCPU_TLBS(pVM);
Note:
See TracChangeset
for help on using the changeset viewer.