pc-dimm.c (b00c92e3ef59b78f6029d66353aaf995ceaa6605) | pc-dimm.c (e35704ba9ce0cd1e3c401f3bfbf3faf98b0b6885) |
---|---|
1/* 2 * Dimm device for Memory Hotplug 3 * 4 * Copyright ProfitBricks GmbH 2012 5 * Copyright (C) 2014 Red Hat Inc 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 8 unchanged lines hidden (view full) --- 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, see <http://www.gnu.org/licenses/> 19 */ 20 21#include "hw/mem/pc-dimm.h" 22#include "qemu/config-file.h" 23#include "qapi/visitor.h" 24#include "qemu/range.h" | 1/* 2 * Dimm device for Memory Hotplug 3 * 4 * Copyright ProfitBricks GmbH 2012 5 * Copyright (C) 2014 Red Hat Inc 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 8 unchanged lines hidden (view full) --- 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this library; if not, see <http://www.gnu.org/licenses/> 19 */ 20 21#include "hw/mem/pc-dimm.h" 22#include "qemu/config-file.h" 23#include "qapi/visitor.h" 24#include "qemu/range.h" |
25#include "sysemu/numa.h" |
|
25 26typedef struct pc_dimms_capacity { 27 uint64_t size; 28 Error **errp; 29} pc_dimms_capacity; 30 31static int pc_existing_dimms_capacity_internal(Object *obj, void *opaque) 32{ --- 313 unchanged lines hidden --- | 26 27typedef struct pc_dimms_capacity { 28 uint64_t size; 29 Error **errp; 30} pc_dimms_capacity; 31 32static int pc_existing_dimms_capacity_internal(Object *obj, void *opaque) 33{ --- 313 unchanged lines hidden --- |