diff options
author | Jan Beulich <jbeulich@suse.com> | 2012-01-24 07:03:22 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-01-24 17:25:32 -0500 |
commit | be3de80dc2e671d9ee15e69fe9cd84d2b71e2225 (patch) | |
tree | 8c9519ac9c6235ad8469d3f8d7ef2da660840bc5 /tools/perf/Makefile | |
parent | 800eb01484b3ca1eaf4eb5186df13fb24de2db19 (diff) |
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/Makefile')
-rw-r--r-- | tools/perf/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index ac86d67b636e..599031ac69ac 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -61,7 +61,7 @@ ifeq ($(ARCH),x86_64) | |||
61 | ifeq (${IS_X86_64}, 1) | 61 | ifeq (${IS_X86_64}, 1) |
62 | RAW_ARCH := x86_64 | 62 | RAW_ARCH := x86_64 |
63 | ARCH_CFLAGS := -DARCH_X86_64 | 63 | ARCH_CFLAGS := -DARCH_X86_64 |
64 | ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S | 64 | ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S |
65 | endif | 65 | endif |
66 | endif | 66 | endif |
67 | 67 | ||
@@ -362,8 +362,10 @@ BUILTIN_OBJS += $(OUTPUT)bench/sched-messaging.o | |||
362 | BUILTIN_OBJS += $(OUTPUT)bench/sched-pipe.o | 362 | BUILTIN_OBJS += $(OUTPUT)bench/sched-pipe.o |
363 | ifeq ($(RAW_ARCH),x86_64) | 363 | ifeq ($(RAW_ARCH),x86_64) |
364 | BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy-x86-64-asm.o | 364 | BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy-x86-64-asm.o |
365 | BUILTIN_OBJS += $(OUTPUT)bench/mem-memset-x86-64-asm.o | ||
365 | endif | 366 | endif |
366 | BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy.o | 367 | BUILTIN_OBJS += $(OUTPUT)bench/mem-memcpy.o |
368 | BUILTIN_OBJS += $(OUTPUT)bench/mem-memset.o | ||
367 | 369 | ||
368 | BUILTIN_OBJS += $(OUTPUT)builtin-diff.o | 370 | BUILTIN_OBJS += $(OUTPUT)builtin-diff.o |
369 | BUILTIN_OBJS += $(OUTPUT)builtin-evlist.o | 371 | BUILTIN_OBJS += $(OUTPUT)builtin-evlist.o |