]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
KVM: x86/xen: handle PV IPI vcpu yield
authorJoao Martins <joao.m.martins@oracle.com>
Tue, 5 Feb 2019 16:24:47 +0000 (11:24 -0500)
committerJoao Martins <joao.m.martins@oracle.com>
Wed, 20 Feb 2019 17:30:52 +0000 (12:30 -0500)
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 <joao.m.martins@oracle.com>
arch/x86/kvm/xen.c

index ec40cb1de6b67407f6b622d207731701376e94f3..753a6d2c11cdb2d1ff781cd76d9d6c6d997b0afe 100644 (file)
@@ -17,6 +17,7 @@
 #include <xen/interface/xen.h>
 #include <xen/interface/vcpu.h>
 #include <xen/interface/event_channel.h>
+#include <xen/interface/sched.h>
 
 #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;