Changeset 25298 in vbox
- Timestamp:
- Dec 10, 2009 1:33:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r25246 r25298 1954 1954 * Found a usable page, flush it and return. 1955 1955 */ 1956 return pgmPoolFlushPage(pPool, pPage); 1956 int rc = pgmPoolFlushPage(pPool, pPage); 1957 /* This flush was initiated by us and not the guest, so explicitly flush the TLB. */ 1958 if (rc == VINF_SUCCESS) 1959 PGM_INVL_ALL_VCPU_TLBS(pVM); 1960 return rc; 1957 1961 } 1958 1962 … … 2128 2132 STAM_COUNTER_INC(&pPool->StatCacheKindMismatches); 2129 2133 pgmPoolFlushPage(pPool, pPage); 2134 PGM_INVL_VCPU_TLBS(VMMGetCpu(pVM)); 2130 2135 break; 2131 2136 }
Note:
See TracChangeset
for help on using the changeset viewer.