1
0
Fork 0

perf tools: Make output_field_add and sort_dimension__add global

Will be used from external places in the upcoming c2c patch series.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Joe Mario <jmario@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1474558645-19956-6-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
hifive-unleashed-5.1
Jiri Olsa 2016-09-22 17:36:33 +02:00 committed by Arnaldo Carvalho de Melo
parent bcf98740a2
commit a76490e4cd
2 changed files with 8 additions and 4 deletions

View File

@ -2308,9 +2308,9 @@ int hpp_dimension__add_output(unsigned col)
return __hpp_dimension__add_output(&perf_hpp_list, &hpp_sort_dimensions[col]); return __hpp_dimension__add_output(&perf_hpp_list, &hpp_sort_dimensions[col]);
} }
static int sort_dimension__add(struct perf_hpp_list *list, const char *tok, int sort_dimension__add(struct perf_hpp_list *list, const char *tok,
struct perf_evlist *evlist, struct perf_evlist *evlist,
int level) int level)
{ {
unsigned int i; unsigned int i;
@ -2685,7 +2685,7 @@ void sort__setup_elide(FILE *output)
} }
} }
static int output_field_add(struct perf_hpp_list *list, char *tok) int output_field_add(struct perf_hpp_list *list, char *tok)
{ {
unsigned int i; unsigned int i;

View File

@ -270,4 +270,8 @@ bool is_strict_order(const char *order);
int hpp_dimension__add_output(unsigned col); int hpp_dimension__add_output(unsigned col);
void reset_dimensions(void); void reset_dimensions(void);
int sort_dimension__add(struct perf_hpp_list *list, const char *tok,
struct perf_evlist *evlist,
int level);
int output_field_add(struct perf_hpp_list *list, char *tok);
#endif /* __PERF_SORT_H */ #endif /* __PERF_SORT_H */