[libvirt] [PATCHv2 00/10] Add support for memory hotplug

Peter Krempa pkrempa at redhat.com
Wed Feb 25 14:44:22 UTC 2015


Version 2 fixes review comments and rebases to the current state. This series
applies on top of:

 [PATCHv2 0/7] Automaticaly fill <memory> element for NUMA enabled guests

For convenience you can fetch the changes at:

 git fetch git://pipo.sk/pipo/libvirt.git memory-hotplug-2

Peter Krempa (10):
  conf: Add support for parsing and formatting max memory and slot count
  qemu: Implement setup of memory hotplug parameters
  conf: Add device address type for dimm devices
  conf: Add interface to parse and format memory device information
  qemu: memdev: Add infrastructure to load memory device information
  qemu: migration: Forbid migration with memory modules lacking info
  qemu: add support for memory devices
  qemu: conf: Add support for memory device cold(un)plug
  qemu: Implement memory device hotplug
  qemu: Implement memory device hotunplug

 docs/formatdomain.html.in                          |  98 ++++
 docs/schemas/domaincommon.rng                      |  76 +++
 src/bhyve/bhyve_domain.c                           |   9 +-
 src/conf/domain_conf.c                             | 564 ++++++++++++++++++++-
 src/conf/domain_conf.h                             |  59 +++
 src/libvirt_private.syms                           |   7 +
 src/libxl/libxl_domain.c                           |   8 +
 src/lxc/lxc_domain.c                               |   8 +
 src/openvz/openvz_driver.c                         |  14 +-
 src/parallels/parallels_driver.c                   |   6 +-
 src/phyp/phyp_driver.c                             |   6 +-
 src/qemu/qemu_command.c                            | 166 +++++-
 src/qemu/qemu_command.h                            |  15 +
 src/qemu/qemu_domain.c                             |  80 +++
 src/qemu/qemu_domain.h                             |   5 +
 src/qemu/qemu_driver.c                             |  29 ++
 src/qemu/qemu_hotplug.c                            | 177 +++++++
 src/qemu/qemu_hotplug.h                            |   6 +
 src/qemu/qemu_migration.c                          |  14 +
 src/qemu/qemu_monitor.c                            |  42 ++
 src/qemu/qemu_monitor.h                            |  14 +
 src/qemu/qemu_monitor_json.c                       | 122 +++++
 src/qemu/qemu_monitor_json.h                       |   5 +
 src/qemu/qemu_process.c                            |   4 +
 src/uml/uml_driver.c                               |   9 +-
 src/vbox/vbox_common.c                             |   6 +-
 src/vmware/vmware_driver.c                         |   6 +-
 src/vmx/vmx.c                                      |   6 +-
 src/xen/xen_driver.c                               |   7 +
 src/xenapi/xenapi_driver.c                         |   9 +-
 tests/domainschemadata/maxMemory.xml               |  19 +
 .../qemuxml2argv-memory-hotplug-dimm.args          |  11 +
 .../qemuxml2argv-memory-hotplug-dimm.xml           |  50 ++
 .../qemuxml2argv-memory-hotplug-nonuma.xml         |  22 +
 .../qemuxml2argv-memory-hotplug.args               |   6 +
 .../qemuxml2argv-memory-hotplug.xml                |  34 ++
 tests/qemuxml2argvtest.c                           |   6 +
 tests/qemuxml2xmltest.c                            |   4 +
 38 files changed, 1706 insertions(+), 23 deletions(-)
 create mode 100644 tests/domainschemadata/maxMemory.xml
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-memory-hotplug-dimm.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-memory-hotplug-dimm.xml
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-memory-hotplug-nonuma.xml
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-memory-hotplug.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-memory-hotplug.xml

-- 
2.2.2




More information about the libvir-list mailing list