Merge branch 'slab-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6

* 'slab-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
slub: Fix bad boundary check in init_kmem_cache_nodes()

+1 -1
+1 -1
mm/slub.c
··· 2153 2153 int local_node; 2154 2154 2155 2155 if (slab_state >= UP && (s < kmalloc_caches || 2156 - s > kmalloc_caches + KMALLOC_CACHES)) 2156 + s >= kmalloc_caches + KMALLOC_CACHES)) 2157 2157 local_node = page_to_nid(virt_to_page(s)); 2158 2158 else 2159 2159 local_node = 0;