Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6

* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6:
[PARISC] slub: fix panic with DISCONTIGMEM
[PARISC] set memory ranges in N_NORMAL_MEMORY when onlined

+4 -1
+3 -1
arch/parisc/mm/init.c
··· 266 266 } 267 267 memset(pfnnid_map, 0xff, sizeof(pfnnid_map)); 268 268 269 - for (i = 0; i < npmem_ranges; i++) 269 + for (i = 0; i < npmem_ranges; i++) { 270 + node_set_state(i, N_NORMAL_MEMORY); 270 271 node_set_online(i); 272 + } 271 273 #endif 272 274 273 275 /*
+1
init/Kconfig
··· 1226 1226 per cpu and per node queues. 1227 1227 1228 1228 config SLUB 1229 + depends on BROKEN || NUMA || !DISCONTIGMEM 1229 1230 bool "SLUB (Unqueued Allocator)" 1230 1231 help 1231 1232 SLUB is a slab allocator that minimizes cache line usage