Changeset 13063 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Oct 8, 2008 8:52:54 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37535
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r13062 r13063 166 166 167 167 rc = PGMShwSyncLongModePDPtr(pVM, (RTGCUINTPTR)pvFault, pPml4eSrc, &PdpeSrc, &pPDDst); 168 AssertReturn(rc == VINF_SUCCESS /* *must* test for VINF_SUCCESS!! */, rc); 168 if (rc != VINF_SUCCESS) 169 { 170 AssertRC(rc); 171 return rc; 172 } 169 173 Assert(pPDDst); 170 174 # elif PGM_SHW_TYPE == PGM_TYPE_EPT … … 1583 1587 1584 1588 int rc = PGMShwGetLongModePDPtr(pVM, GCPtrPage, &pPdptDst, &pPDDst); 1585 AssertRC Return(rc, rc);1589 AssertRCSuccessReturn(rc, rc); 1586 1590 Assert(pPDDst && pPdptDst); 1587 1591 PdeDst = pPDDst->a[iPDDst]; … … 1848 1852 1849 1853 int rc = PGMShwGetLongModePDPtr(pVM, GCPtrPage, &pPdptDst, &pPDDst); 1850 AssertRC Return(rc, rc);1854 AssertRCSuccessReturn(rc, rc); 1851 1855 Assert(pPDDst && pPdptDst); 1852 1856 PdeDst = pPDDst->a[iPDDst]; … … 2306 2310 PX86PDPT pPdptDst; 2307 2311 rc = PGMShwGetLongModePDPtr(pVM, GCPtrPage, &pPdptDst, &pPDDst); 2308 AssertRC Return(rc, rc);2312 AssertRCSuccessReturn(rc, rc); 2309 2313 Assert(pPDDst); 2310 2314 # endif … … 2693 2697 PX86PDPT pPdptDst; 2694 2698 rc = PGMShwGetLongModePDPtr(pVM, GCPtrPage, &pPdptDst, &pPDDst); 2695 AssertRC Return(rc, rc);2699 AssertRCSuccessReturn(rc, rc); 2696 2700 Assert(pPDDst); 2697 2701 … … 2842 2846 2843 2847 int rc = PGMShwSyncLongModePDPtr(pVM, GCPtrPage, pPml4eSrc, &PdpeSrc, &pPDDst); 2844 AssertReturn(rc == VINF_SUCCESS /* *must* test for VINF_SUCCESS!! */, rc); 2848 if (rc != VINF_SUCCESS) 2849 { 2850 AssertRC(rc); 2851 return rc; 2852 } 2845 2853 Assert(pPDDst); 2846 2854 PdeDst = pPDDst->a[iPDDst]; … … 2957 2965 2958 2966 rc = PGMShwSyncLongModePDPtr(pVM, GCPtrPage, pPml4eSrc, &PdpeSrc, &pPDDst); 2959 AssertReturn(rc == VINF_SUCCESS /* *must* test for VINF_SUCCESS!! */, rc); 2967 if (rc != VINF_SUCCESS) 2968 { 2969 AssertRC(rc); 2970 return rc; 2971 } 2960 2972 Assert(pPDDst); 2961 2973 pPdeDst = &pPDDst->a[iPDDst];
Note:
See TracChangeset
for help on using the changeset viewer.