diff options
author | Christoph Lameter <cl@linux.com> | 2010-08-20 12:37:12 -0500 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2010-10-02 10:24:26 +0300 |
commit | 1537066c69bee9ebc4b998626c532ce1724d4e67 (patch) | |
tree | 914bc354a286b6e14cf8f69f831f4656d9a49636 /mm | |
parent | 899611ee7d373e5eeda08e9a8632684e1ebbbf00 (diff) | |
download | op-kernel-dev-1537066c69bee9ebc4b998626c532ce1724d4e67.zip op-kernel-dev-1537066c69bee9ebc4b998626c532ce1724d4e67.tar.gz |
slub: Force no inlining of debug functions
Compiler folds the debgging functions into the critical paths.
Avoid that by adding noinline to the functions that check for
problems.
Acked-by: David Rientjes <rientjes@google.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/slub.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -862,7 +862,7 @@ static void setup_object_debug(struct kmem_cache *s, struct page *page, init_tracking(s, object); } -static int alloc_debug_processing(struct kmem_cache *s, struct page *page, +static noinline int alloc_debug_processing(struct kmem_cache *s, struct page *page, void *object, unsigned long addr) { if (!check_slab(s, page)) @@ -902,8 +902,8 @@ bad: return 0; } -static int free_debug_processing(struct kmem_cache *s, struct page *page, - void *object, unsigned long addr) +static noinline int free_debug_processing(struct kmem_cache *s, + struct page *page, void *object, unsigned long addr) { if (!check_slab(s, page)) goto fail; |