From: Jan Beulich Date: Mon, 26 Jun 2006 11:59:26 +0000 (+0200) Subject: [PATCH] x86_64: adjust kstack_depth_to_print default X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cab093b9d4b40c71c6261a11ba8f1ca027e09008;p=linux-beck.git [PATCH] x86_64: adjust kstack_depth_to_print default Defaulting to a value not evenly divisible by four makes little sense, as four values are displayed per line (and hence the rest of the line would otherwise be wasted). Signed-off-by: Jan Beulich Signed-off-by: Andi Kleen Signed-off-by: Linus Torvalds --- diff --git a/arch/x86_64/kernel/traps.c b/arch/x86_64/kernel/traps.c index bd0891f4c2c7..08f24359bfc1 100644 --- a/arch/x86_64/kernel/traps.c +++ b/arch/x86_64/kernel/traps.c @@ -106,7 +106,7 @@ static inline void preempt_conditional_cli(struct pt_regs *regs) preempt_enable_no_resched(); } -static int kstack_depth_to_print = 10; +static int kstack_depth_to_print = 12; static int call_trace = 1; #ifdef CONFIG_KALLSYMS