diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-02-08 16:51:21 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-02-23 15:39:27 -0300 |
commit | 1c1e6732786d46c7b0ab160cbf61122c53bb44cc (patch) | |
tree | dc66cb91fb376e99fce4b1f6e879464d9313ac54 /include | |
parent | 7dcd1d70fe2886a1e30d32678b795e6b9b6dd5c4 (diff) | |
download | hqemu-1c1e6732786d46c7b0ab160cbf61122c53bb44cc.zip hqemu-1c1e6732786d46c7b0ab160cbf61122c53bb44cc.tar.gz |
numa: Rename option parsing functions
Renaming set_numa_nodes() and numa_init_func() to parse_numa_opts() and
parse_numa() makes the purpose of those functions clearer.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sysemu/numa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sysemu/numa.h b/include/sysemu/numa.h index d25ada9..453b49a 100644 --- a/include/sysemu/numa.h +++ b/include/sysemu/numa.h @@ -16,7 +16,7 @@ typedef struct node_info { bool present; } NodeInfo; extern NodeInfo numa_info[MAX_NODES]; -void set_numa_nodes(void); +void parse_numa_opts(void); void set_numa_modes(void); void query_numa_node_mem(uint64_t node_mem[]); extern QemuOptsList qemu_numa_opts; |