aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui/gtk/hists.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@kernel.org>2013-10-30 21:17:39 -0400
committerJiri Olsa <jolsa@kernel.org>2014-06-01 08:35:02 -0400
commit14135663f1d770bb057f8bf345e5436c985eb29c (patch)
tree390e9bb413cf8b6fb65375d339ce26b0ea2b5315 /tools/perf/ui/gtk/hists.c
parentb09955b2a3d5fd02ed31d279f8c0ac29b32abe83 (diff)
perf tools: Apply percent-limit to cumulative percentage
If -g cumulative option is given, it needs to show entries which don't have self overhead. So apply percent-limit to accumulated overhead percentage in this case. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Tested-by: Arun Sharma <asharma@fb.com> Tested-by: Rodrigo Campos <rodrigo@sdfg.com.ar> Cc: Frederic Weisbecker <fweisbec@gmail.com> Link: http://lkml.kernel.org/r/1401335910-16832-14-git-send-email-namhyung@kernel.org Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf/ui/gtk/hists.c')
-rw-r--r--tools/perf/ui/gtk/hists.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/perf/ui/gtk/hists.c b/tools/perf/ui/gtk/hists.c
index 7e5da4af98d8..03d6812d25dd 100644
--- a/tools/perf/ui/gtk/hists.c
+++ b/tools/perf/ui/gtk/hists.c
@@ -226,14 +226,12 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
226 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); 226 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
227 GtkTreeIter iter; 227 GtkTreeIter iter;
228 u64 total = hists__total_period(h->hists); 228 u64 total = hists__total_period(h->hists);
229 float percent = 0.0; 229 float percent;
230 230
231 if (h->filtered) 231 if (h->filtered)
232 continue; 232 continue;
233 233
234 if (total) 234 percent = hist_entry__get_percent_limit(h);
235 percent = h->stat.period * 100.0 / total;
236
237 if (percent < min_pcnt) 235 if (percent < min_pcnt)
238 continue; 236 continue;
239 237