]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
KVM: s390: Add explicit padding to struct kvm_s390_keyop
authorArnd Bergmann <arnd@arndb.de>
Fri, 6 Feb 2026 09:17:30 +0000 (10:17 +0100)
committerClaudio Imbrenda <imbrenda@linux.ibm.com>
Fri, 6 Feb 2026 10:40:36 +0000 (11:40 +0100)
The newly added structure causes a warning about implied padding:

./usr/include/linux/kvm.h:1247:1: error: padding struct size to alignment boundary with 6 bytes [-Werror=padded]

The padding can lead to leaking kernel data and ABI incompatibilies
when used on x86. Neither of these is a problem in this specific
patch, but it's best to avoid it and use explicit padding fields
in general.

Fixes: 0ee4ddc1647b ("KVM: s390: Storage key manipulation IOCTL")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
Signed-off-by: Claudio Imbrenda <imbrenda@linux.ibm.com>
include/uapi/linux/kvm.h

index ab3d3d96e75fc7d9c72ac26927af7c5a0958bbae..d4250ab662fe12f5c3e9727d842194cd464e5e32 100644 (file)
@@ -1227,6 +1227,7 @@ struct kvm_s390_keyop {
        __u64 guest_addr;
        __u8  key;
        __u8  operation;
+       __u8  pad[6];
 };
 
 /*