Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 169479
b: refs/heads/master
c: da21d1b
h: refs/heads/master
i:
  169477: e47bce7
  169475: bcd482d
  169471: 81ebf26
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo authored and Ingo Molnar committed Oct 8, 2009
1 parent 4965451 commit f2eed37
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9a92b479b2f088ee2d3194243f4c8e59b1b8c9c2
refs/heads/master: da21d1b547cbaa2c026cf645753651c25d340923
4 changes: 2 additions & 2 deletions trunk/tools/perf/builtin-annotate.c
Original file line number Diff line number Diff line change
Expand Up @@ -658,10 +658,10 @@ static int __cmd_annotate(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();
Expand Down
4 changes: 2 additions & 2 deletions trunk/tools/perf/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 2 additions & 2 deletions trunk/tools/perf/util/symbol.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit f2eed37

Please sign in to comment.