Skip to content

Commit

Permalink
slub: remove unused argument of init_kmem_cache_node()
Browse files Browse the repository at this point in the history
We don't use the argument since commit 3b89d7d
('slub: move min_partial to struct kmem_cache'), so remove it

Acked-by: Christoph Lameter <[email protected]>
Acked-by: David Rientjes <[email protected]>
Signed-off-by: Joonsoo Kim <[email protected]>
Signed-off-by: Pekka Enberg <[email protected]>
  • Loading branch information
JoonsooKim authored and penberg committed May 16, 2012
1 parent 601d39d commit 4053497
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mm/slub.c
Original file line number Diff line number Diff line change
Expand Up @@ -2766,7 +2766,7 @@ static unsigned long calculate_alignment(unsigned long flags,
}

static void
init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
init_kmem_cache_node(struct kmem_cache_node *n)
{
n->nr_partial = 0;
spin_lock_init(&n->list_lock);
Expand Down Expand Up @@ -2836,7 +2836,7 @@ static void early_kmem_cache_node_alloc(int node)
init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
init_tracking(kmem_cache_node, n);
#endif
init_kmem_cache_node(n, kmem_cache_node);
init_kmem_cache_node(n);
inc_slabs_node(kmem_cache_node, node, page->objects);

add_partial(n, page, DEACTIVATE_TO_HEAD);
Expand Down Expand Up @@ -2876,7 +2876,7 @@ static int init_kmem_cache_nodes(struct kmem_cache *s)
}

s->node[node] = n;
init_kmem_cache_node(n, s);
init_kmem_cache_node(n);
}
return 1;
}
Expand Down Expand Up @@ -3625,7 +3625,7 @@ static int slab_mem_going_online_callback(void *arg)
ret = -ENOMEM;
goto out;
}
init_kmem_cache_node(n, s);
init_kmem_cache_node(n);
s->node[nid] = n;
}
out:
Expand Down

0 comments on commit 4053497

Please sign in to comment.