summaryrefslogtreecommitdiffstats
path: root/mm/slub.c
diff options
context:
space:
mode:
authorVegard Nossum2007-12-05 08:45:30 +0100
committerLinus Torvalds2007-12-05 18:21:20 +0100
commit294a80a8ed004b383ab214837e1c05ca4098a717 (patch)
tree2cbf9d33ccafa5042dbde85641d4ca27dcf47dc5 /mm/slub.c
parentproc: fix proc_dir_entry refcounting (diff)
downloadkernel-qcow2-linux-294a80a8ed004b383ab214837e1c05ca4098a717.tar.gz
kernel-qcow2-linux-294a80a8ed004b383ab214837e1c05ca4098a717.tar.xz
kernel-qcow2-linux-294a80a8ed004b383ab214837e1c05ca4098a717.zip
SLUB's ksize() fails for size > 2048
I can't pass memory allocated by kmalloc() to ksize() if it is allocated by SLUB allocator and size is larger than (I guess) PAGE_SIZE / 2. The error of ksize() seems to be that it does not check if the allocation was made by SLUB or the page allocator. Reviewed-by: Pekka Enberg <penberg@cs.helsinki.fi> Tested-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Christoph Lameter <clameter@sgi.com>, Matt Mackall <mpm@selenic.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r--mm/slub.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mm/slub.c b/mm/slub.c
index 9acb413858ac..b9f37cb0f2e6 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2558,8 +2558,12 @@ size_t ksize(const void *object)
if (unlikely(object == ZERO_SIZE_PTR))
return 0;
- page = get_object_page(object);
+ page = virt_to_head_page(object);
BUG_ON(!page);
+
+ if (unlikely(!PageSlab(page)))
+ return PAGE_SIZE << compound_order(page);
+
s = page->slab;
BUG_ON(!s);