Changeset 60388 in vbox for trunk/src/VBox
- Timestamp:
- Apr 8, 2016 8:39:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/APICR0.cpp
r60377 r60388 52 52 size_t const cbApicPib = RT_ALIGN_Z(pVM->cCpus * sizeof(APICPIB), PAGE_SIZE); 53 53 int rc = RTR0MemObjAllocCont(&pApic->hMemObjApicPibR0, cbApicPib, false /* fExecutable */); 54 /** @todo r=bird: You can do all this from ring-3 via 55 * SUPR3ContAlloc/SUPR3LowAlloc. I would though, suggest using SUPR3PageAllocEx 56 * on AMD64 systems (RC is in PAE mode on AMD64 systems, so that should work 57 * regardless of HM or RC, I think), since it's generally faster and more 58 * reliable to get memory without physical address restraints. 59 */ 54 60 if (RT_SUCCESS(rc)) 55 61 {
Note:
See TracChangeset
for help on using the changeset viewer.