diff options
-rw-r--r-- | arch/s390/include/asm/lowcore.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/s390/include/asm/lowcore.h b/arch/s390/include/asm/lowcore.h index a47c6e221a95..47853debb3b9 100644 --- a/arch/s390/include/asm/lowcore.h +++ b/arch/s390/include/asm/lowcore.h | |||
@@ -302,7 +302,12 @@ struct _lowcore { | |||
302 | */ | 302 | */ |
303 | __u64 ipib; /* 0x0e00 */ | 303 | __u64 ipib; /* 0x0e00 */ |
304 | __u32 ipib_checksum; /* 0x0e08 */ | 304 | __u32 ipib_checksum; /* 0x0e08 */ |
305 | __u64 vmcore_info; /* 0x0e0c */ | 305 | /* |
306 | * Because the vmcore_info pointer is not 8 byte aligned it never | ||
307 | * should not be accessed directly. For accessing the pointer, first | ||
308 | * copy it to a local pointer variable. | ||
309 | */ | ||
310 | __u8 vmcore_info[8]; /* 0x0e0c */ | ||
306 | __u8 pad_0x0e14[0x0e18-0x0e14]; /* 0x0e14 */ | 311 | __u8 pad_0x0e14[0x0e18-0x0e14]; /* 0x0e14 */ |
307 | __u64 os_info; /* 0x0e18 */ | 312 | __u64 os_info; /* 0x0e18 */ |
308 | __u8 pad_0x0e20[0x0f00-0x0e20]; /* 0x0e20 */ | 313 | __u8 pad_0x0e20[0x0f00-0x0e20]; /* 0x0e20 */ |