diff options
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index b74576aec19a..863ea73431ad 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h | |||
@@ -227,6 +227,18 @@ struct kvm_pv_mmu_op_buffer { | |||
227 | char buf[512] __aligned(sizeof(long)); | 227 | char buf[512] __aligned(sizeof(long)); |
228 | }; | 228 | }; |
229 | 229 | ||
230 | struct kvm_pio_request { | ||
231 | unsigned long count; | ||
232 | int cur_count; | ||
233 | gva_t guest_gva; | ||
234 | int in; | ||
235 | int port; | ||
236 | int size; | ||
237 | int string; | ||
238 | int down; | ||
239 | int rep; | ||
240 | }; | ||
241 | |||
230 | /* | 242 | /* |
231 | * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level | 243 | * x86 supports 3 paging modes (4-level 64-bit, 3-level 64-bit, and 2-level |
232 | * 32-bit). The kvm_mmu structure abstracts the details of the current mmu | 244 | * 32-bit). The kvm_mmu structure abstracts the details of the current mmu |