lkml.org 
[lkml]   [2005]   [Apr]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
SubjectRFC: turn kmalloc+memset(,0,) into kcalloc

Hi,

I noticed there are a number of places in the kernel that do:

ptr = kmalloc(n * size, ...)
if (!ptr)
goto out;
memset(ptr, 0, n * size);

It seems that these could be replaced by:

ptr = kcalloc(n, size, ...)
if (!ptr)
goto out;

saving a few bytes.

Most of the times the size isn't something "n * size", but simply "n".
These could be replaced by kcalloc(n, 1, ...) or we could create a
special "kmalloc_zero" function to do this without the need for the
extra "1" parameter.

A quick (and lame) grep through the tree shows about 1200 of these
cases. This means that about one quarter of all the kmallocs in the
kernel are actually zeroed right after allocation.

I could send patches to slowly clean this up, like Adrian Bunk did for
the static functions and Jesper Juhl for the kfree NULL checks.

There are pros and cons to doing this:

pros:
- smaller kernel image size
- smaller (and more readable) source code
- explicit interface to request zeroed data. If in the future we have
a good way of providing some zeroed-cachehot-super-duper-slabs, we can
allocate space from there and avoid the memset altogether

cons:
- the NULL test is done twice
- memset will not be optimized for constant sizes

The disadvantages don't seem to matter much for non-critical paths. For
really fast paths we should probably keep the kmalloc + memset.

Attached is a sample of what one of those patches would look like.

Would this be a good thing to clean up, or isn't it worth the effort at all?

--
Paulo Marques - www.grupopie.com

All that is necessary for the triumph of evil is that good men do nothing.
Edmund Burke (1729 - 1797)
--- ./lib/kobject_uevent.c.orig 2005-04-05 16:39:09.000000000 +0100
+++ ./lib/kobject_uevent.c 2005-04-05 17:01:26.000000000 +0100
@@ -234,10 +234,9 @@ void kobject_hotplug(struct kobject *kob
if (!action_string)
return;

- envp = kmalloc(NUM_ENVP * sizeof (char *), GFP_KERNEL);
+ envp = kmalloc_zero(NUM_ENVP * sizeof (char *), GFP_KERNEL);
if (!envp)
return;
- memset (envp, 0x00, NUM_ENVP * sizeof (char *));

buffer = kmalloc(BUFFER_SIZE, GFP_KERNEL);
if (!buffer)
\
 
 \ /
  Last update: 2005-04-06 13:31    [W:0.226 / U:0.152 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site