commit | 24cbc7e9cb0488095e4e144a762276c85ff55f9b | [log] [tgz] |
---|---|---|
author | Avi Kivity <avi@qumranet.com> | Tue Jul 17 11:45:55 2007 +0300 |
committer | Avi Kivity <avi@qumranet.com> | Sat Oct 13 10:18:17 2007 +0200 |
tree | edcd9287db085d197fd9935a4c29817bbcd6b3f9 | |
parent | dad3795d2baa4e02cbfd161d9089c73dea16b4ba [diff] |
KVM: Future-proof the exit information union ABI Note that as the size of struct kvm_run is not part of the ABI, we can add things at the end. Signed-off-by: Avi Kivity <avi@qumranet.com>
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index e6edca8..b9a4b7c 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h
@@ -111,6 +111,8 @@ __u32 longmode; __u32 pad; } hypercall; + /* Fix the size of the union. */ + char padding[256]; }; };