Changeset 104849 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Jun 5, 2024 9:42:06 AM (8 months ago)
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/memobj-r0drv.cpp
r104848 r104849 329 329 return VINF_SUCCESS; 330 330 } 331 RT_EXPORT_SYMBOL(RTR0MemObj WasZeroInitialized);331 RT_EXPORT_SYMBOL(RTR0MemObjZeroInitialize); 332 332 333 333 -
trunk/src/VBox/Runtime/r0drv/solaris/memobj-r0drv-solaris.c
r104848 r104849 1222 1222 for (iPage = 0; iPage < cPages; iPage++) 1223 1223 { 1224 void 1224 void *pvPage; 1225 1225 1226 1226 /* Get the physical address of the page. */ 1227 RTHCPHYS constHCPhys = rtR0MemObjNativeGetPagePhysAddr(&pMemSolaris->Core, iPage);1227 RTHCPHYS HCPhys = rtR0MemObjNativeGetPagePhysAddr(&pMemSolaris->Core, iPage); 1228 1228 AssertReturn(HCPhys != NIL_RTHCPHYS, VERR_INTERNAL_ERROR_3); 1229 1229 Assert(!(HCPhys & PAGE_OFFSET_MASK));
Note:
See TracChangeset
for help on using the changeset viewer.