[<prev] [next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.64.0803261047270.29812@schroedinger.engr.sgi.com>
Date: Wed, 26 Mar 2008 10:50:47 -0700 (PDT)
From: Christoph Lameter <clameter@....com>
To: torvalds@...ux-foundation.org
cc: akpm@...ux-foundation.org, Pekka J Enberg <penberg@...helsinki.fi>,
linux-kernel@...r.kernel.org
Subject: [git pull] slab fixes for 2.6.25-rc7
Another fix to the memoryless node support in SLAB and a patch to avoid a
compiler warning in SLUB if neither CONFIG_SLABINFO nor CONFIG_SLUB_DEBUG
is et.
The following changes since commit 05dda977f2574c3341abef9b74c27d2b362e1e3a:
Linus Torvalds (1):
Linux 2.6.25-rc7
are available in the git repository at:
git://master.kernel.org/pub/scm/linux/kernel/git/christoph/vm.git slab-linus
Christoph Lameter (1):
count_partial() is not used if !SLUB_DEBUG and !CONFIG_SLABINFO
Daniel Yeisley (1):
slab: fix cache_cache bootstrap in kmem_cache_init()
mm/slab.c | 4 ++--
mm/slub.c | 2 ++
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/mm/slab.c b/mm/slab.c
index bb4070e..04b308c 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -1481,7 +1481,7 @@ void __init kmem_cache_init(void)
list_add(&cache_cache.next, &cache_chain);
cache_cache.colour_off = cache_line_size();
cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
- cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE];
+ cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
/*
* struct kmem_cache size depends on nr_node_ids, which
@@ -1602,7 +1602,7 @@ void __init kmem_cache_init(void)
int nid;
for_each_online_node(nid) {
- init_list(&cache_cache, &initkmem_list3[CACHE_CACHE], nid);
+ init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
init_list(malloc_sizes[INDEX_AC].cs_cachep,
&initkmem_list3[SIZE_AC + nid], nid);
diff --git a/mm/slub.c b/mm/slub.c
index ca71d5b..b72bc98 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2685,6 +2685,7 @@ void kfree(const void *x)
}
EXPORT_SYMBOL(kfree);
+#if defined(SLUB_DEBUG) || defined(CONFIG_SLABINFO)
static unsigned long count_partial(struct kmem_cache_node *n)
{
unsigned long flags;
@@ -2697,6 +2698,7 @@ static unsigned long count_partial(struct kmem_cache_node *n)
spin_unlock_irqrestore(&n->list_lock, flags);
return x;
}
+#endif
/*
* kmem_cache_shrink removes empty slabs from the partial lists and sorts
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists