aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2012-09-06 11:46:56 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-09-07 20:50:11 -0400
commit0ca0c130419a4aa05d28fbecc5d360f051944251 (patch)
treea60a4bdd8e20a31a73511f7780c7ca4df94e70e3
parent863e451f69ddf255e877567e325298edd3b21519 (diff)
perf tools: Replace sort's standalone field_sep with symbol_conf.field_sep
The repsep_snprintf function was still using standalone field_sep, which not even set anymore. Replacing it with 'symbol_conf.field_sep'. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1346946426-13496-3-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/util/sort.c6
-rw-r--r--tools/perf/util/sort.h1
2 files changed, 2 insertions, 5 deletions
diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c
index 0f5a0a496bc4..7a2fbd8855b7 100644
--- a/tools/perf/util/sort.c
+++ b/tools/perf/util/sort.c
@@ -12,8 +12,6 @@ int sort__branch_mode = -1; /* -1 = means not set */
12 12
13enum sort_type sort__first_dimension; 13enum sort_type sort__first_dimension;
14 14
15char * field_sep;
16
17LIST_HEAD(hist_entry__sort_list); 15LIST_HEAD(hist_entry__sort_list);
18 16
19static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...) 17static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...)
@@ -23,11 +21,11 @@ static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...)
23 21
24 va_start(ap, fmt); 22 va_start(ap, fmt);
25 n = vsnprintf(bf, size, fmt, ap); 23 n = vsnprintf(bf, size, fmt, ap);
26 if (field_sep && n > 0) { 24 if (symbol_conf.field_sep && n > 0) {
27 char *sep = bf; 25 char *sep = bf;
28 26
29 while (1) { 27 while (1) {
30 sep = strchr(sep, *field_sep); 28 sep = strchr(sep, *symbol_conf.field_sep);
31 if (sep == NULL) 29 if (sep == NULL)
32 break; 30 break;
33 *sep = '.'; 31 *sep = '.';
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h
index e724b26acd51..e459c981b039 100644
--- a/tools/perf/util/sort.h
+++ b/tools/perf/util/sort.h
@@ -32,7 +32,6 @@ extern const char default_sort_order[];
32extern int sort__need_collapse; 32extern int sort__need_collapse;
33extern int sort__has_parent; 33extern int sort__has_parent;
34extern int sort__branch_mode; 34extern int sort__branch_mode;
35extern char *field_sep;
36extern struct sort_entry sort_comm; 35extern struct sort_entry sort_comm;
37extern struct sort_entry sort_dso; 36extern struct sort_entry sort_dso;
38extern struct sort_entry sort_sym; 37extern struct sort_entry sort_sym;