Skip to content

Commit c2bd1e1

Browse files
rddunlapglaubitz
authored andcommitted
sh: mcount.S: fix build error when PRINTK is not enabled
Fix a build error in mcount.S when CONFIG_PRINTK is not enabled. Fixes this build error: sh2-linux-ld: arch/sh/lib/mcount.o: in function `stack_panic': (.text+0xec): undefined reference to `dump_stack' Fixes: e460ab2 ("sh: Fix up stack overflow check with ftrace disabled.") Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Suggested-by: Geert Uytterhoeven <geert@linux-m68k.org> Cc: stable@vger.kernel.org Reviewed-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Link: https://lore.kernel.org/r/20230306040037.20350-8-rdunlap@infradead.org Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
1 parent 644a9cf commit c2bd1e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/sh/Kconfig.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ config SH_STANDARD_BIOS
1515

1616
config STACK_DEBUG
1717
bool "Check for stack overflows"
18-
depends on DEBUG_KERNEL
18+
depends on DEBUG_KERNEL && PRINTK
1919
help
2020
This option will cause messages to be printed if free stack space
2121
drops below a certain limit. Saying Y here will add overhead to

0 commit comments

Comments
 (0)