numa.c 22.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * NUMA parameter parsing routines
 *
 * Copyright (c) 2014 Fujitsu Ltd.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

P
Peter Maydell 已提交
25
#include "qemu/osdep.h"
26
#include "sysemu/numa.h"
27
#include "exec/cpu-common.h"
P
Paolo Bonzini 已提交
28
#include "exec/ramlist.h"
29 30
#include "qemu/bitmap.h"
#include "qom/cpu.h"
31 32
#include "qemu/error-report.h"
#include "include/exec/cpu-common.h" /* for RAM_ADDR_FMT */
33 34
#include "qapi-visit.h"
#include "qapi/opts-visitor.h"
35
#include "hw/boards.h"
36
#include "sysemu/hostmem.h"
H
Hu Tao 已提交
37
#include "qmp-commands.h"
38
#include "hw/mem/pc-dimm.h"
39 40
#include "qemu/option.h"
#include "qemu/config-file.h"
41 42 43 44 45 46 47 48

QemuOptsList qemu_numa_opts = {
    .name = "numa",
    .implied_opt_name = "type",
    .head = QTAILQ_HEAD_INITIALIZER(qemu_numa_opts.head),
    .desc = { { 0 } } /* validated with OptsVisitor */
};

49
static int have_memdevs = -1;
50 51 52
static int max_numa_nodeid; /* Highest specified NUMA node ID, plus one.
                             * For all nodes, nodeid < max_numa_nodeid
                             */
53
int nb_numa_nodes;
54
bool have_numa_distance;
55
NodeInfo numa_info[MAX_NODES];
56

57 58
void numa_set_mem_node_id(ram_addr_t addr, uint64_t size, uint32_t node)
{
59
    struct numa_addr_range *range;
60

61 62 63 64 65 66 67 68
    /*
     * Memory-less nodes can come here with 0 size in which case,
     * there is nothing to do.
     */
    if (!size) {
        return;
    }

69
    range = g_malloc0(sizeof(*range));
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
    range->mem_start = addr;
    range->mem_end = addr + size - 1;
    QLIST_INSERT_HEAD(&numa_info[node].addr, range, entry);
}

void numa_unset_mem_node_id(ram_addr_t addr, uint64_t size, uint32_t node)
{
    struct numa_addr_range *range, *next;

    QLIST_FOREACH_SAFE(range, &numa_info[node].addr, entry, next) {
        if (addr == range->mem_start && (addr + size - 1) == range->mem_end) {
            QLIST_REMOVE(range, entry);
            g_free(range);
            return;
        }
    }
}

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
static void numa_set_mem_ranges(void)
{
    int i;
    ram_addr_t mem_start = 0;

    /*
     * Deduce start address of each node and use it to store
     * the address range info in numa_info address range list
     */
    for (i = 0; i < nb_numa_nodes; i++) {
        numa_set_mem_node_id(mem_start, numa_info[i].node_mem, i);
        mem_start += numa_info[i].node_mem;
    }
}

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
/*
 * Check if @addr falls under NUMA @node.
 */
static bool numa_addr_belongs_to_node(ram_addr_t addr, uint32_t node)
{
    struct numa_addr_range *range;

    QLIST_FOREACH(range, &numa_info[node].addr, entry) {
        if (addr >= range->mem_start && addr <= range->mem_end) {
            return true;
        }
    }
    return false;
}

/*
 * Given an address, return the index of the NUMA node to which the
 * address belongs to.
 */
uint32_t numa_get_node(ram_addr_t addr, Error **errp)
{
    uint32_t i;

    /* For non NUMA configurations, check if the addr falls under node 0 */
    if (!nb_numa_nodes) {
        if (numa_addr_belongs_to_node(addr, 0)) {
            return 0;
        }
    }

    for (i = 0; i < nb_numa_nodes; i++) {
        if (numa_addr_belongs_to_node(addr, i)) {
            return i;
        }
    }

    error_setg(errp, "Address 0x" RAM_ADDR_FMT " doesn't belong to any "
                "NUMA node", addr);
    return -1;
}

144 145
static void parse_numa_node(MachineState *ms, NumaNodeOptions *node,
                            QemuOpts *opts, Error **errp)
146
{
147 148
    uint16_t nodenr;
    uint16List *cpus = NULL;
149
    MachineClass *mc = MACHINE_GET_CLASS(ms);
150

151 152
    if (node->has_nodeid) {
        nodenr = node->nodeid;
153
    } else {
154
        nodenr = nb_numa_nodes;
155 156
    }

157 158
    if (nodenr >= MAX_NODES) {
        error_setg(errp, "Max number of NUMA nodes reached: %"
159
                   PRIu16 "", nodenr);
160
        return;
161 162
    }

163 164 165 166 167
    if (numa_info[nodenr].present) {
        error_setg(errp, "Duplicate NUMA nodeid: %" PRIu16, nodenr);
        return;
    }

168 169 170 171
    if (!mc->cpu_index_to_instance_props) {
        error_report("NUMA is not supported by this machine-type");
        exit(1);
    }
172
    for (cpus = node->cpus; cpus; cpus = cpus->next) {
173
        CpuInstanceProperties props;
174 175 176 177 178
        if (cpus->value >= max_cpus) {
            error_setg(errp,
                       "CPU index (%" PRIu16 ")"
                       " should be smaller than maxcpus (%d)",
                       cpus->value, max_cpus);
179 180 181
            return;
        }
        bitmap_set(numa_info[nodenr].node_cpu, cpus->value, 1);
182 183 184 185
        props = mc->cpu_index_to_instance_props(ms, cpus->value);
        props.node_id = nodenr;
        props.has_node_id = true;
        machine_set_cpu_numa_node(ms, &props, &error_fatal);
186 187
    }

188
    if (node->has_mem && node->has_memdev) {
189
        error_setg(errp, "qemu: cannot specify both mem= and memdev=");
190 191 192 193 194 195 196 197
        return;
    }

    if (have_memdevs == -1) {
        have_memdevs = node->has_memdev;
    }
    if (node->has_memdev != have_memdevs) {
        error_setg(errp, "qemu: memdev option must be specified for either "
198
                   "all or no nodes");
199 200 201
        return;
    }

202 203 204 205 206 207 208 209 210
    if (node->has_mem) {
        uint64_t mem_size = node->mem;
        const char *mem_str = qemu_opt_get(opts, "mem");
        /* Fix up legacy suffix-less format */
        if (g_ascii_isdigit(mem_str[strlen(mem_str) - 1])) {
            mem_size <<= 20;
        }
        numa_info[nodenr].node_mem = mem_size;
    }
211 212 213 214 215 216 217 218 219 220 221 222
    if (node->has_memdev) {
        Object *o;
        o = object_resolve_path_type(node->memdev, TYPE_MEMORY_BACKEND, NULL);
        if (!o) {
            error_setg(errp, "memdev=%s is ambiguous", node->memdev);
            return;
        }

        object_ref(o);
        numa_info[nodenr].node_mem = object_property_get_int(o, "size", NULL);
        numa_info[nodenr].node_memdev = MEMORY_BACKEND(o);
    }
223 224
    numa_info[nodenr].present = true;
    max_numa_nodeid = MAX(max_numa_nodeid, nodenr + 1);
225 226
}

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
static void parse_numa_distance(NumaDistOptions *dist, Error **errp)
{
    uint16_t src = dist->src;
    uint16_t dst = dist->dst;
    uint8_t val = dist->val;

    if (src >= MAX_NODES || dst >= MAX_NODES) {
        error_setg(errp,
                   "Invalid node %" PRIu16
                   ", max possible could be %" PRIu16,
                   MAX(src, dst), MAX_NODES);
        return;
    }

    if (!numa_info[src].present || !numa_info[dst].present) {
        error_setg(errp, "Source/Destination NUMA node is missing. "
                   "Please use '-numa node' option to declare it first.");
        return;
    }

    if (val < NUMA_DISTANCE_MIN) {
        error_setg(errp, "NUMA distance (%" PRIu8 ") is invalid, "
                   "it shouldn't be less than %d.",
                   val, NUMA_DISTANCE_MIN);
        return;
    }

    if (src == dst && val != NUMA_DISTANCE_MIN) {
        error_setg(errp, "Local distance of node %d should be %d.",
                   src, NUMA_DISTANCE_MIN);
        return;
    }

    numa_info[src].distance[dst] = val;
    have_numa_distance = true;
}

264
static int parse_numa(void *opaque, QemuOpts *opts, Error **errp)
265
{
266
    NumaOptions *object = NULL;
267
    MachineState *ms = opaque;
268
    Error *err = NULL;
269

270
    {
271 272 273
        Visitor *v = opts_visitor_new(opts);
        visit_type_NumaOptions(v, NULL, &object, &err);
        visit_free(v);
274 275
    }

276
    if (err) {
277
        goto end;
278
    }
279

280
    switch (object->type) {
281
    case NUMA_OPTIONS_TYPE_NODE:
282
        parse_numa_node(ms, &object->u.node, opts, &err);
283
        if (err) {
284
            goto end;
285
        }
286 287
        nb_numa_nodes++;
        break;
288 289 290 291 292 293
    case NUMA_OPTIONS_TYPE_DIST:
        parse_numa_distance(&object->u.dist, &err);
        if (err) {
            goto end;
        }
        break;
294 295 296
    default:
        abort();
    }
297

298
end:
299
    qapi_free_NumaOptions(object);
300 301 302 303
    if (err) {
        error_report_err(err);
        return -1;
    }
304

305
    return 0;
306 307
}

308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
static char *enumerate_cpus(unsigned long *cpus, int max_cpus)
{
    int cpu;
    bool first = true;
    GString *s = g_string_new(NULL);

    for (cpu = find_first_bit(cpus, max_cpus);
        cpu < max_cpus;
        cpu = find_next_bit(cpus, max_cpus, cpu + 1)) {
        g_string_append_printf(s, "%s%d", first ? "" : " ", cpu);
        first = false;
    }
    return g_string_free(s, FALSE);
}

static void validate_numa_cpus(void)
{
    int i;
326
    unsigned long *seen_cpus = bitmap_new(max_cpus);
327 328

    for (i = 0; i < nb_numa_nodes; i++) {
329
        if (bitmap_intersects(seen_cpus, numa_info[i].node_cpu, max_cpus)) {
330
            bitmap_and(seen_cpus, seen_cpus,
331
                       numa_info[i].node_cpu, max_cpus);
332
            error_report("CPU(s) present in multiple NUMA nodes: %s",
333
                         enumerate_cpus(seen_cpus, max_cpus));
334
            g_free(seen_cpus);
335 336 337
            exit(EXIT_FAILURE);
        }
        bitmap_or(seen_cpus, seen_cpus,
338
                  numa_info[i].node_cpu, max_cpus);
339
    }
340 341 342 343 344 345 346 347 348 349

    if (!bitmap_full(seen_cpus, max_cpus)) {
        char *msg;
        bitmap_complement(seen_cpus, seen_cpus, max_cpus);
        msg = enumerate_cpus(seen_cpus, max_cpus);
        error_report("warning: CPU(s) not present in any NUMA nodes: %s", msg);
        error_report("warning: All CPU(s) up to maxcpus should be described "
                     "in NUMA config");
        g_free(msg);
    }
350
    g_free(seen_cpus);
351 352
}

353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
/* If all node pair distances are symmetric, then only distances
 * in one direction are enough. If there is even one asymmetric
 * pair, though, then all distances must be provided. The
 * distance from a node to itself is always NUMA_DISTANCE_MIN,
 * so providing it is never necessary.
 */
static void validate_numa_distance(void)
{
    int src, dst;
    bool is_asymmetrical = false;

    for (src = 0; src < nb_numa_nodes; src++) {
        for (dst = src; dst < nb_numa_nodes; dst++) {
            if (numa_info[src].distance[dst] == 0 &&
                numa_info[dst].distance[src] == 0) {
                if (src != dst) {
                    error_report("The distance between node %d and %d is "
                                 "missing, at least one distance value "
                                 "between each nodes should be provided.",
                                 src, dst);
                    exit(EXIT_FAILURE);
                }
            }

            if (numa_info[src].distance[dst] != 0 &&
                numa_info[dst].distance[src] != 0 &&
                numa_info[src].distance[dst] !=
                numa_info[dst].distance[src]) {
                is_asymmetrical = true;
            }
        }
    }

    if (is_asymmetrical) {
        for (src = 0; src < nb_numa_nodes; src++) {
            for (dst = 0; dst < nb_numa_nodes; dst++) {
                if (src != dst && numa_info[src].distance[dst] == 0) {
                    error_report("At least one asymmetrical pair of "
                            "distances is given, please provide distances "
                            "for both directions of all node pairs.");
                    exit(EXIT_FAILURE);
                }
            }
        }
    }
}

static void complete_init_numa_distance(void)
{
    int src, dst;

    /* Fixup NUMA distance by symmetric policy because if it is an
     * asymmetric distance table, it should be a complete table and
     * there would not be any missing distance except local node, which
     * is verified by validate_numa_distance above.
     */
    for (src = 0; src < nb_numa_nodes; src++) {
        for (dst = 0; dst < nb_numa_nodes; dst++) {
            if (numa_info[src].distance[dst] == 0) {
                if (src == dst) {
                    numa_info[src].distance[dst] = NUMA_DISTANCE_MIN;
                } else {
                    numa_info[src].distance[dst] = numa_info[dst].distance[src];
                }
            }
        }
    }
}

422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
void numa_legacy_auto_assign_ram(MachineClass *mc, NodeInfo *nodes,
                                 int nb_nodes, ram_addr_t size)
{
    int i;
    uint64_t usedmem = 0;

    /* Align each node according to the alignment
     * requirements of the machine class
     */

    for (i = 0; i < nb_nodes - 1; i++) {
        nodes[i].node_mem = (size / nb_nodes) &
                            ~((1 << mc->numa_mem_align_shift) - 1);
        usedmem += nodes[i].node_mem;
    }
    nodes[i].node_mem = size - usedmem;
}

void numa_default_auto_assign_ram(MachineClass *mc, NodeInfo *nodes,
                                  int nb_nodes, ram_addr_t size)
{
    int i;
    uint64_t usedmem = 0, node_mem;
    uint64_t granularity = size / nb_nodes;
    uint64_t propagate = 0;

    for (i = 0; i < nb_nodes - 1; i++) {
        node_mem = (granularity + propagate) &
                   ~((1 << mc->numa_mem_align_shift) - 1);
        propagate = granularity + propagate - node_mem;
        nodes[i].node_mem = node_mem;
        usedmem += node_mem;
    }
    nodes[i].node_mem = size - usedmem;
}

458
void parse_numa_opts(MachineState *ms)
459
{
460
    int i;
461
    const CPUArchIdList *possible_cpus;
462
    MachineClass *mc = MACHINE_GET_CLASS(ms);
463

464 465 466 467
    for (i = 0; i < MAX_NODES; i++) {
        numa_info[i].node_cpu = bitmap_new(max_cpus);
    }

468
    if (qemu_opts_foreach(qemu_find_opts("numa"), parse_numa, ms, NULL)) {
469 470 471
        exit(1);
    }

472 473 474 475 476 477 478 479 480 481 482 483 484 485
    assert(max_numa_nodeid <= MAX_NODES);

    /* No support for sparse NUMA node IDs yet: */
    for (i = max_numa_nodeid - 1; i >= 0; i--) {
        /* Report large node IDs first, to make mistakes easier to spot */
        if (!numa_info[i].present) {
            error_report("numa: Node ID missing: %d", i);
            exit(1);
        }
    }

    /* This must be always true if all nodes are present: */
    assert(nb_numa_nodes == max_numa_nodeid);

486
    if (nb_numa_nodes > 0) {
487
        uint64_t numa_total;
488 489 490 491 492

        if (nb_numa_nodes > MAX_NODES) {
            nb_numa_nodes = MAX_NODES;
        }

M
Michael S. Tsirkin 已提交
493
        /* If no memory size is given for any node, assume the default case
494 495 496
         * and distribute the available memory equally across all nodes
         */
        for (i = 0; i < nb_numa_nodes; i++) {
497
            if (numa_info[i].node_mem != 0) {
498 499 500 501
                break;
            }
        }
        if (i == nb_numa_nodes) {
502 503
            assert(mc->numa_auto_assign_ram);
            mc->numa_auto_assign_ram(mc, numa_info, nb_numa_nodes, ram_size);
504 505
        }

506 507
        numa_total = 0;
        for (i = 0; i < nb_numa_nodes; i++) {
508
            numa_total += numa_info[i].node_mem;
509 510
        }
        if (numa_total != ram_size) {
511 512
            error_report("total memory for NUMA nodes (0x%" PRIx64 ")"
                         " should equal RAM size (0x" RAM_ADDR_FMT ")",
513 514 515 516
                         numa_total, ram_size);
            exit(1);
        }

517 518 519 520
        for (i = 0; i < nb_numa_nodes; i++) {
            QLIST_INIT(&numa_info[i].addr);
        }

521 522
        numa_set_mem_ranges();

523
        /* assign CPUs to nodes using board provided default mapping */
524
        if (!mc->cpu_index_to_instance_props || !mc->possible_cpu_arch_ids) {
525 526 527
            error_report("default CPUs to NUMA node mapping isn't supported");
            exit(1);
        }
528 529 530 531 532 533 534 535 536 537

        possible_cpus = mc->possible_cpu_arch_ids(ms);
        for (i = 0; i < possible_cpus->len; i++) {
            if (possible_cpus->cpus[i].props.has_node_id) {
                break;
            }
        }

        /* no CPUs are assigned to NUMA nodes */
        if (i == possible_cpus->len) {
538
            for (i = 0; i < max_cpus; i++) {
539
                CpuInstanceProperties props;
540
                /* fetch default mapping from board and enable it */
541
                props = mc->cpu_index_to_instance_props(ms, i);
542
                props.has_node_id = true;
543

544
                set_bit(i, numa_info[props.node_id].node_cpu);
545
                machine_set_cpu_numa_node(ms, &props, &error_fatal);
546 547
            }
        }
548 549

        validate_numa_cpus();
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569

        /* QEMU needs at least all unique node pair distances to build
         * the whole NUMA distance table. QEMU treats the distance table
         * as symmetric by default, i.e. distance A->B == distance B->A.
         * Thus, QEMU is able to complete the distance table
         * initialization even though only distance A->B is provided and
         * distance B->A is not. QEMU knows the distance of a node to
         * itself is always 10, so A->A distances may be omitted. When
         * the distances of two nodes of a pair differ, i.e. distance
         * A->B != distance B->A, then that means the distance table is
         * asymmetric. In this case, the distances for both directions
         * of all node pairs are required.
         */
        if (have_numa_distance) {
            /* Validate enough NUMA distance information was provided. */
            validate_numa_distance();

            /* Validation succeeded, now fill in any missing distances. */
            complete_init_numa_distance();
        }
570 571
    } else {
        numa_set_mem_node_id(0, ram_size, 0);
572 573 574
    }
}

575 576 577 578
static void allocate_system_memory_nonnuma(MemoryRegion *mr, Object *owner,
                                           const char *name,
                                           uint64_t ram_size)
{
579 580
    if (mem_path) {
#ifdef __linux__
581
        Error *err = NULL;
582
        memory_region_init_ram_from_file(mr, owner, name, ram_size, false,
583
                                         mem_path, &err);
584
        if (err) {
585
            error_report_err(err);
586 587 588 589 590 591 592
            if (mem_prealloc) {
                exit(1);
            }

            /* Legacy behavior: if allocation failed, fall back to
             * regular RAM allocation.
             */
593
            memory_region_init_ram(mr, owner, name, ram_size, &error_fatal);
594
        }
595 596 597 598 599
#else
        fprintf(stderr, "-mem-path not supported on this host\n");
        exit(1);
#endif
    } else {
600
        memory_region_init_ram(mr, owner, name, ram_size, &error_fatal);
601
    }
602 603 604
    vmstate_register_ram_global(mr);
}

605 606 607 608
void memory_region_allocate_system_memory(MemoryRegion *mr, Object *owner,
                                          const char *name,
                                          uint64_t ram_size)
{
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
    uint64_t addr = 0;
    int i;

    if (nb_numa_nodes == 0 || !have_memdevs) {
        allocate_system_memory_nonnuma(mr, owner, name, ram_size);
        return;
    }

    memory_region_init(mr, owner, name, ram_size);
    for (i = 0; i < MAX_NODES; i++) {
        uint64_t size = numa_info[i].node_mem;
        HostMemoryBackend *backend = numa_info[i].node_memdev;
        if (!backend) {
            continue;
        }
624 625
        MemoryRegion *seg = host_memory_backend_get_memory(backend,
                                                           &error_fatal);
626

H
Hu Tao 已提交
627 628 629 630 631 632 633 634
        if (memory_region_is_mapped(seg)) {
            char *path = object_get_canonical_path_component(OBJECT(backend));
            error_report("memory backend %s is used multiple times. Each "
                         "-numa option must use a different memdev value.",
                         path);
            exit(1);
        }

635
        host_memory_backend_set_mapped(backend, true);
636 637 638 639
        memory_region_add_subregion(mr, addr, seg);
        vmstate_register_ram_global(seg);
        addr += size;
    }
640
}
H
Hu Tao 已提交
641

642 643 644 645 646 647 648 649 650 651 652
static void numa_stat_memory_devices(uint64_t node_mem[])
{
    MemoryDeviceInfoList *info_list = NULL;
    MemoryDeviceInfoList **prev = &info_list;
    MemoryDeviceInfoList *info;

    qmp_pc_dimm_device_list(qdev_get_machine(), &prev);
    for (info = info_list; info; info = info->next) {
        MemoryDeviceInfo *value = info->value;

        if (value) {
653
            switch (value->type) {
654
            case MEMORY_DEVICE_INFO_KIND_DIMM:
655
                node_mem[value->u.dimm.data->node] += value->u.dimm.data->size;
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
                break;
            default:
                break;
            }
        }
    }
    qapi_free_MemoryDeviceInfoList(info_list);
}

void query_numa_node_mem(uint64_t node_mem[])
{
    int i;

    if (nb_numa_nodes <= 0) {
        return;
    }

    numa_stat_memory_devices(node_mem);
    for (i = 0; i < nb_numa_nodes; i++) {
        node_mem[i] += numa_info[i].node_mem;
    }
}

H
Hu Tao 已提交
679 680 681
static int query_memdev(Object *obj, void *opaque)
{
    MemdevList **list = opaque;
682
    MemdevList *m = NULL;
H
Hu Tao 已提交
683 684

    if (object_dynamic_cast(obj, TYPE_MEMORY_BACKEND)) {
685
        m = g_malloc0(sizeof(*m));
H
Hu Tao 已提交
686 687 688

        m->value = g_malloc0(sizeof(*m->value));

689 690 691
        m->value->id = object_property_get_str(obj, "id", NULL);
        m->value->has_id = !!m->value->id;

H
Hu Tao 已提交
692
        m->value->size = object_property_get_int(obj, "size",
693
                                                 &error_abort);
H
Hu Tao 已提交
694
        m->value->merge = object_property_get_bool(obj, "merge",
695
                                                   &error_abort);
H
Hu Tao 已提交
696
        m->value->dump = object_property_get_bool(obj, "dump",
697
                                                  &error_abort);
H
Hu Tao 已提交
698
        m->value->prealloc = object_property_get_bool(obj,
699 700
                                                      "prealloc",
                                                      &error_abort);
H
Hu Tao 已提交
701 702
        m->value->policy = object_property_get_enum(obj,
                                                    "policy",
703
                                                    "HostMemPolicy",
704
                                                    &error_abort);
H
Hu Tao 已提交
705
        object_property_get_uint16List(obj, "host-nodes",
706 707
                                       &m->value->host_nodes,
                                       &error_abort);
H
Hu Tao 已提交
708 709 710 711 712 713 714 715 716 717

        m->next = *list;
        *list = m;
    }

    return 0;
}

MemdevList *qmp_query_memdev(Error **errp)
{
718
    Object *obj = object_get_objects_root();
C
Chen Fan 已提交
719
    MemdevList *list = NULL;
H
Hu Tao 已提交
720

721
    object_child_foreach(obj, query_memdev, &list);
H
Hu Tao 已提交
722 723
    return list;
}
724

P
Paolo Bonzini 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
void ram_block_notifier_add(RAMBlockNotifier *n)
{
    QLIST_INSERT_HEAD(&ram_list.ramblock_notifiers, n, next);
}

void ram_block_notifier_remove(RAMBlockNotifier *n)
{
    QLIST_REMOVE(n, next);
}

void ram_block_notify_add(void *host, size_t size)
{
    RAMBlockNotifier *notifier;

    QLIST_FOREACH(notifier, &ram_list.ramblock_notifiers, next) {
        notifier->ram_block_added(notifier, host, size);
    }
}

void ram_block_notify_remove(void *host, size_t size)
{
    RAMBlockNotifier *notifier;

    QLIST_FOREACH(notifier, &ram_list.ramblock_notifiers, next) {
        notifier->ram_block_removed(notifier, host, size);
    }
}