aboutsummaryrefslogtreecommitdiff
path: root/drivers/kvm/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/kvm/types.h')
-rw-r--r--drivers/kvm/types.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/kvm/types.h b/drivers/kvm/types.h
index 6ad76231b8f..1c4e46decb2 100644
--- a/drivers/kvm/types.h
+++ b/drivers/kvm/types.h
@@ -38,4 +38,17 @@ typedef unsigned long hva_t;
typedef u64 hpa_t;
typedef unsigned long hfn_t;
+struct kvm_pio_request {
+ unsigned long count;
+ int cur_count;
+ struct page *guest_pages[2];
+ unsigned guest_page_offset;
+ int in;
+ int port;
+ int size;
+ int string;
+ int down;
+ int rep;
+};
+
#endif /* __KVM_TYPES_H__ */