Skip to content

Commit

Permalink
slub: Fix up missing kmalloc_cache -> kmem_cache_node case for memory…
Browse files Browse the repository at this point in the history
…hotplug

Memory hotplug allocates and frees per node structures. Use the correct name.

Acked-by: David Rientjes <rientjes@google.com>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
  • Loading branch information
Christoph Lameter authored and Pekka Enberg committed Oct 2, 2010
1 parent 7d550c5 commit 8de66a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mm/slub.c
Original file line number Diff line number Diff line change
Expand Up @@ -2909,7 +2909,7 @@ static void slab_mem_offline_callback(void *arg)
BUG_ON(slabs_node(s, offline_node));

s->node[offline_node] = NULL;
kmem_cache_free(kmalloc_caches, n);
kmem_cache_free(kmem_cache_node, n);
}
}
up_read(&slub_lock);
Expand Down Expand Up @@ -2942,7 +2942,7 @@ static int slab_mem_going_online_callback(void *arg)
* since memory is not yet available from the node that
* is brought up.
*/
n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
if (!n) {
ret = -ENOMEM;
goto out;
Expand Down

0 comments on commit 8de66a0

Please sign in to comment.