perf tools: Up the verbose level for some really verbose stuff
authorArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 7 Oct 2009 13:49:00 +0000 (10:49 -0300)
committerIngo Molnar <mingo@elte.hu>
Thu, 8 Oct 2009 17:27:10 +0000 (19:27 +0200)
Like printing every symbol created.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
LKML-Reference: <1254923340-4870-1-git-send-email-acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
tools/perf/builtin-annotate.c
tools/perf/builtin-report.c
tools/perf/util/symbol.c

index 35ed97b..8c84320 100644 (file)
@@ -658,10 +658,10 @@ more:
        if (dump_trace)
                return 0;
 
-       if (verbose >= 3)
+       if (verbose > 3)
                threads__fprintf(stdout, &threads);
 
-       if (verbose >= 2)
+       if (verbose > 2)
                dsos__fprintf(stdout);
 
        collapse__resort();
index 87c4582..f57a23b 100644 (file)
@@ -880,10 +880,10 @@ static int __cmd_report(void)
        if (dump_trace)
                return 0;
 
-       if (verbose >= 3)
+       if (verbose > 3)
                threads__fprintf(stdout, &threads);
 
-       if (verbose >= 2)
+       if (verbose > 2)
                dsos__fprintf(stdout);
 
        collapse__resort();
index 582ce72..a6887f9 100644 (file)
@@ -74,7 +74,7 @@ static struct symbol *symbol__new(u64 start, u64 len, const char *name,
        if (!self)
                return NULL;
 
-       if (v >= 2)
+       if (v > 2)
                printf("new symbol: %016Lx [%08lx]: %s, hist: %p\n",
                        start, (unsigned long)len, name, self->hist);
 
@@ -685,7 +685,7 @@ static int dso__load_sym(struct dso *self, struct map *map, const char *name,
                }
 
                if (self->adjust_symbols) {
-                       if (v >= 2)
+                       if (v > 2)
                                printf("adjusting symbol: st_value: %Lx sh_addr: %Lx sh_offset: %Lx\n",
                                        (u64)sym.st_value, (u64)shdr.sh_addr, (u64)shdr.sh_offset);