Skip to content

Commit 3d65199

Browse files
efarmanhuth
authored andcommitted
pc-bios: s390x: Clear out leftover S390EP string
A Linux binary will have the string "S390EP" at address 0x10008, which is important in getting the guest up off the ground. In the case of a reboot (specifically chreipl going to a new device), we should defer to the PSW at address zero for the new config, which will re-write "S390EP" from the new image. Let's clear it out at this point so that a reipl to, say, a DASD passthrough device drives the IPL path from scratch without disrupting disrupting the order of operations for other boots. Rather than hardcoding the address of this magic (again), let's define it somewhere so that the two users are visibly related. Signed-off-by: Eric Farman <[email protected]> Message-Id: <[email protected]> Signed-off-by: Thomas Huth <[email protected]>
1 parent d8e5bbd commit 3d65199

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

pc-bios/s390-ccw/jump2ipl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void jump_to_low_kernel(void)
7878
* kernel start address (when jumping to the PSW-at-zero address instead,
7979
* the kernel startup code fails when we booted from a network device).
8080
*/
81-
if (!memcmp((char *)0x10008, "S390EP", 6)) {
81+
if (!memcmp((char *)S390EP, "S390EP", 6)) {
8282
jump_to_IPL_code(KERN_IMAGE_START);
8383
}
8484

pc-bios/s390-ccw/main.c

+6
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,12 @@ static void boot_setup(void)
178178
memcpy(lpmsg + 10, loadparm_str, 8);
179179
sclp_print(lpmsg);
180180

181+
/*
182+
* Clear out any potential S390EP magic (see jump_to_low_kernel()),
183+
* so we don't taint our decision-making process during a reboot.
184+
*/
185+
memset((char *)S390EP, 0, 6);
186+
181187
have_iplb = store_iplb(&iplb);
182188
}
183189

pc-bios/s390-ccw/s390-arch.h

+3
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ typedef struct LowCore {
9595

9696
extern LowCore *lowcore;
9797

98+
/* Location of "S390EP" in a Linux binary (see arch/s390/boot/head.S) */
99+
#define S390EP 0x10008
100+
98101
static inline void set_prefix(uint32_t address)
99102
{
100103
asm volatile("spx %0" : : "m" (address) : "memory");

0 commit comments

Comments
 (0)