Skip to content

Commit eb1871f

Browse files
author
Steven Rostedt
committed
tracing: left align location header in stack_trace
Ingo Molnar suggested, instead of: Depth Size Location (27 entries) ----- ---- -------- 0) 2880 48 lock_timer_base+0x2b/0x4f 1) 2832 80 __mod_timer+0x33/0xe0 2) 2752 16 __ide_set_handler+0x63/0x65 To have it be: Depth Size Location (27 entries) ----- ---- -------- 0) 2880 48 lock_timer_base+0x2b/0x4f 1) 2832 80 __mod_timer+0x33/0xe0 2) 2752 16 __ide_set_handler+0x63/0x65 Requested-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Steven Rostedt <srostedt@redhat.com>
1 parent 5cc9854 commit eb1871f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/trace/trace_stack.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,9 @@ static int t_show(struct seq_file *m, void *v)
262262
int size;
263263

264264
if (v == SEQ_START_TOKEN) {
265-
seq_printf(m, " Depth Size Location"
265+
seq_printf(m, " Depth Size Location"
266266
" (%d entries)\n"
267-
" ----- ---- --------\n",
267+
" ----- ---- --------\n",
268268
max_stack_trace.nr_entries);
269269

270270
if (!stack_tracer_enabled && !max_stack_size)

0 commit comments

Comments
 (0)