diff options
author | Anthony Liguori <anthony@codemonkey.ws> | 2006-12-13 00:33:43 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-13 09:05:46 -0800 |
commit | 3b3be0d1cc8a56468e0cb35ab3895f265d8e5cc6 (patch) | |
tree | 76c78268f485f1aa31cf431a81399630c1fd6eab /drivers | |
parent | a311f74329ee15cfae9576a45feefc1e935ca0c5 (diff) | |
download | op-kernel-dev-3b3be0d1cc8a56468e0cb35ab3895f265d8e5cc6.zip op-kernel-dev-3b3be0d1cc8a56468e0cb35ab3895f265d8e5cc6.tar.gz |
[PATCH] KVM: Add missing include
load_TR_desc() lives in asm/desc.h, so #include that file.
Signed-off-by: Anthony Liguori <anthony@codemonkey.ws>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/kvm/vmx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/kvm/vmx.c b/drivers/kvm/vmx.c index bda7a7a..fa8f729 100644 --- a/drivers/kvm/vmx.c +++ b/drivers/kvm/vmx.c @@ -22,6 +22,7 @@ #include <linux/mm.h> #include <linux/highmem.h> #include <asm/io.h> +#include <asm/desc.h> #include "segment_descriptor.h" |