diff options
| author | Christoph Lameter <[email protected]> | 2007-06-08 13:46:49 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2007-06-08 17:23:33 -0700 |
| commit | 272c1d21d6fe42979068e14c04fb60fb6045ad74 (patch) | |
| tree | 6a365c67ed8575d15a59aa2183df609368359724 /include/linux/debugobjects.h | |
| parent | a17627ef8833ac30622a7b39b7be390e1b174405 (diff) | |
SLUB: return ZERO_SIZE_PTR for kmalloc(0)
Instead of returning the smallest available object return ZERO_SIZE_PTR.
A ZERO_SIZE_PTR can be legitimately used as an object pointer as long as it
is not deferenced. The dereference of ZERO_SIZE_PTR causes a distinctive
fault. kfree can handle a ZERO_SIZE_PTR in the same way as NULL.
This enables functions to use zero sized object. e.g. n = number of objects.
objects = kmalloc(n * sizeof(object));
for (i = 0; i < n; i++)
objects[i].x = y;
kfree(objects);
Signed-off-by: Christoph Lameter <[email protected]>
Acked-by: Pekka Enberg <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux/debugobjects.h')
0 files changed, 0 insertions, 0 deletions