From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51439) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQ9YE-0000jo-46 for qemu-devel@nongnu.org; Tue, 24 Feb 2015 02:05:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YQ9Y5-0003sT-Gz for qemu-devel@nongnu.org; Tue, 24 Feb 2015 02:05:02 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47443) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQ9Y5-0003s9-8F for qemu-devel@nongnu.org; Tue, 24 Feb 2015 02:04:53 -0500 Date: Tue, 24 Feb 2015 08:04:48 +0100 From: Igor Mammedov Message-ID: <20150224080448.361ab29e@nial.brq.redhat.com> In-Reply-To: <1423763435-3696-4-git-send-email-ehabkost@redhat.com> References: <1423763435-3696-1-git-send-email-ehabkost@redhat.com> <1423763435-3696-4-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 3/4] numa: Reject configuration if CPU appears on multiple nodes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: Paolo Bonzini , Hu Tao , qemu-devel@nongnu.org, "Michael S. Tsirkin" On Thu, 12 Feb 2015 15:50:34 -0200 Eduardo Habkost wrote: > Each CPU can appear in only one NUMA node on the NUMA config. Reject > configuration if a CPU appears in multiple nodes. > > Signed-off-by: Eduardo Habkost > --- > v1 -> v2: (no changes) > > v2 -> v3: > * Rename present_cpus to seen_cpus, to make it less confusing > * Use GString and error_report() instead of multiple fprintf() calls With comment below fixed: Reviewed-by: Igor Mammedov > --- > numa.c | 37 +++++++++++++++++++++++++++++++++++++ > 1 file changed, 37 insertions(+) > > diff --git a/numa.c b/numa.c > index 4139e46..712faff 100644 > --- a/numa.c > +++ b/numa.c > @@ -168,6 +168,41 @@ error: > return -1; > } > > +static char *enumerate_cpus(unsigned long *cpus, int max_cpus) > +{ > + int cpu; > + bool first = true; > + GString *s = g_string_new(NULL); > + > + for (cpu = find_first_bit(cpus, max_cpus); > + cpu < max_cpus; > + cpu = find_next_bit(cpus, max_cpus, cpu + 1)) { > + g_string_append_printf(s, "%s%d", first ? "" : " ", cpu); > + first = false; > + } > + return g_string_free(s, FALSE); > +} > + > +static void validate_numa_cpus(void) > +{ > + int i; > + DECLARE_BITMAP(seen_cpus, MAX_CPUMASK_BITS); > + > + bitmap_zero(seen_cpus, MAX_CPUMASK_BITS); > + for (i = 0; i < nb_numa_nodes; i++) { > + if (bitmap_intersects(seen_cpus, numa_info[i].node_cpu, > + MAX_CPUMASK_BITS)) { > + bitmap_and(seen_cpus, seen_cpus, > + numa_info[i].node_cpu, MAX_CPUMASK_BITS); > + error_report("CPU(s) present in multiple NUMA nodes: %s", > + enumerate_cpus(seen_cpus, max_cpus));; > + exit(1); s/1/EXIT_FAILURE/ > + } > + bitmap_or(seen_cpus, seen_cpus, > + numa_info[i].node_cpu, MAX_CPUMASK_BITS); > + } > +} > + > void parse_numa_opts(void) > { > int i; > @@ -245,6 +280,8 @@ void parse_numa_opts(void) > set_bit(i, numa_info[i % nb_numa_nodes].node_cpu); > } > } > + > + validate_numa_cpus(); > } > } >