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:
parent
2cb81af0b1
commit
4b2991666c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user