From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58426) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPyhp-0004sJ-1O for qemu-devel@nongnu.org; Mon, 23 Feb 2015 14:30:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YPyho-0003Hx-0u for qemu-devel@nongnu.org; Mon, 23 Feb 2015 14:30:12 -0500 Received: from mx1.redhat.com ([209.132.183.28]:52610) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YPyhn-0003Hq-Q3 for qemu-devel@nongnu.org; Mon, 23 Feb 2015 14:30:11 -0500 From: Eduardo Habkost Date: Mon, 23 Feb 2015 16:29:14 -0300 Message-Id: <1424719754-2356-8-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 7/7] numa: Rename set_numa_modes() to numa_post_machine_init() 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" This function does some initialization that needs to be done after machine init. The function may be eventually removed if we move the CPUState.numa_node initialization to the CPU init code, but while the function exists, lets give it a name that makes sense. Reviewed-by: Paolo Bonzini Acked-by: Michael S. Tsirkin Signed-off-by: Eduardo Habkost --- include/sysemu/numa.h | 2 +- numa.c | 2 +- vl.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sysemu/numa.h b/include/sysemu/numa.h index 453b49a..5633b85 100644 --- a/include/sysemu/numa.h +++ b/include/sysemu/numa.h @@ -17,7 +17,7 @@ typedef struct node_info { } NodeInfo; extern NodeInfo numa_info[MAX_NODES]; void parse_numa_opts(void); -void set_numa_modes(void); +void numa_post_machine_init(void); void query_numa_node_mem(uint64_t node_mem[]); extern QemuOptsList qemu_numa_opts; diff --git a/numa.c b/numa.c index d5b95e1..0d15375 100644 --- a/numa.c +++ b/numa.c @@ -246,7 +246,7 @@ void parse_numa_opts(void) } } -void set_numa_modes(void) +void numa_post_machine_init(void) { CPUState *cpu; int i; diff --git a/vl.c b/vl.c index a71f015..b5795df 100644 --- a/vl.c +++ b/vl.c @@ -4216,7 +4216,7 @@ int main(int argc, char **argv, char **envp) cpu_synchronize_all_post_init(); - set_numa_modes(); + numa_post_machine_init(); /* init USB devices */ if (usb_enabled()) { -- 2.1.0