Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Vasily Gorbik and committed by
Alexander Gordeev
d2ebe06b 70309dc7

+1 -1
+1 -1
arch/s390/kernel/early.c
··· 59 59 { 60 60 #ifdef CONFIG_KASAN 61 61 init_task.kasan_depth = 0; 62 - sclp_early_printk("KernelAddressSanitizer initialized\n"); 62 + pr_info("KernelAddressSanitizer initialized\n"); 63 63 #endif 64 64 } 65 65