Changeset 20864 in vbox for trunk/src/VBox/VMM/PGMPhys.cpp
- Timestamp:
- Jun 23, 2009 7:19:42 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r20730 r20864 3054 3054 { 3055 3055 void *pvChunk; 3056 rcAlloc = rc = SUP PageAlloc(GMM_CHUNK_SIZE >> PAGE_SHIFT, &pvChunk);3056 rcAlloc = rc = SUPR3PageAlloc(GMM_CHUNK_SIZE >> PAGE_SHIFT, &pvChunk); 3057 3057 if (RT_SUCCESS(rc)) 3058 3058 { 3059 3059 rcSeed = rc = VMMR3CallR0(pVM, VMMR0_DO_GMM_SEED_CHUNK, (uintptr_t)pvChunk, NULL); 3060 3060 if (RT_FAILURE(rc)) 3061 SUP PageFree(pvChunk, GMM_CHUNK_SIZE >> PAGE_SHIFT);3061 SUPR3PageFree(pvChunk, GMM_CHUNK_SIZE >> PAGE_SHIFT); 3062 3062 } 3063 3063 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.