summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJeff Dike2007-07-16 21:24:47 +0200
committerAvi Kivity2007-10-13 10:18:20 +0200
commit519ef35341b4f360f072ea74e398b70a5a2fc270 (patch)
treeaabebcfaea5ed195dfa106863361c6e8c24269f7 /include
parentKVM: VMX: Improve the method of writing vmcs control (diff)
downloadkernel-qcow2-linux-519ef35341b4f360f072ea74e398b70a5a2fc270.tar.gz
kernel-qcow2-linux-519ef35341b4f360f072ea74e398b70a5a2fc270.tar.xz
kernel-qcow2-linux-519ef35341b4f360f072ea74e398b70a5a2fc270.zip
KVM: add hypercall nr to kvm_run
Add the hypercall number to kvm_run and initialize it. This changes the ABI, but as this particular ABI was unusable before this no users are affected. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/kvm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kvm.h b/include/linux/kvm.h
index 8db01a91e1a7..91a446f450b8 100644
--- a/include/linux/kvm.h
+++ b/include/linux/kvm.h
@@ -99,6 +99,7 @@ struct kvm_run {
} mmio;
/* KVM_EXIT_HYPERCALL */
struct {
+ __u64 nr;
__u64 args[6];
__u64 ret;
__u32 longmode;