Skip to content

Commit 9d646c9

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
Pull s390 bugfix from Martin Schwidefsky: "One last s390 patch for 4.12 Revert the re-IPL semantics back to the v4.7 state. It turned out that the memory layout may change due to memory hotplug if load-normal is used" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux: s390/ipl: revert Load Normal semantics for LPAR CCW-type re-IPL
2 parents c0bc126 + 4130b28 commit 9d646c9

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

arch/s390/kernel/ipl.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,6 @@ static struct kset *ipl_kset;
564564

565565
static void __ipl_run(void *unused)
566566
{
567-
if (MACHINE_IS_LPAR && ipl_info.type == IPL_TYPE_CCW)
568-
diag308(DIAG308_LOAD_NORMAL_DUMP, NULL);
569567
diag308(DIAG308_LOAD_CLEAR, NULL);
570568
if (MACHINE_IS_VM)
571569
__cpcmd("IPL", NULL, 0, NULL);
@@ -1088,10 +1086,7 @@ static void __reipl_run(void *unused)
10881086
break;
10891087
case REIPL_METHOD_CCW_DIAG:
10901088
diag308(DIAG308_SET, reipl_block_ccw);
1091-
if (MACHINE_IS_LPAR)
1092-
diag308(DIAG308_LOAD_NORMAL_DUMP, NULL);
1093-
else
1094-
diag308(DIAG308_LOAD_CLEAR, NULL);
1089+
diag308(DIAG308_LOAD_CLEAR, NULL);
10951090
break;
10961091
case REIPL_METHOD_FCP_RW_DIAG:
10971092
diag308(DIAG308_SET, reipl_block_fcp);

0 commit comments

Comments
 (0)