Changeset 107115 in vbox
- Timestamp:
- Nov 22, 2024 11:09:17 AM (8 weeks ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmapic.h
r107113 r107115 355 355 DECLR3CALLBACKMEMBER(int, pfnReserved7, (void)); 356 356 DECLR3CALLBACKMEMBER(int, pfnReserved8, (void)); 357 DECLR3CALLBACKMEMBER(int, pfnReserved9, (void)); 357 358 /** @} */ 358 359 } PDMAPICBACKENDR3; … … 603 604 DECLR0CALLBACKMEMBER(int, pfnReserved7, (void)); 604 605 DECLR0CALLBACKMEMBER(int, pfnReserved8, (void)); 606 DECLR0CALLBACKMEMBER(int, pfnReserved9, (void)); 605 607 /** @} */ 606 608 } PDMAPICBACKENDR0; … … 841 843 DECLRGCALLBACKMEMBER(int, pfnReserved8, (void)); 842 844 DECLRGCALLBACKMEMBER(int, pfnReserved9, (void)); 845 DECLRGCALLBACKMEMBER(int, pfnReserved10, (void)); 843 846 /** @} */ 844 847 } PDMAPICBACKENDRC; -
trunk/src/VBox/VMM/VMMR3/NEMR3Native-darwin.cpp
r107113 r107115 3708 3708 if (pVmxTransient->u8GuestTpr != (uint8_t)u64Tpr) 3709 3709 { 3710 int rc = APICSetTpr(pVCpu, (uint8_t)u64Tpr);3710 int rc = PDMApicSetTpr(pVCpu, (uint8_t)u64Tpr); 3711 3711 AssertRC(rc); 3712 3712 ASMAtomicUoOrU64(&pVCpu->nem.s.fCtxChanged, HM_CHANGED_GUEST_APIC_TPR); -
trunk/src/VBox/VMM/include/PDMInternal.h
r107113 r107115 811 811 /** @todo The GIC backend. Currently the padding helps keep alignment common 812 812 * between x86 and arm. */ 813 uint8_t auPadding[4+4+2 32];813 uint8_t auPadding[4+4+240]; 814 814 #endif 815 815 } PDMICR3; … … 829 829 /** @todo The GIC backend. Currently the padding helps keep alignment common 830 830 * between x86 and arm. */ 831 uint8_t auPadding[2 32];831 uint8_t auPadding[240]; 832 832 #endif 833 833 } PDMICR0; … … 1634 1634 bool volatile fNsUnchokeTimerArmed; 1635 1635 /** Align aNsGroups on a cacheline. */ 1636 bool afPadding2[19+16+ 25];1636 bool afPadding2[19+16+17]; 1637 1637 /** Number of network shaper groups. 1638 1638 * @note Marked volatile to prevent re-reading after validation. */
Note:
See TracChangeset
for help on using the changeset viewer.