]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
perf report: Create a symbol_conf flag for showing branch flag counting
authorJin Yao <yao.jin@linux.intel.com>
Mon, 31 Oct 2016 01:19:50 +0000 (09:19 +0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 14 Nov 2016 16:23:42 +0000 (13:23 -0300)
Create a new flag show_branchflag_count in symbol_conf. The flag is used
to control if showing the branch flag counting information. The flag
depends on if the perf.data has branch data and if user chooses the
"branch-history" option in perf report command line.

Signed-off-by: Yao Jin <yao.jin@linux.intel.com>
Acked-by: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Linux-kernel@vger.kernel.org
Cc: Yao Jin <yao.jin@linux.intel.com>
Link: http://lkml.kernel.org/r/1477876794-30749-3-git-send-email-yao.jin@linux.intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-report.c
tools/perf/util/symbol.h

index 8064de8ceedc44a05321ae22f762f32002e0aab9..3dfbfffe2ecdbc5bb31a2640a8c65d35284a6717 100644 (file)
@@ -911,6 +911,9 @@ repeat:
        if (itrace_synth_opts.last_branch)
                has_br_stack = true;
 
+       if (has_br_stack && branch_call_mode)
+               symbol_conf.show_branchflag_count = true;
+
        /*
         * Branch mode is a tristate:
         * -1 means default, so decide based on the file having branch data.
index d964844eb3141fa1b94b1a39c8db05557b4f50d6..2d0a905c879af272932a4769b4acb5479f3e8672 100644 (file)
@@ -100,6 +100,7 @@ struct symbol_conf {
                        show_total_period,
                        use_callchain,
                        cumulate_callchain,
+                       show_branchflag_count,
                        exclude_other,
                        show_cpu_utilization,
                        initialized,