![David Woodhouse](/assets/img/avatar_default.png)
Include basic support for setting HVM_PARAM_CALLBACK_IRQ to the global vector method HVM_PARAM_CALLBACK_TYPE_VECTOR, which is handled in-kernel by raising the vector whenever the vCPU's vcpu_info->evtchn_upcall_pending flag is set. Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Paul Durrant <paul@xen.org>
13 lines
481 B
Meson
13 lines
481 B
Meson
i386_kvm_ss = ss.source_set()
|
|
i386_kvm_ss.add(files('clock.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_APIC', if_true: files('apic.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_I8254', if_true: files('i8254.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_I8259', if_true: files('i8259.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_IOAPIC', if_true: files('ioapic.c'))
|
|
i386_kvm_ss.add(when: 'CONFIG_XEN_EMU', if_true: files(
|
|
'xen_overlay.c',
|
|
'xen_evtchn.c',
|
|
))
|
|
|
|
i386_ss.add_all(when: 'CONFIG_KVM', if_true: i386_kvm_ss)
|