aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesper Juhl <[email protected]>2010-10-30 21:56:26 +0200
committerIngo Molnar <[email protected]>2010-10-31 09:47:26 +0100
commit559fa6e76b271b98ff641fa2a968aa2439e43c28 (patch)
tree67c1c812b76587998ba423df55d8fb3cf9a69961
parent3985c7ce85039adacdf882904ca096f091d39346 (diff)
profile: Use vzalloc() rather than vmalloc() & memset()
There's no reason to memset() manually when we have vzalloc(). Signed-off-by: Jesper Juhl <[email protected]> Cc: Arjan van de Ven <[email protected]> Cc: William Irwin <[email protected]> LKML-Reference: <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--kernel/profile.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/profile.c b/kernel/profile.c
index 66f841b7fbd3..14c9f87b9fc9 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;