diff options
author | Avi Kivity <avi@redhat.com> | 2009-01-04 12:39:07 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-03-24 11:02:55 +0200 |
commit | 1c08364c3565242f1e1bd585bc2ce458967941af (patch) | |
tree | 641d6f012c3c7825223146604aa2db0fad795bef /include | |
parent | 52d939a0bf44081bc9f69b4fbdc9e7f416df27c7 (diff) |
KVM: Move struct kvm_pio_request into x86 kvm_host.h
This is an x86 specific stucture and has no business living in common code.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kvm_types.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/kvm_types.h b/include/linux/kvm_types.h index 5f4a18cae26..2b8318c83e5 100644 --- a/include/linux/kvm_types.h +++ b/include/linux/kvm_types.h @@ -40,16 +40,4 @@ typedef unsigned long hfn_t; typedef hfn_t pfn_t; -struct kvm_pio_request { - unsigned long count; - int cur_count; - gva_t guest_gva; - int in; - int port; - int size; - int string; - int down; - int rep; -}; - #endif /* __KVM_TYPES_H__ */ |