mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-28 00:06:55 +00:00
Add handle EOI case when APIC-write VM exit
-If "virtual-interrupt delivery" VM-execution control is 0, Processor will causes an APIC-write VM exit if page offset is 0xB0 (EOI), SDM Vol3, Chapter 29.4.3 Signed-off-by: Yonghua Huang <yonghua.huang@intel.com>
This commit is contained in:
parent
34ccbb5f8e
commit
9b269aee79
@ -2384,6 +2384,9 @@ int apicv_write_exit_handler(struct vcpu *vcpu)
|
||||
case APIC_OFFSET_ID:
|
||||
vlapic_id_write_handler(vlapic);
|
||||
break;
|
||||
case APIC_OFFSET_EOI:
|
||||
vlapic_process_eoi(vlapic);
|
||||
break;
|
||||
case APIC_OFFSET_LDR:
|
||||
vlapic_ldr_write_handler(vlapic);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user