Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215939
b: refs/heads/master
c: 8df275a
h: refs/heads/master
i:
  215937: af67aed
  215935: 497a1c2
v: v3
  • Loading branch information
David Rientjes authored and Pekka Enberg committed Oct 2, 2010
1 parent 7213d81 commit b819eb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: c1d508365ea07f9f8849c7da5b02186601570f8b
refs/heads/master: 8df275af8db8220d7e3f1bf97b6ac7aad05f96f0
4 changes: 3 additions & 1 deletion trunk/mm/slob.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,9 @@ void *__kmalloc_node(size_t size, gfp_t gfp, int node)
} else {
unsigned int order = get_order(size);

ret = slob_new_pages(gfp | __GFP_COMP, get_order(size), node);
if (likely(order))
gfp |= __GFP_COMP;
ret = slob_new_pages(gfp, order, node);
if (ret) {
struct page *page;
page = virt_to_page(ret);
Expand Down

0 comments on commit b819eb4

Please sign in to comment.