- Timestamp:
- Jul 24, 2015 10:11:17 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMAll.cpp
r56287 r57066 211 211 * @returns VBox status code. 212 212 * @param pVM Pointer to the VM. 213 * @param GCVirt Page to invalidate 214 */ 215 VMM_INT_DECL(int) HMInvalidatePageOnAllVCpus(PVM pVM, RTGCPTR GC Ptr)213 * @param GCVirt Page to invalidate. 214 */ 215 VMM_INT_DECL(int) HMInvalidatePageOnAllVCpus(PVM pVM, RTGCPTR GCVirt) 216 216 { 217 217 /* … … 235 235 236 236 if (pVCpu->idCpu == idCurCpu) 237 HMInvalidatePage(pVCpu, GC Ptr);237 HMInvalidatePage(pVCpu, GCVirt); 238 238 else 239 239 { 240 hmQueueInvlPage(pVCpu, GC Ptr);240 hmQueueInvlPage(pVCpu, GCVirt); 241 241 hmPokeCpuForTlbFlush(pVCpu, false /* fAccountFlushStat */); 242 242 }
Note:
See TracChangeset
for help on using the changeset viewer.