- Timestamp:
- Oct 20, 2008 2:58:11 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r13393 r13398 1762 1762 AssertRCReturn(rc, rc); 1763 1763 1764 /* Prefetch it as it's now marked as not present and our trap handler will1765 * still call the access handler.1766 */1767 rc = PGMPrefetchPage(pVM, (RTGCPTR)GCPhys);1768 AssertRC(rc);1769 1770 1764 /* Mark it as writable and present so reads and writes no longer fault. */ 1771 1765 rc = PGMShwModifyPage(pVM, (RTGCPTR)GCPhys, 1, fPageFlags, ~fPageFlags); -
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r13397 r13398 372 372 if (VBOX_SUCCESS(rc)) 373 373 { 374 if (PGM_PAGE_HAS_ANY_HANDLERS(pPage)) 374 if ( PGM_PAGE_HAS_ACTIVE_PHYSICAL_HANDLERS(pPage) 375 || PGM_PAGE_HAS_ACTIVE_VIRTUAL_HANDLERS(pPage)) 375 376 { 376 377 if (PGM_PAGE_HAS_ANY_PHYSICAL_HANDLERS(pPage))
Note:
See TracChangeset
for help on using the changeset viewer.