diff options
author | Izik Eidus <ieidus@redhat.com> | 2008-12-28 18:42:20 -0500 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-03-24 05:02:54 -0400 |
commit | 0f346074403bc109f9569f14b45cb09e83729032 (patch) | |
tree | 484cfe57495d1a0e45452b8041dc41c4de044d3e /include | |
parent | 77c2002e7c6f019f59a6f3cc5f8b16b41748dbe1 (diff) |
KVM: remove the vmap usage
vmap() on guest pages hides those pages from the Linux mm for an extended
(userspace determined) amount of time. Get rid of it.
Signed-off-by: Izik Eidus <ieidus@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kvm_types.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/kvm_types.h b/include/linux/kvm_types.h index 9b6f395c9625..5f4a18cae26b 100644 --- a/include/linux/kvm_types.h +++ b/include/linux/kvm_types.h | |||
@@ -43,8 +43,7 @@ typedef hfn_t pfn_t; | |||
43 | struct kvm_pio_request { | 43 | struct kvm_pio_request { |
44 | unsigned long count; | 44 | unsigned long count; |
45 | int cur_count; | 45 | int cur_count; |
46 | struct page *guest_pages[2]; | 46 | gva_t guest_gva; |
47 | unsigned guest_page_offset; | ||
48 | int in; | 47 | int in; |
49 | int port; | 48 | int port; |
50 | int size; | 49 | int size; |