diff options
author | Sven Schnelle <svens@linux.ibm.com> | 2022-05-02 11:12:09 +0200 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2022-05-11 14:40:57 +0200 |
commit | 03780c83c78546310c084ef3df69da2a0bafbcb5 (patch) | |
tree | 4d63a3c67049492a554f356d29ffdd0f97e1fc3f /arch/s390/include | |
parent | 39d62336f5c126ad6dccdf66cd249f2d0e86d3c9 (diff) | |
download | linux-next-03780c83c78546310c084ef3df69da2a0bafbcb5.tar.gz |
s390/stp: fix todoff size
The size of the TOD offset field in the stp info response is 64 bits.
Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
Reviewed-by: Heiko Carstens <hca@de.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/include')
-rw-r--r-- | arch/s390/include/asm/stp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/include/asm/stp.h b/arch/s390/include/asm/stp.h index ba07463897c1..4d74d7e33340 100644 --- a/arch/s390/include/asm/stp.h +++ b/arch/s390/include/asm/stp.h @@ -44,8 +44,8 @@ struct stp_sstpi { u32 : 32; u32 ctnid[3]; u32 : 32; - u32 todoff[4]; - u32 rsvd[48]; + u64 todoff; + u32 rsvd[50]; } __packed; struct stp_tzib { |