From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58387) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPyhh-0004XU-RD for qemu-devel@nongnu.org; Mon, 23 Feb 2015 14:30:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPyhh-00039y-3A for qemu-devel@nongnu.org; Mon, 23 Feb 2015 14:30:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56393) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPyhg-00038h-S7 for qemu-devel@nongnu.org; Mon, 23 Feb 2015 14:30:05 -0500 From: Eduardo Habkost Date: Mon, 23 Feb 2015 16:29:11 -0300 Message-Id: <1424719754-2356-5-git-send-email-ehabkost@redhat.com> In-Reply-To: <1424719754-2356-1-git-send-email-ehabkost@redhat.com> References: <1424719754-2356-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [PULL 4/7] numa: Make max_numa_nodeid static List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Paolo Bonzini , qemu-devel@nongnu.org, "Michael S. Tsirkin" Now the only code that uses the variable is inside numa.c. Reviewed-by: Paolo Bonzini Acked-by: Michael S. Tsirkin Signed-off-by: Eduardo Habkost --- include/sysemu/numa.h | 3 --- numa.c | 4 +++- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/include/sysemu/numa.h b/include/sysemu/numa.h index 514914f..eae881e 100644 --- a/include/sysemu/numa.h +++ b/include/sysemu/numa.h @@ -8,9 +8,6 @@ #include "sysemu/hostmem.h" extern int nb_numa_nodes; /* Number of NUMA nodes */ -extern int max_numa_nodeid; /* Highest specified NUMA node ID, plus one. - * For all nodes, nodeid < max_numa_nodeid - */ typedef struct node_info { uint64_t node_mem; diff --git a/numa.c b/numa.c index 61531db..84d4cb5 100644 --- a/numa.c +++ b/numa.c @@ -45,8 +45,10 @@ QemuOptsList qemu_numa_opts = { }; static int have_memdevs = -1; +static int max_numa_nodeid; /* Highest specified NUMA node ID, plus one. + * For all nodes, nodeid < max_numa_nodeid + */ int nb_numa_nodes; -int max_numa_nodeid; NodeInfo numa_info[MAX_NODES]; static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp) -- 2.1.0