Changeset 108412 in vbox
- Timestamp:
- Feb 27, 2025 7:10:58 PM (7 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167782
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllCpuId.cpp
r107854 r108412 48 48 #if defined(RT_ARCH_ARM64) || defined(VBOX_VMM_TARGET_ARMV8) 49 49 # include <iprt/armv8.h> 50 # if defined(RT_OS_LINUX) 51 # include <sys/auxv.h> 52 # endif 50 53 #endif 51 54 -
trunk/src/VBox/VMM/VMMR3/GICR3Nem-linux.cpp
r107929 r108412 276 276 */ 277 277 pGic->pDevInsR3 = pDevIns; 278 pGic->fNemGic = true;279 278 pThis->pDevIns = pDevIns; 280 279 pThis->fdKvmVm = pVM->nem.s.fdVm; … … 283 282 * Validate GIC settings. 284 283 */ 285 PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, "DistributorMmioBase|RedistributorMmioBase ", "");284 PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, "DistributorMmioBase|RedistributorMmioBase|ItsMmioBase", ""); 286 285 287 286 /* -
trunk/src/VBox/VMM/include/GICInternal.h
r107984 r108412 53 53 /** The Hyper-V GIC backend. */ 54 54 extern const PDMGICBACKEND g_GicHvBackend; 55 # elif defined(RT_OS_LINUX) 56 /** The KVM GIC backend. */ 57 extern const PDMGICBACKEND g_GicKvmBackend; 55 58 # endif 56 59 #endif
Note:
See TracChangeset
for help on using the changeset viewer.