diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-10-19 10:04:26 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-10-19 21:07:18 +0200 |
commit | 13b1fdce8d46027f346c0533a4323b58e2b5bad8 (patch) | |
tree | 9cefbc4934f6dab79ebd5c9326996233a1589d72 /tools/perf/builtin-bench.c | |
parent | perf bench mem: Fix 'length' vs. 'size' naming confusion (diff) | |
download | linux-13b1fdce8d46027f346c0533a4323b58e2b5bad8.tar.xz linux-13b1fdce8d46027f346c0533a4323b58e2b5bad8.zip |
perf bench mem: Improve user visible strings
- fix various typos in user visible output strings
- make the output consistent (wrt. capitalization and spelling)
- offer the list of routines to benchmark on '-r help'.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Hitoshi Mitake <mitake@dcl.info.waseda.ac.jp>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1445241870-24854-11-git-send-email-mingo@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-bench.c')
-rw-r--r-- | tools/perf/builtin-bench.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/builtin-bench.c b/tools/perf/builtin-bench.c index 1b585213ba5a..a8fc948c8ace 100644 --- a/tools/perf/builtin-bench.c +++ b/tools/perf/builtin-bench.c @@ -49,9 +49,9 @@ static struct bench sched_benchmarks[] = { }; static struct bench mem_benchmarks[] = { - { "memcpy", "Benchmark for memcpy()", bench_mem_memcpy }, - { "memset", "Benchmark for memset() tests", bench_mem_memset }, - { "all", "Test all memory benchmarks", NULL }, + { "memcpy", "Benchmark for memcpy() functions", bench_mem_memcpy }, + { "memset", "Benchmark for memset() functions", bench_mem_memset }, + { "all", "Test all memory access benchmarks", NULL }, { NULL, NULL, NULL } }; |