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>
This commit is contained in:
Namhyung Kim 2014-05-07 18:42:24 +09:00 committed by Jiri Olsa
parent cfaa154b23
commit 1c89fe9b04
4 changed files with 36 additions and 0 deletions

View file

@ -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();
}