diff options
author | Ingo Molnar <mingo@elte.hu> | 2011-03-11 11:28:31 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-03-11 11:28:31 +0300 |
commit | 137ee20ddd10fdc20600c389fe63edab0c39cb1a (patch) | |
tree | f2f9db93cbbe1929d2c3380658a546a748181dc9 /tools/perf/builtin-top.c | |
parent | 4a0b1665db09cf2da9ad7d0f12da386373c10bfa (diff) | |
parent | 1c0b04d10bbe35279c50e3b36cf5b8ec2a0050d8 (diff) | |
download | linux-137ee20ddd10fdc20600c389fe63edab0c39cb1a.tar.xz |
Merge branch 'perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 into perf/core
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r-- | tools/perf/builtin-top.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 417f757e3cbe..80c9e062bd5b 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -883,7 +883,6 @@ try_again: static int __cmd_top(void) { pthread_t thread; - struct perf_evsel *first; int ret __used; /* * FIXME: perf_session__new should allow passing a O_MMAP, so that all this @@ -900,8 +899,8 @@ static int __cmd_top(void) perf_event__synthesize_threads(perf_event__process, session); start_counters(top.evlist); - first = list_entry(top.evlist->entries.next, struct perf_evsel, node); - perf_session__set_sample_type(session, first->attr.sample_type); + session->evlist = top.evlist; + perf_session__update_sample_type(session); /* Wait for a minimal set of events before starting the snapshot */ poll(top.evlist->pollfd, top.evlist->nr_fds, 100); |