Home
last modified time | relevance | path

Searched refs:host_nodes (Results 1 – 5 of 5) sorted by relevance

/qemu/backends/
H A Dhostmem.c89 uint16List *host_nodes = NULL; in host_memory_backend_get_host_nodes() local
90 uint16List **tail = &host_nodes; in host_memory_backend_get_host_nodes()
110 visit_type_uint16List(v, name, &host_nodes, errp); in host_memory_backend_get_host_nodes()
111 qapi_free_uint16List(host_nodes); in host_memory_backend_get_host_nodes()
120 uint16List *l, *host_nodes = NULL; in host_memory_backend_set_host_nodes() local
122 visit_type_uint16List(v, name, &host_nodes, errp); in host_memory_backend_set_host_nodes()
124 for (l = host_nodes; l; l = l->next) { in host_memory_backend_set_host_nodes()
131 for (l = host_nodes; l; l = l->next) { in host_memory_backend_set_host_nodes()
132 bitmap_set(backend->host_nodes, l->value, 1); in host_memory_backend_set_host_nodes()
136 qapi_free_uint16List(host_nodes); in host_memory_backend_set_host_nodes()
[all …]
/qemu/util/
H A Dthread-context.c175 uint16List *l, *host_nodes = NULL; in thread_context_set_node_affinity() local
185 if (!visit_type_uint16List(v, name, &host_nodes, errp)) { in thread_context_set_node_affinity()
189 if (!host_nodes) { in thread_context_set_node_affinity()
196 for (l = host_nodes; l; l = l->next) { in thread_context_set_node_affinity()
232 qapi_free_uint16List(host_nodes); in thread_context_set_node_affinity()
/qemu/hw/core/
H A Dmachine-qmp-cmds.c173 QObject *host_nodes; in query_memdev() local
194 host_nodes = object_property_get_qobject(obj, in query_memdev()
197 v = qobject_input_visitor_new(host_nodes); in query_memdev()
198 visit_type_uint16List(v, NULL, &m->host_nodes, &error_abort); in query_memdev()
200 qobject_unref(host_nodes); in query_memdev()
H A Dmachine-hmp-cmds.c117 visit_type_uint16List(v, NULL, &m->value->host_nodes, &error_abort); in hmp_info_memdev()
/qemu/include/sysemu/
H A Dhostmem.h80 DECLARE_BITMAP(host_nodes, MAX_NODES + 1);