aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/kvm/kvm_main.c
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2007-03-04 06:59:30 -0500
committerAvi Kivity <avi@qumranet.com>2007-05-03 03:52:24 -0400
commitb4e63f560beb187cffdaf706e534a1e2f9effb66 (patch)
tree1fe1a640530af04d1d722e0c99c8086b0e13f1e7 /drivers/kvm/kvm_main.c
parent5d308f4550d9dc4c236e08b0377b610b9578577b (diff)
KVM: Allow userspace to process hypercalls which have no kernel handler
This is useful for paravirtualized graphics devices, for example. Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/kvm_main.c')
-rw-r--r--drivers/kvm/kvm_main.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/drivers/kvm/kvm_main.c b/drivers/kvm/kvm_main.c
index 39cf8fd343a3..de93117f1e97 100644
--- a/drivers/kvm/kvm_main.c
+++ b/drivers/kvm/kvm_main.c
@@ -1203,7 +1203,16 @@ int kvm_hypercall(struct kvm_vcpu *vcpu, struct kvm_run *run)
1203 } 1203 }
1204 switch (nr) { 1204 switch (nr) {
1205 default: 1205 default:
1206 ; 1206 run->hypercall.args[0] = a0;
1207 run->hypercall.args[1] = a1;
1208 run->hypercall.args[2] = a2;
1209 run->hypercall.args[3] = a3;
1210 run->hypercall.args[4] = a4;
1211 run->hypercall.args[5] = a5;
1212 run->hypercall.ret = ret;
1213 run->hypercall.longmode = is_long_mode(vcpu);
1214 kvm_arch_ops->decache_regs(vcpu);
1215 return 0;
1207 } 1216 }
1208 vcpu->regs[VCPU_REGS_RAX] = ret; 1217 vcpu->regs[VCPU_REGS_RAX] = ret;
1209 kvm_arch_ops->decache_regs(vcpu); 1218 kvm_arch_ops->decache_regs(vcpu);
@@ -1599,6 +1608,13 @@ static int kvm_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
1599 1608
1600 vcpu->mmio_needed = 0; 1609 vcpu->mmio_needed = 0;
1601 1610
1611 if (kvm_run->exit_type == KVM_EXIT_TYPE_VM_EXIT
1612 && kvm_run->exit_reason == KVM_EXIT_HYPERCALL) {
1613 kvm_arch_ops->cache_regs(vcpu);
1614 vcpu->regs[VCPU_REGS_RAX] = kvm_run->hypercall.ret;
1615 kvm_arch_ops->decache_regs(vcpu);
1616 }
1617
1602 r = kvm_arch_ops->run(vcpu, kvm_run); 1618 r = kvm_arch_ops->run(vcpu, kvm_run);
1603 1619
1604 vcpu_put(vcpu); 1620 vcpu_put(vcpu);