Browse Source

slub statistics: Fix check for DEACTIVATE_REMOTE_FREES

The remote frees are in the freelist of the page and not in the
percpu freelist.

Reviewed-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Christoph Lameter 17 years ago
parent
commit
b773ad7369
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mm/slub.c

+ 1 - 1
mm/slub.c

@@ -1368,7 +1368,7 @@ static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
 	struct page *page = c->page;
 	struct page *page = c->page;
 	int tail = 1;
 	int tail = 1;
 
 
-	if (c->freelist)
+	if (page->freelist)
 		stat(c, DEACTIVATE_REMOTE_FREES);
 		stat(c, DEACTIVATE_REMOTE_FREES);
 	/*
 	/*
 	 * Merge cpu freelist into slab freelist. Typically we get here
 	 * Merge cpu freelist into slab freelist. Typically we get here