Skip to content

Commit 7717aef

Browse files
heicarstMartin Schwidefsky
authored andcommitted
[S390] Fix struct _lowcore layout.
Offsets and sizes are wrong for 32 bit. Got broken with 866ba28 "[S390] cleanup lowcore.h". Reported-by: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
1 parent 959153d commit 7717aef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/s390/include/asm/lowcore.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,12 +293,12 @@ struct _lowcore
293293
__u64 clock_comparator; /* 0x02d0 */
294294
__u32 machine_flags; /* 0x02d8 */
295295
__u32 ftrace_func; /* 0x02dc */
296-
__u8 pad_0x02f0[0x0300-0x02f0]; /* 0x02f0 */
296+
__u8 pad_0x02e0[0x0300-0x02e0]; /* 0x02e0 */
297297

298298
/* Interrupt response block */
299299
__u8 irb[64]; /* 0x0300 */
300300

301-
__u8 pad_0x0400[0x0e00-0x0400]; /* 0x0400 */
301+
__u8 pad_0x0340[0x0e00-0x0340]; /* 0x0340 */
302302

303303
/*
304304
* 0xe00 contains the address of the IPL Parameter Information

0 commit comments

Comments
 (0)