mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
kvm: i386: move KVM_CAP_IRQ_ROUTING detection to kvm_arch_required_capabilities
Simple code cleanup. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@@ -92,6 +92,7 @@ const KVMCapabilityInfo kvm_arch_required_capabilities[] = {
|
||||
KVM_CAP_INFO(EXT_CPUID),
|
||||
KVM_CAP_INFO(MP_STATE),
|
||||
KVM_CAP_INFO(SIGNAL_MSI),
|
||||
KVM_CAP_INFO(IRQ_ROUTING),
|
||||
KVM_CAP_LAST_INFO
|
||||
};
|
||||
|
||||
@@ -2590,11 +2591,6 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (!kvm_check_extension(s, KVM_CAP_IRQ_ROUTING)) {
|
||||
error_report("kvm: KVM_CAP_IRQ_ROUTING not supported by KVM");
|
||||
return -ENOTSUP;
|
||||
}
|
||||
|
||||
has_xsave = kvm_check_extension(s, KVM_CAP_XSAVE);
|
||||
has_xcrs = kvm_check_extension(s, KVM_CAP_XCRS);
|
||||
has_pit_state2 = kvm_check_extension(s, KVM_CAP_PIT_STATE2);
|
||||
|
||||
Reference in New Issue
Block a user