diff options
author | 2024-11-29 12:57:44 +0100 | |
---|---|---|
committer | 2025-01-26 17:24:02 +0100 | |
commit | d2ebe06bf5a18714b74cda0eea60bbb10553477e (patch) | |
tree | edc2711857c4bf96513396b504507564978a83b8 | |
parent | s390/boot: Add timestamps to early boot messages (diff) | |
download | wireguard-linux-d2ebe06bf5a18714b74cda0eea60bbb10553477e.tar.xz wireguard-linux-d2ebe06bf5a18714b74cda0eea60bbb10553477e.zip |
s390: Use pr_info for "KernelAddressSanitizer initialized" message
sclp_early_printk() ignores boot console debug settings and prints
unconditionally. It also prints message without any timestamp
or formatting. Convert it to pr_info().
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
-rw-r--r-- | arch/s390/kernel/early.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/early.c b/arch/s390/kernel/early.c index 4cdf3bf33052..2fa25164df7d 100644 --- a/arch/s390/kernel/early.c +++ b/arch/s390/kernel/early.c @@ -59,7 +59,7 @@ static void __init kasan_early_init(void) { #ifdef CONFIG_KASAN init_task.kasan_depth = 0; - sclp_early_printk("KernelAddressSanitizer initialized\n"); + pr_info("KernelAddressSanitizer initialized\n"); #endif } |