diff options
| author | Peter Zijlstra <[email protected]> | 2007-07-26 20:01:38 +0200 |
|---|---|---|
| committer | Christoph Lameter <[email protected]> | 2007-07-30 12:12:39 -0700 |
| commit | 02febdf7f62f2fbfa89ca9dc5d929beea89c96b1 (patch) | |
| tree | 8138189066b52f8a4cc4b2ad7b82ce800def8bb9 | |
| parent | 9c837fb692b005203765d8a569a2fe43fdff9df1 (diff) | |
slub: add lock debugging check
Ingo noticed that the SLUB code does include the lock debugging free
check.
Signed-off-by: Peter Zijlstra <[email protected]>
Acked-by: Ingo Molnar <[email protected]>
Acked-by: Pekka Enberg <[email protected]>
Signed-off-by: Christoph Lameter <[email protected]>
| -rw-r--r-- | mm/slub.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/slub.c b/mm/slub.c index 9b2d6178d06c..221809f1c135 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -1656,6 +1656,7 @@ static void __always_inline slab_free(struct kmem_cache *s, unsigned long flags; local_irq_save(flags); + debug_check_no_locks_freed(object, s->objsize); if (likely(page == s->cpu_slab[smp_processor_id()] && !SlabDebug(page))) { object[page->offset] = page->lockless_freelist; |