Changeset 46363 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 3, 2013 3:01:02 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMAll.cpp
r46297 r46363 103 103 104 104 /** 105 * Flushes the guest TLB 105 * Flushes the guest TLB. 106 106 * 107 107 * @returns VBox status code. … … 230 230 { 231 231 hmQueueInvlPage(pVCpu, GCPtr); 232 hmPokeCpuForTlbFlush(pVCpu, false /* fAccountFlushStat*/);232 hmPokeCpuForTlbFlush(pVCpu, false /* fAccountFlushStat */); 233 233 } 234 234 } … … 239 239 240 240 /** 241 * Flush the TLBs of all VCPUs 241 * Flush the TLBs of all VCPUs. 242 242 * 243 243 * @returns VBox status code. … … 263 263 VMCPU_FF_SET(pVCpu, VMCPU_FF_TLB_FLUSH); 264 264 if (idThisCpu != idCpu) 265 hmPokeCpuForTlbFlush(pVCpu, true /* fAccountFlushStat*/);265 hmPokeCpuForTlbFlush(pVCpu, true /* fAccountFlushStat */); 266 266 } 267 267 }
Note:
See TracChangeset
for help on using the changeset viewer.