From: Eduardo Habkost Date: Thu, 26 Jun 2014 21:33:20 +0000 (-0300) Subject: numa: Reject configuration if not all node IDs are present X-Git-Tag: qemu-xen-4.6.0-rc1~342^2~25 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=12d6e4640ce28d002e96d58c31cd5e7256258626;p=qemu-upstream-4.6-testing.git numa: Reject configuration if not all node IDs are present We don't support sparse NUMA node IDs yet, so this changes QEMU to reject configs where not all nodes are present. Signed-off-by: Eduardo Habkost Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Reviewed-by: Eric Blake --- diff --git a/numa.c b/numa.c index c25412750..2fde7409b 100644 --- a/numa.c +++ b/numa.c @@ -160,9 +160,24 @@ error: void set_numa_nodes(void) { + int i; + + assert(max_numa_nodeid <= MAX_NODES); + + /* No support for sparse NUMA node IDs yet: */ + for (i = max_numa_nodeid - 1; i >= 0; i--) { + /* Report large node IDs first, to make mistakes easier to spot */ + if (!numa_info[i].present) { + error_report("numa: Node ID missing: %d", i); + exit(1); + } + } + + /* This must be always true if all nodes are present: */ + assert(nb_numa_nodes == max_numa_nodeid); + if (nb_numa_nodes > 0) { uint64_t numa_total; - int i; if (nb_numa_nodes > MAX_NODES) { nb_numa_nodes = MAX_NODES;