summaryrefslogtreecommitdiff
path: root/arch/s390/include/asm/boot_data.h
diff options
context:
space:
mode:
authorVasily Gorbik <gor@linux.ibm.com>2019-04-01 20:10:51 +0300
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2019-04-10 18:47:11 +0300
commit1e941d39493f1820475d80729a03cd7ab8c3c86d (patch)
tree97ece5ef80810878061b3ee04175361f2a26e41e /arch/s390/include/asm/boot_data.h
parentbf9921a9c15bad089c08b94c300a6cafa035a612 (diff)
downloadlinux-1e941d39493f1820475d80729a03cd7ab8c3c86d.tar.xz
s390: move ipl block to .boot.preserved.data section
.boot.preserved.data is a better fit for ipl block than .boot.data which is discarded after init. Reusing .boot.preserved.data allows to simplify code a little bit and avoid copying data from .boot.data to persistent variables. Signed-off-by: Vasily Gorbik <gor@linux.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/boot_data.h')
-rw-r--r--arch/s390/include/asm/boot_data.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/include/asm/boot_data.h b/arch/s390/include/asm/boot_data.h
index 2d999ccb977a..d794802a2291 100644
--- a/arch/s390/include/asm/boot_data.h
+++ b/arch/s390/include/asm/boot_data.h
@@ -5,7 +5,7 @@
#include <asm/ipl.h>
extern char early_command_line[COMMAND_LINE_SIZE];
-extern struct ipl_parameter_block early_ipl_block;
-extern int early_ipl_block_valid;
+extern struct ipl_parameter_block ipl_block;
+extern int ipl_block_valid;
#endif /* _ASM_S390_BOOT_DATA_H */