diff options
-rw-r--r-- | mm/slab.c | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -592,6 +592,7 @@ static inline struct kmem_cache *page_get_cache(struct page *page) | |||
592 | { | 592 | { |
593 | if (unlikely(PageCompound(page))) | 593 | if (unlikely(PageCompound(page))) |
594 | page = (struct page *)page_private(page); | 594 | page = (struct page *)page_private(page); |
595 | BUG_ON(!PageSlab(page)); | ||
595 | return (struct kmem_cache *)page->lru.next; | 596 | return (struct kmem_cache *)page->lru.next; |
596 | } | 597 | } |
597 | 598 | ||
@@ -604,6 +605,7 @@ static inline struct slab *page_get_slab(struct page *page) | |||
604 | { | 605 | { |
605 | if (unlikely(PageCompound(page))) | 606 | if (unlikely(PageCompound(page))) |
606 | page = (struct page *)page_private(page); | 607 | page = (struct page *)page_private(page); |
608 | BUG_ON(!PageSlab(page)); | ||
607 | return (struct slab *)page->lru.prev; | 609 | return (struct slab *)page->lru.prev; |
608 | } | 610 | } |
609 | 611 | ||
@@ -2669,15 +2671,6 @@ static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp, | |||
2669 | kfree_debugcheck(objp); | 2671 | kfree_debugcheck(objp); |
2670 | page = virt_to_page(objp); | 2672 | page = virt_to_page(objp); |
2671 | 2673 | ||
2672 | if (page_get_cache(page) != cachep) { | ||
2673 | printk(KERN_ERR "mismatch in kmem_cache_free: expected " | ||
2674 | "cache %p, got %p\n", | ||
2675 | page_get_cache(page), cachep); | ||
2676 | printk(KERN_ERR "%p is %s.\n", cachep, cachep->name); | ||
2677 | printk(KERN_ERR "%p is %s.\n", page_get_cache(page), | ||
2678 | page_get_cache(page)->name); | ||
2679 | WARN_ON(1); | ||
2680 | } | ||
2681 | slabp = page_get_slab(page); | 2674 | slabp = page_get_slab(page); |
2682 | 2675 | ||
2683 | if (cachep->flags & SLAB_RED_ZONE) { | 2676 | if (cachep->flags & SLAB_RED_ZONE) { |
@@ -3393,6 +3386,8 @@ void kmem_cache_free(struct kmem_cache *cachep, void *objp) | |||
3393 | { | 3386 | { |
3394 | unsigned long flags; | 3387 | unsigned long flags; |
3395 | 3388 | ||
3389 | BUG_ON(virt_to_cache(objp) != cachep); | ||
3390 | |||
3396 | local_irq_save(flags); | 3391 | local_irq_save(flags); |
3397 | __cache_free(cachep, objp); | 3392 | __cache_free(cachep, objp); |
3398 | local_irq_restore(flags); | 3393 | local_irq_restore(flags); |