From ed80b895128880fcc97ec4a28ae5d2daa635cf18 Mon Sep 17 00:00:00 2001 From: Ezequiel Garcia Date: Sat, 8 Sep 2012 17:47:51 -0300 Subject: [PATCH] --- yaml --- r: 330421 b: refs/heads/master c: 90f2cbbc49a8fe5a49cea1d362d90e377b949d49 h: refs/heads/master i: 330419: 6d3826906d02eb84dda0bda2ea0f0e2b8874a667 v: v3 --- [refs] | 2 +- trunk/include/linux/slob_def.h | 6 ++++-- trunk/mm/slob.c | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index e4047c2c60e0..b3d19946d033 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 645df230cacc48f4463037016e9dbd3633183fe8 +refs/heads/master: 90f2cbbc49a8fe5a49cea1d362d90e377b949d49 diff --git a/trunk/include/linux/slob_def.h b/trunk/include/linux/slob_def.h index 0ec00b39d006..f28e14a12e3f 100644 --- a/trunk/include/linux/slob_def.h +++ b/trunk/include/linux/slob_def.h @@ -1,12 +1,14 @@ #ifndef __LINUX_SLOB_DEF_H #define __LINUX_SLOB_DEF_H +#include + void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags) { - return kmem_cache_alloc_node(cachep, flags, -1); + return kmem_cache_alloc_node(cachep, flags, NUMA_NO_NODE); } void *__kmalloc_node(size_t size, gfp_t flags, int node); @@ -26,7 +28,7 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) */ static __always_inline void *kmalloc(size_t size, gfp_t flags) { - return __kmalloc_node(size, flags, -1); + return __kmalloc_node(size, flags, NUMA_NO_NODE); } static __always_inline void *__kmalloc(size_t size, gfp_t flags) diff --git a/trunk/mm/slob.c b/trunk/mm/slob.c index 45d4ca79933a..191e1713a6d9 100644 --- a/trunk/mm/slob.c +++ b/trunk/mm/slob.c @@ -194,7 +194,7 @@ static void *slob_new_pages(gfp_t gfp, int order, int node) void *page; #ifdef CONFIG_NUMA - if (node != -1) + if (node != NUMA_NO_NODE) page = alloc_pages_exact_node(node, gfp, order); else #endif @@ -290,7 +290,7 @@ static void *slob_alloc(size_t size, gfp_t gfp, int align, int node) * If there's a node specification, search for a partial * page with a matching node id in the freelist. */ - if (node != -1 && page_to_nid(sp) != node) + if (node != NUMA_NO_NODE && page_to_nid(sp) != node) continue; #endif /* Enough room on this page? */ @@ -514,7 +514,7 @@ struct kmem_cache *__kmem_cache_create(const char *name, size_t size, struct kmem_cache *c; c = slob_alloc(sizeof(struct kmem_cache), - GFP_KERNEL, ARCH_KMALLOC_MINALIGN, -1); + GFP_KERNEL, ARCH_KMALLOC_MINALIGN, NUMA_NO_NODE); if (c) { c->name = name;