Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 583b33bc authored by Hongjie Yang's avatar Hongjie Yang Committed by Martin Schwidefsky
Browse files

[S390] incorrect reipl nss name.



/sys/firmware/reipl/nss/name contains the nss name when defsys or
savesys command has been executed. If the defsys or savesys command
fails the kernel_nss_name has to be cleared since a reipl on that
nss name won't be possible.

Signed-off-by: default avatarHongjie Yang <hongjie@us.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 208e5591
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -88,13 +88,17 @@ static noinline __init void create_kernel_nss(void)

	__cpcmd(defsys_cmd, NULL, 0, &response);

	if (response != 0)
	if (response != 0) {
		kernel_nss_name[0] = '\0';
		return;
	}

	__cpcmd(savesys_cmd, NULL, 0, &response);

	if (response != strlen(savesys_cmd))
	if (response != strlen(savesys_cmd)) {
		kernel_nss_name[0] = '\0';
		return;
	}

	ipl_flags = IPL_NSS_VALID;
}