From: Joao Martins Date: Tue, 5 Feb 2019 16:24:47 +0000 (-0500) Subject: KVM: x86/xen: handle PV IPI vcpu yield X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=aa560d91313d9f68bb07b4d3710119bca5d7b548;p=users%2Fdwmw2%2Flinux.git KVM: x86/xen: handle PV IPI vcpu yield Cooperative Linux guests after an IPI-many may yield vcpu if any of the IPI'd vcpus were preempted (i.e. runstate is 'runnable'.) Support SCHEDOP_yield for handling yield. Signed-off-by: Joao Martins --- diff --git a/arch/x86/kvm/xen.c b/arch/x86/kvm/xen.c index ec40cb1de6b67..753a6d2c11cdb 100644 --- a/arch/x86/kvm/xen.c +++ b/arch/x86/kvm/xen.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "trace.h" @@ -668,6 +669,31 @@ static int kvm_xen_hcall_set_timer_op(struct kvm_vcpu *vcpu, uint64_t timeout) return 0; } +static int kvm_xen_hcall_sched_op(struct kvm_vcpu *vcpu, int cmd, u64 param) +{ + int ret = -ENOSYS; + gpa_t gpa; + int idx; + + idx = srcu_read_lock(&vcpu->kvm->srcu); + gpa = kvm_mmu_gva_to_gpa_system(vcpu, param, NULL); + srcu_read_unlock(&vcpu->kvm->srcu, idx); + + if (!gpa) + return -EFAULT; + + switch (cmd) { + case SCHEDOP_yield: + kvm_vcpu_on_spin(vcpu, true); + ret = 0; + break; + default: + break; + } + + return ret; +} + int kvm_xen_hypercall(struct kvm_vcpu *vcpu) { bool longmode; @@ -714,6 +740,11 @@ int kvm_xen_hypercall(struct kvm_vcpu *vcpu) if (!r) goto hcall_success; break; + case __HYPERVISOR_sched_op: + r = kvm_xen_hcall_sched_op(vcpu, params[0], params[1]); + if (!r) + goto hcall_success; + break; /* fallthrough */ default: break;