[PATCH] SLUB: Use WARN_ON instead of BUG_ON where appropriate

From: Pekka J Enberg
Date: Wed Jan 14 2009 - 10:20:34 EST


From: Pekka Enberg <penberg@xxxxxxxxxxxxxx>

It's better to WARN_ON and let the kernel limp along to increase the likelihood
of an user detecting the error and reporting it to us.

Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx>
---
mm/slub.c | 22 ++++++++++++++--------
1 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/mm/slub.c b/mm/slub.c
index 6392ae5..e4404a1 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1119,7 +1119,8 @@ static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
void *last;
void *p;

- BUG_ON(flags & GFP_SLAB_BUG_MASK);
+ if (WARN_ON(flags & GFP_SLAB_BUG_MASK))
+ return NULL;

page = allocate_slab(s,
flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
@@ -2746,12 +2747,13 @@ void kfree(const void *x)
return;

page = virt_to_head_page(x);
- if (unlikely(!PageSlab(page))) {
- BUG_ON(!PageCompound(page));
- put_page(page);
+ if (likely(PageSlab(page))) {
+ slab_free(page->slab, page, object, _RET_IP_);
return;
- }
- slab_free(page->slab, page, object, _RET_IP_);
+ } else if (WARN_ON(!PageCompound(page)))
+ return;
+
+ put_page(page);
}
EXPORT_SYMBOL(kfree);

@@ -4285,7 +4287,8 @@ static char *create_unique_id(struct kmem_cache *s)
char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
char *p = name;

- BUG_ON(!name);
+ if (WARN_ON(!name))
+ return NULL;

*p++ = ':';
/*
@@ -4304,7 +4307,8 @@ static char *create_unique_id(struct kmem_cache *s)
if (p != name + 1)
*p++ = '-';
p += sprintf(p, "%07d", s->size);
- BUG_ON(p > name + ID_STR_LENGTH - 1);
+ if (WARN_ON(p > name + ID_STR_LENGTH - 1))
+ return NULL;
return name;
}

@@ -4333,6 +4337,8 @@ static int sysfs_slab_add(struct kmem_cache *s)
* for the symlinks.
*/
name = create_unique_id(s);
+ if (!name)
+ return -EINVAL;
}

s->kobj.kset = slab_kset;
--
1.5.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/