Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 191311
b: refs/heads/master
c: 39d1e1b
h: refs/heads/master
i:
  191309: 0484410
  191307: ca614a3
  191303: 22d8c2f
  191295: 0d5e83c
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed May 9, 2010
1 parent d4f983e commit 874c503
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 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: 139633c6a43781cd44798165b0472a34bf53a1e8
refs/heads/master: 39d1e1b1e26dc84d40bf2792287d0d61e44b57df
16 changes: 7 additions & 9 deletions trunk/tools/perf/builtin-report.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static int perf_session__add_hist_entry(struct perf_session *self,
struct map_symbol *syms = NULL;
struct symbol *parent = NULL;
bool hit;
int err;
int err = -ENOMEM;
struct hist_entry *he;
struct event_stat_id *stats;
struct perf_event_attr *attr;
Expand All @@ -101,26 +101,24 @@ static int perf_session__add_hist_entry(struct perf_session *self,
else
stats = get_stats(self, data->id, 0, 0);
if (stats == NULL)
return -ENOMEM;
goto out_free_syms;
he = __perf_session__add_hist_entry(&stats->hists, al, parent,
data->period, &hit);
if (he == NULL)
return -ENOMEM;
goto out_free_syms;

if (hit)
__perf_session__add_count(he, al, data->period);

err = 0;
if (symbol_conf.use_callchain) {
if (!hit)
callchain_init(he->callchain);
err = append_chain(he->callchain, data->callchain, syms);
free(syms);

if (err)
return err;
}

return 0;
out_free_syms:
free(syms);
return err;
}

static int add_event_total(struct perf_session *session,
Expand Down

0 comments on commit 874c503

Please sign in to comment.