diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2017-06-21 16:49:15 +0200 |
---|---|---|
committer | Christian Borntraeger <borntraeger@de.ibm.com> | 2017-06-22 12:41:07 +0200 |
commit | 1cae025577f447fa69e55f194b1f3b078f5fbc25 (patch) | |
tree | b9cd388773eae59a94580b5ac8976b91616df5d5 /arch/s390/kvm/vsie.c | |
parent | 2c1a48f2e5ed31b881eaa003a6276818a4794485 (diff) | |
download | linux-stable-1cae025577f447fa69e55f194b1f3b078f5fbc25.tar.gz linux-stable-1cae025577f447fa69e55f194b1f3b078f5fbc25.tar.bz2 linux-stable-1cae025577f447fa69e55f194b1f3b078f5fbc25.zip |
KVM: s390: avoid packed attribute
For naturally aligned and sized data structures avoid superfluous
packed and aligned attributes.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Diffstat (limited to 'arch/s390/kvm/vsie.c')
-rw-r--r-- | arch/s390/kvm/vsie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kvm/vsie.c b/arch/s390/kvm/vsie.c index 4719ecb9ab42..e947657d82ac 100644 --- a/arch/s390/kvm/vsie.c +++ b/arch/s390/kvm/vsie.c @@ -35,7 +35,7 @@ struct vsie_page { __u8 reserved[0x0700 - 0x0218]; /* 0x0218 */ struct kvm_s390_crypto_cb crycb; /* 0x0700 */ __u8 fac[S390_ARCH_FAC_LIST_SIZE_BYTE]; /* 0x0800 */ -} __packed; +}; /* trigger a validity icpt for the given scb */ static int set_validity_icpt(struct kvm_s390_sie_block *scb, |