diff options
Diffstat (limited to 'include/linux/kvm.h')
-rw-r--r-- | include/linux/kvm.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index b3af92e7bf5d..c0d10cd8088e 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
@@ -234,6 +234,12 @@ struct kvm_cpuid { | |||
234 | struct kvm_cpuid_entry entries[0]; | 234 | struct kvm_cpuid_entry entries[0]; |
235 | }; | 235 | }; |
236 | 236 | ||
237 | /* for KVM_SET_SIGNAL_MASK */ | ||
238 | struct kvm_signal_mask { | ||
239 | __u32 len; | ||
240 | __u8 sigset[0]; | ||
241 | }; | ||
242 | |||
237 | #define KVMIO 0xAE | 243 | #define KVMIO 0xAE |
238 | 244 | ||
239 | /* | 245 | /* |
@@ -273,5 +279,6 @@ struct kvm_cpuid { | |||
273 | #define KVM_GET_MSRS _IOWR(KVMIO, 0x88, struct kvm_msrs) | 279 | #define KVM_GET_MSRS _IOWR(KVMIO, 0x88, struct kvm_msrs) |
274 | #define KVM_SET_MSRS _IOW(KVMIO, 0x89, struct kvm_msrs) | 280 | #define KVM_SET_MSRS _IOW(KVMIO, 0x89, struct kvm_msrs) |
275 | #define KVM_SET_CPUID _IOW(KVMIO, 0x8a, struct kvm_cpuid) | 281 | #define KVM_SET_CPUID _IOW(KVMIO, 0x8a, struct kvm_cpuid) |
282 | #define KVM_SET_SIGNAL_MASK _IOW(KVMIO, 0x8b, struct kvm_signal_mask) | ||
276 | 283 | ||
277 | #endif | 284 | #endif |