[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LNX.2.00.1010292354060.24561@swampdragon.chaosbits.net>
Date: Fri, 29 Oct 2010 23:58:39 +0200 (CEST)
From: Jesper Juhl <jj@...osbits.net>
To: Tejun Heo <tj@...nel.org>
cc: linux-kernel@...r.kernel.org, linux-mm@...ck.org
Subject: [PATCH] Zero memory more efficiently in
mm/percpu.c::pcpu_mem_alloc()
Don't do vmalloc() + memset() when vzalloc() will do.
Signed-off-by: Jesper Juhl <jj@...osbits.net>
---
percpu.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/mm/percpu.c b/mm/percpu.c
index efe8168..8d75223 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -294,9 +294,7 @@ static void *pcpu_mem_alloc(size_t size)
if (size <= PAGE_SIZE)
return kzalloc(size, GFP_KERNEL);
else {
- void *ptr = vmalloc(size);
- if (ptr)
- memset(ptr, 0, size);
+ void *ptr = vzalloc(size);
return ptr;
}
}
--
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