Changeset 43498 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 1, 2012 7:03:43 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 81063
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp ¶
r43497 r43498 2722 2722 AssertMsg(pVCpu->hm.s.cTlbFlushes == pCpu->cTlbFlushes, 2723 2723 ("Flush count mismatch for cpu %d (%x vs %x)\n", pCpu->idCpu, pVCpu->hm.s.cTlbFlushes, pCpu->cTlbFlushes)); 2724 AssertMsg(pCpu->uCurrentAsid >= 1 && pCpu->uCurrentAsid < pVM->hm.s.uMaxA SID,2724 AssertMsg(pCpu->uCurrentAsid >= 1 && pCpu->uCurrentAsid < pVM->hm.s.uMaxAsid, 2725 2725 ("cpu%d uCurrentAsid = %x\n", pCpu->idCpu, pCpu->uCurrentAsid)); 2726 AssertMsg(pVCpu->hm.s.uCurrentAsid >= 1 && pVCpu->hm.s.uCurrentAsid < pVM->hm.s.uMaxA SID,2726 AssertMsg(pVCpu->hm.s.uCurrentAsid >= 1 && pVCpu->hm.s.uCurrentAsid < pVM->hm.s.uMaxAsid, 2727 2727 ("cpu%d VM uCurrentAsid = %x\n", pCpu->idCpu, pVCpu->hm.s.uCurrentAsid)); 2728 2728
Note:
See TracChangeset
for help on using the changeset viewer.