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: fixed uninitialized counter in struct kmem_cache_node

+1
+1
mm/slub.c
··· 1932 1932 INIT_LIST_HEAD(&n->partial); 1933 1933 #ifdef CONFIG_SLUB_DEBUG 1934 1934 atomic_long_set(&n->nr_slabs, 0); 1935 + atomic_long_set(&n->total_objects, 0); 1935 1936 INIT_LIST_HEAD(&n->full); 1936 1937 #endif 1937 1938 }