Commit d692ef6d authored by Christoph Lameter's avatar Christoph Lameter

slub: Remove useless checks in alloc_debug_processing

Alloc debug processing is never called with a NULL object pointer.
No reason to check for NULL.
Reviewed-by: default avatarPekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: default avatarChristoph Lameter <clameter@sgi.com>
parent e153362a
...@@ -852,7 +852,7 @@ static int alloc_debug_processing(struct kmem_cache *s, struct page *page, ...@@ -852,7 +852,7 @@ static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
if (!check_slab(s, page)) if (!check_slab(s, page))
goto bad; goto bad;
if (object && !on_freelist(s, page, object)) { if (!on_freelist(s, page, object)) {
object_err(s, page, object, "Object already allocated"); object_err(s, page, object, "Object already allocated");
goto bad; goto bad;
} }
...@@ -862,7 +862,7 @@ static int alloc_debug_processing(struct kmem_cache *s, struct page *page, ...@@ -862,7 +862,7 @@ static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
goto bad; goto bad;
} }
if (object && !check_object(s, page, object, 0)) if (!check_object(s, page, object, 0))
goto bad; goto bad;
/* Success perform special debug activities for allocs */ /* Success perform special debug activities for allocs */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment