[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LNX.2.00.1010302150310.1572@swampdragon.chaosbits.net>
Date: Sat, 30 Oct 2010 21:56:26 +0200 (CEST)
From: Jesper Juhl <jj@...osbits.net>
To: linux-kernel@...r.kernel.org
cc: Arjan van de Ven <arjan@...radead.org>,
Ingo Molnar <mingo@...e.hu>,
William Irwin <wli@...omorphy.com>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] profile: Use vzalloc rather than vmalloc & memset
Hi,
There's no reason to memset() manually when we have vzalloc().
Signed-off-by: Jesper Juhl <jj@...osbits.net>
---
profile.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
Compile tested only.
diff --git a/kernel/profile.c b/kernel/profile.c
index 66f841b..14c9f87 100644
--- a/kernel/profile.c
+++ b/kernel/profile.c
@@ -126,11 +126,9 @@ int __ref profile_init(void)
if (prof_buffer)
return 0;
- prof_buffer = vmalloc(buffer_bytes);
- if (prof_buffer) {
- memset(prof_buffer, 0, buffer_bytes);
+ prof_buffer = vzalloc(buffer_bytes);
+ if (prof_buffer)
return 0;
- }
free_cpumask_var(prof_cpu_mask);
return -ENOMEM;
--
Jesper Juhl <jj@...osbits.net> http://www.chaosbits.net/
Plain text mails only, please http://www.expita.com/nomime.html
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists