summaryrefslogtreecommitdiff
path: root/mm/slab.c
diff options
context:
space:
mode:
authorThierry Reding <thierry.reding@avionic-design.de>2012-06-22 19:42:49 +0200
committerPekka Enberg <penberg@kernel.org>2012-07-02 13:42:18 +0300
commit0672aa7c236ada6c636e68b2ac2aa135169e6e18 (patch)
tree4a850fc42f70b4d7cc322af2deb7f97fc1ed1955 /mm/slab.c
parenta618e89f1e6fb3cdfc8ef0ad54a0d57830bf8881 (diff)
mm, slab: Build fix for recent kmem_cache changes
Commit 3b0efdf ("mm, sl[aou]b: Extract common fields from struct kmem_cache") renamed the kmem_cache structure's "next" field to "list" but forgot to update one instance in leaks_show(). Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slab.c')
-rw-r--r--mm/slab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slab.c b/mm/slab.c
index bb7965253159..d95ad4c37f64 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -4533,7 +4533,7 @@ static void show_symbol(struct seq_file *m, unsigned long address)
static int leaks_show(struct seq_file *m, void *p)
{
- struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
+ struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
struct slab *slabp;
struct kmem_list3 *l3;
const char *name;