projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a1bca6c
)
perf stat: Allow tab as cvs delimiter
author
Jim Cromie
<jim.cromie@gmail.com>
Wed, 7 Sep 2011 23:14:03 +0000
(17:14 -0600)
committer
Arnaldo Carvalho de Melo
<acme@redhat.com>
Thu, 29 Sep 2011 20:04:30 +0000
(17:04 -0300)
If option -x '\t' is given, convert '\t' to "\t". This makes cvs
printing more flexible.
Link:
http://lkml.kernel.org/r/1315437244-3788-5-git-send-email-jim.cromie@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-stat.c
patch
|
blob
|
history
diff --git
a/tools/perf/builtin-stat.c
b/tools/perf/builtin-stat.c
index
076eda5
..
0ffbd97
100644
(file)
--- a/
tools/perf/builtin-stat.c
+++ b/
tools/perf/builtin-stat.c
@@
-1198,9
+1198,11
@@
int cmd_stat(int argc, const char **argv, const char *prefix __used)
}
}
- if (csv_sep)
+ if (csv_sep)
{
csv_output = true;
- else
+ if (!strcmp(csv_sep, "\\t"))
+ csv_sep = "\t";
+ } else
csv_sep = DEFAULT_SEPARATOR;
/*