Changeset 41834 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jun 19, 2012 3:27:49 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r41804 r41834 162 162 else 163 163 pCpu->fFlushASIDBeforeUse = true; 164 165 /* 166 * Ensure each VCPU scheduled on this CPU gets a new VPID on resume. See @bugref{6255}. 167 */ 168 pCpu->cTLBFlushes++; 164 169 165 170 return VINF_SUCCESS; … … 2448 2453 else 2449 2454 { 2450 Assert(pVCpu->hwaccm.s.uCurrentASID && pCpu->uCurrentASID); 2455 AssertMsg(pVCpu->hwaccm.s.uCurrentASID && pCpu->uCurrentASID, ("hwaccm uCurrentASID=%lu cpu uCurrentASID=%lu\n", 2456 pVCpu->hwaccm.s.uCurrentASID, pCpu->uCurrentASID)); 2451 2457 2452 2458 /** @todo We never set VMCPU_FF_TLB_SHOOTDOWN anywhere so this path should … … 2525 2531 pVCpu->hwaccm.s.fForceTLBFlush = true; 2526 2532 2527 pVCpu->hwaccm.s.idLastCpu = pCpu->idCpu; 2533 pVCpu->hwaccm.s.idLastCpu = pCpu->idCpu; 2534 pVCpu->hwaccm.s.cTLBFlushes = pCpu->cTLBFlushes; 2528 2535 2529 2536 if (pVCpu->hwaccm.s.fForceTLBFlush)
Note:
See TracChangeset
for help on using the changeset viewer.