Changeset 10503 in vbox
- Timestamp:
- Jul 11, 2008 9:37:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r10502 r10503 883 883 || pVM->hwaccm.s.svm.cTLBFlushes != pCpu->cTLBFlushes) 884 884 { 885 #ifdef LOG_ENABLED 886 if (pVM->hwaccm.s.svm.idLastCpu != pCpu->idCpu) 887 Log(("Force TLB flush due to rescheduling to a different cpu (%d vs %d)\n", pVM->hwaccm.s.svm.idLastCpu, pCpu->idCpu)); 888 else 889 Log(("Force TLB flush due to changed TLB flush count (%x vs %x)\n", pVM->hwaccm.s.svm.cTLBFlushes, pCpu->cTLBFlushes)); 890 #endif 885 891 /* Force a TLB flush on VM entry. */ 886 892 pVM->hwaccm.s.svm.fForceTLBFlush = true; … … 895 901 || pCpu->fFlushTLB) 896 902 { 903 #ifdef LOG_ENABLED 897 904 if (pCpu->fFlushTLB) 898 905 Log(("SVMR0RunGuestCode: First time cpu %d is used -> flush\n", pCpu->idCpu)); 906 #endif 899 907 900 908 pCpu->fFlushTLB = false;
Note:
See TracChangeset
for help on using the changeset viewer.