Changeset 10282 in vbox
- Timestamp:
- Jul 5, 2008 3:15:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r10280 r10282 1777 1777 case PGMPOOLKIND_PAE_PT_FOR_PAE_PT: 1778 1778 case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB: 1779 case PGMPOOLKIND_32BIT_PT_FOR_PHYS:1780 case PGMPOOLKIND_PAE_PT_FOR_PHYS:1781 1779 { 1782 1780 #ifdef PGMPOOL_WITH_USER_TRACKING … … 2235 2233 case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT: 2236 2234 case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB: 2237 case PGMPOOLKIND_32BIT_PT_FOR_PHYS:2238 2235 { 2239 2236 const uint32_t u32 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PTE_P; … … 2265 2262 case PGMPOOLKIND_PAE_PT_FOR_PAE_PT: 2266 2263 case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB: 2267 case PGMPOOLKIND_PAE_PT_FOR_PHYS:2268 2264 { 2269 2265 const uint64_t u64 = PGM_PAGE_GET_HCPHYS(pPhysPage) | X86_PTE_P; … … 2291 2287 } 2292 2288 2289 case PGMPOOLKIND_32BIT_PT_FOR_PHYS: 2290 case PGMPOOLKIND_PAE_PT_FOR_PHYS: 2291 break; /* nothing to do */ 2292 2293 2293 default: 2294 2294 AssertFatalMsgFailed(("enmKind=%d iShw=%d\n", pPage->enmKind, iShw)); … … 2409 2409 case PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT: 2410 2410 case PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB: 2411 case PGMPOOLKIND_32BIT_PT_FOR_PHYS:2412 2411 { 2413 2412 unsigned cPresent = pPage->cPresent; … … 2431 2430 case PGMPOOLKIND_PAE_PT_FOR_PAE_PT: 2432 2431 case PGMPOOLKIND_PAE_PT_FOR_PAE_2MB: 2433 case PGMPOOLKIND_PAE_PT_FOR_PHYS:2434 2432 { 2435 2433 unsigned cPresent = pPage->cPresent;
Note:
See TracChangeset
for help on using the changeset viewer.