Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 310130
b: refs/heads/master
c: 4053497
h: refs/heads/master
v: v3
  • Loading branch information
Joonsoo Kim authored and Pekka Enberg committed May 16, 2012
1 parent cc6d553 commit 445dfaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 601d39d00c2af206d10d1252132a85316d95499a
refs/heads/master: 4053497d6a37715f4b20dcc180a52717b4c8ffba
8 changes: 4 additions & 4 deletions trunk/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 445dfaa

Please sign in to comment.