Changeset 60396 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 8, 2016 4:17:15 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106482
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r58164 r60396 2926 2926 * It is about to be unmapped, just clean up. 2927 2927 */ 2928 PDMDevHlp UnregisterVMMDevHeap(pPciDev->pDevIns, pThis->GCPhysVMMDevHeap);2928 PDMDevHlpRegisterVMMDevHeap(pPciDev->pDevIns, NIL_RTGCPHYS, pThis->pVMMDevHeapR3, VMMDEV_HEAP_SIZE); 2929 2929 pThis->GCPhysVMMDevHeap = NIL_RTGCPHYS32; 2930 2930 rc = VINF_SUCCESS; … … 4151 4151 return PDMDevHlpVMSetError(pDevIns, rc, RT_SRC_POS, 4152 4152 N_("Failed to allocate %u bytes of memory for the VMM device heap"), PAGE_SIZE); 4153 4154 /* Register the memory area with PDM so HM can access it before it's mapped. */ 4155 rc = PDMDevHlpRegisterVMMDevHeap(pDevIns, NIL_RTGCPHYS, pThis->pVMMDevHeapR3, VMMDEV_HEAP_SIZE); 4156 AssertLogRelRCReturn(rc, rc); 4153 4157 } 4154 4158
Note:
See TracChangeset
for help on using the changeset viewer.