diff options
author | Christoph Lameter <cl@linux.com> | 2012-09-04 19:06:14 -0400 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2012-09-05 05:00:35 -0400 |
commit | 79576102afc24fcc6627d7a15691e432d9a2eacb (patch) | |
tree | df44371aad955bc889f8d72b32b754ac1592ed60 /mm/slub.c | |
parent | e21827aadd77e33833eeb393de2e8675e9b399e2 (diff) |
mm/slub: Add debugging to verify correct cache use on kmem_cache_free()
Add additional debugging to check that the objects is actually from the cache
the caller claims. Doing so currently trips up some other debugging code. It
takes a lot to infer from that what was happening.
Reviewed-by: Glauber Costa <glommer@parallels.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
[ penberg@kernel.org: Use pr_err() ]
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r-- | mm/slub.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2614,6 +2614,13 @@ void kmem_cache_free(struct kmem_cache *s, void *x) | |||
2614 | 2614 | ||
2615 | page = virt_to_head_page(x); | 2615 | page = virt_to_head_page(x); |
2616 | 2616 | ||
2617 | if (kmem_cache_debug(s) && page->slab != s) { | ||
2618 | pr_err("kmem_cache_free: Wrong slab cache. %s but object" | ||
2619 | " is from %s\n", page->slab->name, s->name); | ||
2620 | WARN_ON_ONCE(1); | ||
2621 | return; | ||
2622 | } | ||
2623 | |||
2617 | slab_free(s, page, x, _RET_IP_); | 2624 | slab_free(s, page, x, _RET_IP_); |
2618 | 2625 | ||
2619 | trace_kmem_cache_free(_RET_IP_, x); | 2626 | trace_kmem_cache_free(_RET_IP_, x); |