diff options
author | Namhyung Kim <namhyung@kernel.org> | 2014-05-07 18:42:24 +0900 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-05-21 11:45:37 +0200 |
commit | 1c89fe9b0447f0ce393325e51911f8073432b7b4 (patch) | |
tree | 9e2c8db963acb19364e3469711d666757aa69caa /tools/perf/util/sort.c | |
parent | cfaa154b2335d4c8efdfcb65d9b12e944d1b74a6 (diff) | |
download | linux-1c89fe9b0447f0ce393325e51911f8073432b7b4.tar.bz2 |
perf tools: Introduce reset_output_field()
The reset_output_field() function is for clearing output field
settings and will be used for test code in later patch.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1400480762-22852-19-git-send-email-namhyung@kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf/util/sort.c')
-rw-r--r-- | tools/perf/util/sort.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c index d9132069d3b1..901b9bece2ee 100644 --- a/tools/perf/util/sort.c +++ b/tools/perf/util/sort.c @@ -1573,3 +1573,14 @@ int setup_sorting(void) return 0; } + +void reset_output_field(void) +{ + sort__need_collapse = 0; + sort__has_parent = 0; + sort__has_sym = 0; + sort__has_dso = 0; + + reset_dimensions(); + perf_hpp__reset_output_field(); +} |