diff options
author | Jan Beulich <jbeulich@suse.com> | 2012-01-24 13:03:22 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-01-24 23:25:32 +0100 |
commit | be3de80dc2e671d9ee15e69fe9cd84d2b71e2225 (patch) | |
tree | 8c9519ac9c6235ad8469d3f8d7ef2da660840bc5 /tools/perf/builtin-bench.c | |
parent | perf bench: Also allow measuring alternative memcpy implementations (diff) | |
download | linux-be3de80dc2e671d9ee15e69fe9cd84d2b71e2225.tar.xz linux-be3de80dc2e671d9ee15e69fe9cd84d2b71e2225.zip |
perf bench: Also allow measuring memset()
This simply clones the respective memcpy() implementation.
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/4F16D743020000780006D735@nat28.tlf.novell.com
Signed-off-by: Jan Beulich <jbeulich@suse.com>
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 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/builtin-bench.c b/tools/perf/builtin-bench.c index fcb96269852a..b0e74ab2d7a2 100644 --- a/tools/perf/builtin-bench.c +++ b/tools/perf/builtin-bench.c @@ -52,6 +52,9 @@ static struct bench_suite mem_suites[] = { { "memcpy", "Simple memory copy in various ways", bench_mem_memcpy }, + { "memset", + "Simple memory set in various ways", + bench_mem_memset }, suite_all, { NULL, NULL, |