summary refs log tree commit diff
path: root/arch/s390/boot
diff options
context:
space:
mode:
authorSven Schnelle <svens@linux.ibm.com>2021-10-01 17:08:09 +0200
committerVasily Gorbik <gor@linux.ibm.com>2021-10-26 15:21:28 +0200
commit26c21aa485841fecb8514a8261f759d34576eb6a (patch)
tree3423420c8119ca8bf34dfa1ac3a9eca3819a7aaa /arch/s390/boot
parentc8f573eccb7398d7c198e547c630351e69af5ca1 (diff)
downloadlinux-26c21aa485841fecb8514a8261f759d34576eb6a.tar.gz
s390: rename last_break to pgm_last_break
With the upcoming BEAR enhancements last_break isn't really
unique, so rename it to pgm_last_break. This way it should
be more obvious that this is the last_break value that is
written by the hardware when a program check occurs.

Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
Reviewed-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot')
-rw-r--r--arch/s390/boot/pgm_check_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/boot/pgm_check_info.c b/arch/s390/boot/pgm_check_info.c
index 75bcbfa27941..c2a1defc79da 100644
--- a/arch/s390/boot/pgm_check_info.c
+++ b/arch/s390/boot/pgm_check_info.c
@@ -175,6 +175,6 @@ void print_pgm_check_info(void)
 			    gpregs[12], gpregs[13], gpregs[14], gpregs[15]);
 	print_stacktrace();
 	decompressor_printk("Last Breaking-Event-Address:\n");
-	decompressor_printk(" [<%016lx>] %pS\n", (unsigned long)S390_lowcore.breaking_event_addr,
-			    (void *)S390_lowcore.breaking_event_addr);
+	decompressor_printk(" [<%016lx>] %pS\n", (unsigned long)S390_lowcore.pgm_last_break,
+			    (void *)S390_lowcore.pgm_last_break);
 }