diff options
-rw-r--r-- | mm/slub.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1084,7 +1084,7 @@ static inline struct page *alloc_slab_page(gfp_t flags, int node, | |||
1084 | if (node == -1) | 1084 | if (node == -1) |
1085 | return alloc_pages(flags, order); | 1085 | return alloc_pages(flags, order); |
1086 | else | 1086 | else |
1087 | return alloc_pages_node(node, flags, order); | 1087 | return alloc_pages_exact_node(node, flags, order); |
1088 | } | 1088 | } |
1089 | 1089 | ||
1090 | static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node) | 1090 | static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node) |