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:
Martin Kletzander 2014-11-06 12:17:10 +01:00
parent c63ef0452b
commit 877a222449

View File

@ -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);
}