From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58507) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKWxK-0003ML-Ir for qemu-devel@nongnu.org; Sun, 08 Feb 2015 13:51:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKWxJ-0005XG-Iy for qemu-devel@nongnu.org; Sun, 08 Feb 2015 13:51:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48535) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKWxJ-0005X5-CG for qemu-devel@nongnu.org; Sun, 08 Feb 2015 13:51:41 -0500 From: Eduardo Habkost Date: Sun, 8 Feb 2015 16:51:18 -0200 Message-Id: <1423421482-11619-4-git-send-email-ehabkost@redhat.com> In-Reply-To: <1423421482-11619-1-git-send-email-ehabkost@redhat.com> References: <1423421482-11619-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PATCH 3/7] numa: Move NUMA globals to numa.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Hu Tao , Paolo Bonzini , "Michael S. Tsirkin" , Igor Mammedov Signed-off-by: Eduardo Habkost --- numa.c | 3 +++ vl.c | 4 ---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/numa.c b/numa.c index 40f3d36..61531db 100644 --- a/numa.c +++ b/numa.c @@ -45,6 +45,9 @@ QemuOptsList qemu_numa_opts = { }; static int have_memdevs = -1; +int nb_numa_nodes; +int max_numa_nodeid; +NodeInfo numa_info[MAX_NODES]; static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp) { diff --git a/vl.c b/vl.c index 8a32a4b..5adea75 100644 --- a/vl.c +++ b/vl.c @@ -184,10 +184,6 @@ uint8_t qemu_extra_params_fw[2]; int icount_align_option; -int nb_numa_nodes; -int max_numa_nodeid; -NodeInfo numa_info[MAX_NODES]; - /* The bytes in qemu_uuid[] are in the order specified by RFC4122, _not_ in the * little-endian "wire format" described in the SMBIOS 2.6 specification. */ -- 2.1.0