diff options
Diffstat (limited to 'arch/s390/include')
-rw-r--r-- | arch/s390/include/asm/kvm_host.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h index d5bc3750616e..eef3dd3fd9a9 100644 --- a/arch/s390/include/asm/kvm_host.h +++ b/arch/s390/include/asm/kvm_host.h | |||
@@ -106,9 +106,22 @@ struct kvm_s390_sie_block { | |||
106 | __u64 gbea; /* 0x0180 */ | 106 | __u64 gbea; /* 0x0180 */ |
107 | __u8 reserved188[24]; /* 0x0188 */ | 107 | __u8 reserved188[24]; /* 0x0188 */ |
108 | __u32 fac; /* 0x01a0 */ | 108 | __u32 fac; /* 0x01a0 */ |
109 | __u8 reserved1a4[92]; /* 0x01a4 */ | 109 | __u8 reserved1a4[68]; /* 0x01a4 */ |
110 | __u64 itdba; /* 0x01e8 */ | ||
111 | __u8 reserved1f0[16]; /* 0x01f0 */ | ||
110 | } __attribute__((packed)); | 112 | } __attribute__((packed)); |
111 | 113 | ||
114 | struct kvm_s390_itdb { | ||
115 | __u8 data[256]; | ||
116 | } __packed; | ||
117 | |||
118 | struct sie_page { | ||
119 | struct kvm_s390_sie_block sie_block; | ||
120 | __u8 reserved200[1024]; /* 0x0200 */ | ||
121 | struct kvm_s390_itdb itdb; /* 0x0600 */ | ||
122 | __u8 reserved700[2304]; /* 0x0700 */ | ||
123 | } __packed; | ||
124 | |||
112 | struct kvm_vcpu_stat { | 125 | struct kvm_vcpu_stat { |
113 | u32 exit_userspace; | 126 | u32 exit_userspace; |
114 | u32 exit_null; | 127 | u32 exit_null; |