tracing: fix stack tracer header
authorSteven Rostedt <srostedt@redhat.com>
Thu, 12 Mar 2009 22:57:51 +0000 (18:57 -0400)
committerSteven Rostedt <srostedt@redhat.com>
Fri, 13 Mar 2009 01:15:01 +0000 (21:15 -0400)
The stack tracer use to look like this:

 # cat /debug/tracing/stack_trace
         Depth  Size      Location    (57 entries)
         -----  ----      --------
  0)     5088      16   mempool_alloc_slab+0x16/0x18
  1)     5072     144   mempool_alloc+0x4d/0xfe
  2)     4928      16   scsi_sg_alloc+0x48/0x4a [scsi_mod]

Now it looks like this:

 # cat /debug/tracing/stack_trace

        Depth    Size      Location    (57 entries)
        -----    ----      --------
  0)     5088      16   mempool_alloc_slab+0x16/0x18
  1)     5072     144   mempool_alloc+0x4d/0xfe
  2)     4928      16   scsi_sg_alloc+0x48/0x4a [scsi_mod]

Signed-off-by: Steven Rostedt <srostedt@redhat.com>
kernel/trace/trace_stack.c

index d0871bc0aca5d0f670f9363cf49489fd9e85cf0c..4564fd94b0cdf70ae494574103b0342a562b60fc 100644 (file)
@@ -251,9 +251,9 @@ static int t_show(struct seq_file *m, void *v)
        int size;
 
        if (v == SEQ_START_TOKEN) {
-               seq_printf(m, "        Depth   Size      Location"
+               seq_printf(m, "        Depth    Size      Location"
                           "    (%d entries)\n"
-                          "        -----   ----      --------\n",
+                          "        -----    ----      --------\n",
                           max_stack_trace.nr_entries);
                return 0;
        }
This page took 0.040991 seconds and 5 git commands to generate.