Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 26738
b: refs/heads/master
c: a4523a8
h: refs/heads/master
v: v3
  • Loading branch information
Roland Dreier authored and Linus Torvalds committed May 16, 2006
1 parent ebc5db6 commit 1660bd7
Show file tree
Hide file tree
Showing 2 changed files with 8 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: 40e59a61669a3cab9e0bd24644e29155d6b00970
refs/heads/master: a4523a8b38089478f93bc053c31f678c63f5ee1b
11 changes: 7 additions & 4 deletions trunk/mm/slab.c
Original file line number Diff line number Diff line change
Expand Up @@ -2200,11 +2200,14 @@ static void drain_cpu_caches(struct kmem_cache *cachep)
check_irq_on();
for_each_online_node(node) {
l3 = cachep->nodelists[node];
if (l3) {
if (l3 && l3->alien)
drain_alien_cache(cachep, l3->alien);
}

for_each_online_node(node) {
l3 = cachep->nodelists[node];
if (l3)
drain_array(cachep, l3, l3->shared, 1, node);
if (l3->alien)
drain_alien_cache(cachep, l3->alien);
}
}
}

Expand Down

0 comments on commit 1660bd7

Please sign in to comment.