Changeset 107113 in vbox for trunk/src/VBox/VMM/VMMAll/GIMAllHv.cpp
- Timestamp:
- Nov 22, 2024 10:48:00 AM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/GIMAllHv.cpp
r106061 r107113 39 39 #include <VBox/vmm/pdmapi.h> 40 40 #include <VBox/vmm/pgm.h> 41 #include <VBox/vmm/ apic.h>41 #include <VBox/vmm/pdmapic.h> 42 42 #include <VBox/vmm/em.h> 43 43 #include "GIMHvInternal.h" … … 605 605 606 606 case MSR_GIM_HV_TPR: 607 *puValue = APICHvGetTpr(pVCpu);607 *puValue = PDMApicHvGetTpr(pVCpu); 608 608 return VINF_SUCCESS; 609 609 610 610 case MSR_GIM_HV_ICR: 611 *puValue = APICHvGetIcr(pVCpu);611 *puValue = PDMApicHvGetIcr(pVCpu); 612 612 return VINF_SUCCESS; 613 613 … … 630 630 case MSR_GIM_HV_APIC_FREQ: 631 631 { 632 int rc = APICGetTimerFreq(pVM, puValue);632 int rc = PDMApicGetTimerFreq(pVM, puValue); 633 633 if (RT_FAILURE(rc)) 634 634 return VERR_CPUM_RAISE_GP_0; … … 772 772 { 773 773 case MSR_GIM_HV_TPR: 774 return APICHvSetTpr(pVCpu, uRawValue);774 return PDMApicHvSetTpr(pVCpu, uRawValue); 775 775 776 776 case MSR_GIM_HV_EOI: 777 return APICHvSetEoi(pVCpu, uRawValue);777 return PDMApicHvSetEoi(pVCpu, uRawValue); 778 778 779 779 case MSR_GIM_HV_ICR: 780 return APICHvSetIcr(pVCpu, uRawValue);780 return PDMApicHvSetIcr(pVCpu, uRawValue); 781 781 782 782 case MSR_GIM_HV_GUEST_OS_ID:
Note:
See TracChangeset
for help on using the changeset viewer.