--- mm/slub.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: linux-2.6/mm/slub.c =================================================================== --- linux-2.6.orig/mm/slub.c 2008-02-28 18:20:19.554781407 -0800 +++ linux-2.6/mm/slub.c 2008-02-28 18:20:23.778818656 -0800 @@ -2244,7 +2244,8 @@ static int calculate_sizes(struct kmem_c /* * Determine the number of objects per slab */ - s->objects = max_t(unsigned long, s->objects, (PAGE_SIZE << s->order) / size); + s->objects = max_t(unsigned long, s->objects, + (PAGE_SIZE << s->order) / size); s->objects0 = PAGE_SIZE / size; return !!s->objects;