Changeset 25914 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jan 19, 2010 3:28:19 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56742
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r24994 r25914 2678 2678 rc = PGMInvalidatePage(pVCpu, addr); 2679 2679 if (RT_SUCCESS(rc)) 2680 {2681 /* Manually invalidate the page for the VM's TLB. */2682 Log(("SVMR0InvlpgA %RGv ASID=%d\n", addr, uASID));2683 SVMR0InvlpgA(addr, uASID);2684 2680 return VINF_SUCCESS; 2685 } 2681 2686 2682 AssertRC(rc); 2687 2683 return rc; … … 2725 2721 rc = svmR0InterpretInvlPg(pVCpu, pDis, pRegFrame, uASID); 2726 2722 if (RT_SUCCESS(rc)) 2727 {2728 2723 pRegFrame->rip += cbOp; /* Move on to the next instruction. */ 2729 } 2724 2730 2725 return rc; 2731 2726 }
Note:
See TracChangeset
for help on using the changeset viewer.