mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
numa: fix assumption in virNumaNodeIsAvailable()
When compiled without full numa support, the stub function for virNumaNodeIsAvailable() just checks whether specified node is in range <0, max); where max is maximum NUMA node available on the host. But because the maximum node number is the highest usabe number (and not the count of nodes), the check is incorrect as it should check whether the specified node is in range <0, max> instead. Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
c63ef0452b
commit
877a222449
@ -460,7 +460,7 @@ virNumaNodeIsAvailable(int node)
|
||||
return false;
|
||||
|
||||
/* Do we have anything better? */
|
||||
return (node >= 0) && (node < max_node);
|
||||
return (node >= 0) && (node <= max_node);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user