Index: linux-2.6.21-rc2/mm/slub.c =================================================================== --- linux-2.6.21-rc2.orig/mm/slub.c 2007-03-02 17:41:01.000000000 -0800 +++ linux-2.6.21-rc2/mm/slub.c 2007-03-02 17:41:12.000000000 -0800 @@ -1362,7 +1362,7 @@ * Single object slabs are passed through to the page allocator * and therefore the checks we can do are limited. */ - if (size * 2 >= (PAGE_SIZE << calculate_order(tentative_size))) + if (size * 2 > (PAGE_SIZE << calculate_order(tentative_size))) flags &= ~(SLAB_RED_ZONE | SLAB_DEBUG_FREE | \ SLAB_STORE_USER | SLAB_POISON); Index: linux-2.6.21-rc2/fs/proc/proc_misc.c =================================================================== --- linux-2.6.21-rc2.orig/fs/proc/proc_misc.c 2007-03-02 18:28:30.000000000 -0800 +++ linux-2.6.21-rc2/fs/proc/proc_misc.c 2007-03-02 18:30:25.000000000 -0800 @@ -419,8 +419,8 @@ { return seq_open(file, &slabinfo_op); } -static const struct file_operations proc_slubinfo_operations = { - .open = slubinfo_open, +static const struct file_operations proc_slabinfo_operations = { + .open = slabinfo_open, .read = seq_read, .write = slabinfo_write, .llseek = seq_lseek,