Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6:
slub: Disable NUMA remote node defragmentation by default

+2 -2
+2 -2
mm/slub.c
··· 2312 2312 2313 2313 s->refcount = 1; 2314 2314 #ifdef CONFIG_NUMA 2315 - s->remote_node_defrag_ratio = 100; 2315 + s->remote_node_defrag_ratio = 1000; 2316 2316 #endif 2317 2317 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA)) 2318 2318 goto error; ··· 4058 4058 if (err) 4059 4059 return err; 4060 4060 4061 - if (ratio < 100) 4061 + if (ratio <= 100) 4062 4062 s->remote_node_defrag_ratio = ratio * 10; 4063 4063 4064 4064 return length;