Skip to content

Commit 40997d6

Browse files
Andi Kleenacmel
authored andcommitted
perf report: Display cycles in branch sort mode
Display the cycles by default in branch sort mode. To make enough room for the new column I removed dso_to. It is usually redundant with dso_from. Signed-off-by: Andi Kleen <ak@linux.intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: http://lkml.kernel.org/r/1437233094-12844-9-git-send-email-andi@firstfloor.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent a18b027 commit 40997d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/perf/util/sort.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ regex_t parent_regex;
99
const char default_parent_pattern[] = "^sys_|^do_page_fault";
1010
const char *parent_pattern = default_parent_pattern;
1111
const char default_sort_order[] = "comm,dso,symbol";
12-
const char default_branch_sort_order[] = "comm,dso_from,symbol_from,dso_to,symbol_to";
12+
const char default_branch_sort_order[] = "comm,dso_from,symbol_from,symbol_to,cycles";
1313
const char default_mem_sort_order[] = "local_weight,mem,sym,dso,symbol_daddr,dso_daddr,snoop,tlb,locked";
1414
const char default_top_sort_order[] = "dso,symbol";
1515
const char default_diff_sort_order[] = "dso,symbol";

0 commit comments

Comments
 (0)