KVM: Future-proof device assignment ABI

Reserve some space so we can add more data.

Signed-off-by: Avi Kivity <avi@qumranet.com>

+6
+6
include/linux/kvm.h
··· 489 489 __u32 busnr; 490 490 __u32 devfn; 491 491 __u32 flags; 492 + union { 493 + __u32 reserved[12]; 494 + }; 492 495 }; 493 496 494 497 struct kvm_assigned_irq { ··· 499 496 __u32 host_irq; 500 497 __u32 guest_irq; 501 498 __u32 flags; 499 + union { 500 + __u32 reserved[12]; 501 + }; 502 502 }; 503 503 504 504 #define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0)