mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
KVM: Reduce runnability interface with arch support code
Remove kvm_cpu_has_interrupt() and kvm_arch_interrupt_allowed() from interface between general code and arch code. kvm_arch_vcpu_runnable() checks for interrupts instead. Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
0b71785dc0
commit
a1b37100d9
7 changed files with 11 additions and 40 deletions
|
@ -1935,19 +1935,6 @@ int kvm_highest_pending_irq(struct kvm_vcpu *vcpu)
|
||||||
return find_highest_bits((int *)&vpd->irr[0]);
|
return find_highest_bits((int *)&vpd->irr[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
if (kvm_highest_pending_irq(vcpu) != -1)
|
|
||||||
return 1;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
/* do real check here */
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
|
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
return vcpu->arch.timer_fired;
|
return vcpu->arch.timer_fired;
|
||||||
|
@ -1960,7 +1947,8 @@ gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
|
||||||
|
|
||||||
int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
|
int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
return vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE;
|
return (vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE) ||
|
||||||
|
(kvm_highest_pending_irq(vcpu) != -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
|
int kvm_arch_vcpu_ioctl_get_mpstate(struct kvm_vcpu *vcpu,
|
||||||
|
|
|
@ -39,20 +39,9 @@ gfn_t unalias_gfn(struct kvm *kvm, gfn_t gfn)
|
||||||
return gfn;
|
return gfn;
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_cpu_has_interrupt(struct kvm_vcpu *v)
|
|
||||||
{
|
|
||||||
return !!(v->arch.pending_exceptions);
|
|
||||||
}
|
|
||||||
|
|
||||||
int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
/* do real check here */
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
|
int kvm_arch_vcpu_runnable(struct kvm_vcpu *v)
|
||||||
{
|
{
|
||||||
return !(v->arch.msr & MSR_WE);
|
return !(v->arch.msr & MSR_WE) || !!(v->arch.pending_exceptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -283,7 +283,7 @@ static int __try_deliver_ckc_interrupt(struct kvm_vcpu *vcpu)
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu)
|
static int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
struct kvm_s390_local_interrupt *li = &vcpu->arch.local_int;
|
struct kvm_s390_local_interrupt *li = &vcpu->arch.local_int;
|
||||||
struct kvm_s390_float_interrupt *fi = vcpu->arch.local_int.float_int;
|
struct kvm_s390_float_interrupt *fi = vcpu->arch.local_int.float_int;
|
||||||
|
@ -320,12 +320,6 @@ int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu)
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu)
|
|
||||||
{
|
|
||||||
/* do real check here */
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
|
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -797,6 +797,8 @@ asmlinkage void kvm_handle_fault_on_reboot(void);
|
||||||
int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
|
int kvm_unmap_hva(struct kvm *kvm, unsigned long hva);
|
||||||
int kvm_age_hva(struct kvm *kvm, unsigned long hva);
|
int kvm_age_hva(struct kvm *kvm, unsigned long hva);
|
||||||
int cpuid_maxphyaddr(struct kvm_vcpu *vcpu);
|
int cpuid_maxphyaddr(struct kvm_vcpu *vcpu);
|
||||||
|
int kvm_cpu_has_interrupt(struct kvm_vcpu *vcpu);
|
||||||
|
int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
|
||||||
int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
|
int kvm_cpu_get_interrupt(struct kvm_vcpu *v);
|
||||||
|
|
||||||
#endif /* _ASM_X86_KVM_HOST_H */
|
#endif /* _ASM_X86_KVM_HOST_H */
|
||||||
|
|
|
@ -4890,8 +4890,10 @@ void kvm_arch_flush_shadow(struct kvm *kvm)
|
||||||
int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
|
int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu)
|
||||||
{
|
{
|
||||||
return vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE
|
return vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE
|
||||||
|| vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED
|
|| vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED
|
||||||
|| vcpu->arch.nmi_pending;
|
|| vcpu->arch.nmi_pending ||
|
||||||
|
(kvm_arch_interrupt_allowed(vcpu) &&
|
||||||
|
kvm_cpu_has_interrupt(vcpu));
|
||||||
}
|
}
|
||||||
|
|
||||||
void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
|
void kvm_vcpu_kick(struct kvm_vcpu *vcpu)
|
||||||
|
|
|
@ -332,7 +332,6 @@ int kvm_arch_hardware_setup(void);
|
||||||
void kvm_arch_hardware_unsetup(void);
|
void kvm_arch_hardware_unsetup(void);
|
||||||
void kvm_arch_check_processor_compat(void *rtn);
|
void kvm_arch_check_processor_compat(void *rtn);
|
||||||
int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
|
int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu);
|
||||||
int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu);
|
|
||||||
|
|
||||||
void kvm_free_physmem(struct kvm *kvm);
|
void kvm_free_physmem(struct kvm *kvm);
|
||||||
|
|
||||||
|
@ -341,7 +340,6 @@ void kvm_arch_destroy_vm(struct kvm *kvm);
|
||||||
void kvm_free_all_assigned_devices(struct kvm *kvm);
|
void kvm_free_all_assigned_devices(struct kvm *kvm);
|
||||||
void kvm_arch_sync_events(struct kvm *kvm);
|
void kvm_arch_sync_events(struct kvm *kvm);
|
||||||
|
|
||||||
int kvm_cpu_has_interrupt(struct kvm_vcpu *v);
|
|
||||||
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
|
int kvm_cpu_has_pending_timer(struct kvm_vcpu *vcpu);
|
||||||
void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
|
void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
|
||||||
|
|
||||||
|
|
|
@ -1666,9 +1666,7 @@ void kvm_vcpu_block(struct kvm_vcpu *vcpu)
|
||||||
for (;;) {
|
for (;;) {
|
||||||
prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
|
prepare_to_wait(&vcpu->wq, &wait, TASK_INTERRUPTIBLE);
|
||||||
|
|
||||||
if ((kvm_arch_interrupt_allowed(vcpu) &&
|
if (kvm_arch_vcpu_runnable(vcpu)) {
|
||||||
kvm_cpu_has_interrupt(vcpu)) ||
|
|
||||||
kvm_arch_vcpu_runnable(vcpu)) {
|
|
||||||
set_bit(KVM_REQ_UNHALT, &vcpu->requests);
|
set_bit(KVM_REQ_UNHALT, &vcpu->requests);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue