1
0
Fork 0

slub: Use NUMA_NO_NODE in get_partial

A -1 was leftover during the conversion.

Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
hifive-unleashed-5.1
Christoph Lameter 2011-04-15 14:48:12 -05:00 committed by Pekka Enberg
parent 607bf324ab
commit 33de04ec4c
1 changed files with 1 additions and 1 deletions

View File

@ -1487,7 +1487,7 @@ static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
int searchnode = (node == NUMA_NO_NODE) ? numa_node_id() : node;
page = get_partial_node(get_node(s, searchnode));
if (page || node != -1)
if (page || node != NUMA_NO_NODE)
return page;
return get_any_partial(s, flags);