diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-03-26 05:58:49 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-03-26 05:58:49 -0400 |
commit | 8bf8961332bd6393716297e1a2b628d88300b2f2 (patch) | |
tree | 818489cd348e38b2a6fa332e242ba0ebdebb3f5c /arch/s390/include | |
parent | 4b547a869db980cd32936bd4ad8f6a33371419ac (diff) | |
parent | f3dd18d444c757840920434e62809b6104081b06 (diff) |
Merge tag 'kvm-s390-next-5.7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux into HEAD
KVM: s390: cleanups for 5.7
- mark sie control block as 512 byte aligned
- use fallthrough;
Diffstat (limited to 'arch/s390/include')
-rw-r--r-- | arch/s390/include/asm/kvm_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h index 61115913a2c7..d6bcd34f3ec3 100644 --- a/arch/s390/include/asm/kvm_host.h +++ b/arch/s390/include/asm/kvm_host.h @@ -344,7 +344,7 @@ struct kvm_s390_sie_block { __u64 itdba; /* 0x01e8 */ __u64 riccbd; /* 0x01f0 */ __u64 gvrd; /* 0x01f8 */ -} __attribute__((packed)); +} __packed __aligned(512); struct kvm_s390_itdb { __u8 data[256]; |