diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-11-24 09:05:16 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-24 10:37:02 -0500 |
commit | 364794845cbc49e638b83d7ef739524291e1e961 (patch) | |
tree | e720975b26d307d6566afb9305c9f6e44290a7da /tools/perf/bench | |
parent | b32d133aec5dc882cf783a293f393bfb3f4379e1 (diff) |
perf tools: Introduce zalloc() for the common calloc(1, N) case
This way we type less characters and it looks more like the
kzalloc kernel counterpart.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1259071517-3242-3-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/bench')
-rw-r--r-- | tools/perf/bench/mem-memcpy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/bench/mem-memcpy.c b/tools/perf/bench/mem-memcpy.c index 5165fd1d8d2c..89773178e894 100644 --- a/tools/perf/bench/mem-memcpy.c +++ b/tools/perf/bench/mem-memcpy.c | |||
@@ -127,11 +127,11 @@ int bench_mem_memcpy(int argc, const char **argv, | |||
127 | return 1; | 127 | return 1; |
128 | } | 128 | } |
129 | 129 | ||
130 | dst = calloc(length, sizeof(char)); | 130 | dst = zalloc(length); |
131 | if (!dst) | 131 | if (!dst) |
132 | die("memory allocation failed - maybe length is too large?\n"); | 132 | die("memory allocation failed - maybe length is too large?\n"); |
133 | 133 | ||
134 | src = calloc(length, sizeof(char)); | 134 | src = zalloc(length); |
135 | if (!src) | 135 | if (!src) |
136 | die("memory allocation failed - maybe length is too large?\n"); | 136 | die("memory allocation failed - maybe length is too large?\n"); |
137 | 137 | ||