mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-04 22:21:23 +00:00
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>
This commit is contained in:
parent
607bf324ab
commit
33de04ec4c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user