Messages in this thread Patch in this message |  | | | Date | Mon, 15 Sep 2008 10:01:39 +0300 (EEST) | | From | Pekka J Enberg <> | | Subject | [GIT PULL] SLUB fixes for 2.6.27-rc6 | |
Hi Linus,
Please pull the latest SLAB git tree from:
git://git.kernel.org/pub/scm/linux/kernel/git/penberg/slab-2.6.git for-linus
The tree contains a small fix for SLUB /proc/slabinfo emulation from
Salman Qazi.
Pekka
Salman Qazi (1):
slub: fixed uninitialized counter in struct kmem_cache_node
mm/slub.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/mm/slub.c b/mm/slub.c
index fb486d5..0c83e6a 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -1932,6 +1932,7 @@ init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
INIT_LIST_HEAD(&n->partial);
#ifdef CONFIG_SLUB_DEBUG
atomic_long_set(&n->nr_slabs, 0);
+ atomic_long_set(&n->total_objects, 0);
INIT_LIST_HEAD(&n->full);
#endif
}
|  |