- Timestamp:
- Aug 15, 2024 6:28:56 PM (5 months ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImplConfigArmV8.cpp
r105600 r105697 420 420 #else 421 421 /* On Linux we default to the KVM in-kernel GIC for now. */ 422 InsertConfigNode(pDevices, "gic- kvm", &pDev);422 InsertConfigNode(pDevices, "gic-nem", &pDev); 423 423 #endif 424 424 InsertConfigNode(pDev, "0", &pInst); -
trunk/src/VBox/VMM/VMMAll/GICAll.cpp
r105687 r105697 1293 1293 /** @todo r=aeichner There must be another way to do this better, maybe create some callback interface 1294 1294 * the GIC can register. */ 1295 #ifdef RT_OS_LINUX 1296 # ifdef IN_RING3 1295 #ifdef IN_RING3 1297 1296 PGIC pGic = VM_TO_GIC(pVCpu->pVMR3); 1298 1297 /* These should be handled in the kernel and never be set from here. */ 1299 AssertReturn(!pGic->fKvmGic, VERR_NEM_IPE_6); 1300 # else 1301 # error "Impossible to call the KVM in-kernel GIC from this context!" 1302 # endif 1298 AssertReturn(!pGic->fNemGic, VERR_NEM_IPE_6); 1299 #else 1300 # error "Impossible to call the in-kernel GIC from this context!" 1303 1301 #endif 1304 1302
Note:
See TracChangeset
for help on using the changeset viewer.