Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 269083
b: refs/heads/master
c: df71d95
h: refs/heads/master
i:
  269081: 7267d05
  269079: c8fedb6
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed Oct 13, 2011
1 parent ad0e6cd commit 1858afd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 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: 900e14a8f5a49e987790b93c7906989b22075f1b
refs/heads/master: df71d95f86ec7310722f96b6902699f3fe30b439
10 changes: 8 additions & 2 deletions trunk/tools/perf/util/hist.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ static void hist_entry__decay(struct hist_entry *he)

static bool hists__decay_entry(struct hists *hists, struct hist_entry *he)
{
if (he->period == 0)
return true;
hists->stats.total_period -= he->period;
hist_entry__decay(he);
hists->stats.total_period += he->period;
Expand All @@ -114,8 +116,12 @@ void hists__decay_entries(struct hists *hists)
while (next) {
n = rb_entry(next, struct hist_entry, rb_node);
next = rb_next(&n->rb_node);

if (hists__decay_entry(hists, n)) {
/*
* We may be annotating this, for instance, so keep it here in
* case some it gets new samples, we'll eventually free it when
* the user stops browsing and it agains gets fully decayed.
*/
if (hists__decay_entry(hists, n) && !n->used) {
rb_erase(&n->rb_node, &hists->entries);

if (sort__need_collapse)
Expand Down
1 change: 1 addition & 0 deletions trunk/tools/perf/util/sort.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ struct hist_entry {

bool init_have_children;
char level;
bool used;
u8 filtered;
struct symbol *parent;
union {
Expand Down
6 changes: 5 additions & 1 deletion trunk/tools/perf/util/ui/browsers/hists.c
Original file line number Diff line number Diff line change
Expand Up @@ -976,9 +976,13 @@ static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events,
he = hist_browser__selected_entry(browser);
if (he == NULL)
continue;

/*
* Don't let this be freed, say, by hists__decay_entry.
*/
he->used = true;
hist_entry__tui_annotate(he, evsel->idx, nr_events,
timer, arg, delay_secs);
he->used = false;
ui_browser__update_nr_entries(&browser->b, browser->hists->nr_entries);
} else if (choice == browse_map)
map__browse(browser->selection->map);
Expand Down

0 comments on commit 1858afd

Please sign in to comment.