Skip to content

Commit

Permalink
[PATCH] x86_64: adjust kstack_depth_to_print default
Browse files Browse the repository at this point in the history
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 <jbeulich@novell.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Jan Beulich authored and Linus Torvalds committed Jun 26, 2006
1 parent bdbdaa7 commit cab093b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86_64/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cab093b

Please sign in to comment.