diff options
author | Namhyung Kim <namhyung@kernel.org> | 2014-03-18 06:31:39 +0400 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-05-21 13:45:35 +0400 |
commit | 512ae1bd6acb811c72e44e2540099eccd31f773d (patch) | |
tree | dce8f54594f284e88b113ffd60584869dcb32479 /tools/perf/builtin-top.c | |
parent | a2ce067e55e328f1a6fe3dddf77a173381ffdfe1 (diff) | |
download | linux-512ae1bd6acb811c72e44e2540099eccd31f773d.tar.xz |
perf tools: Consolidate management of default sort orders
The perf uses different default sort orders for different use-cases,
and this was scattered throughout the code. Add get_default_sort_
order() function to handle this and change initial value of sort_order
to NULL to distinguish it from user-given one.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1400480762-22852-10-git-send-email-namhyung@kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r-- | tools/perf/builtin-top.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 4fef1e415129..34764b6eabf9 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c @@ -1137,8 +1137,7 @@ int cmd_top(int argc, const char **argv, const char *prefix __maybe_unused) if (argc) usage_with_options(top_usage, options); - if (sort_order == default_sort_order) - sort_order = "dso,symbol"; + sort__mode = SORT_MODE__TOP; if (setup_sorting() < 0) { parse_options_usage(top_usage, options, "s", 1); |