[libvirt] [PATCH 00/11] Add support for memory hot(un)plug

Peter Krempa pkrempa at redhat.com
Thu Feb 19 15:38:25 UTC 2015


A final version of the memory hotplug series. This version incorporates
feedback on the RFC and fixes the few missing bits.

This series depends on the three previous refactor series:
http://www.redhat.com/archives/libvir-list/2015-February/msg00532.html
[libvirt] [PATCH 00/24] Move all NUMA related configuration into one structure

http://www.redhat.com/archives/libvir-list/2015-February/msg00557.html
[libvirt] [PATCH 0/3] Fix memory ABI stability check issues

http://www.redhat.com/archives/libvir-list/2015-February/msg00633.html
[libvirt] [PATCH 0/7] Automaticaly fill <memory> element for NUMA enabled guests

For convenience, you can fetch the complete series in my public branch:
git fetch git://pipo.sk/pipo/libvirt.git memory-hotplug-v1

Peter Krempa (11):
  qemu: caps: Add capability bit for the "pc-dimm" device
  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                             | 566 ++++++++++++++++++++-
 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_capabilities.c                       |   2 +
 src/qemu/qemu_capabilities.h                       |   1 +
 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 +
 tests/qemucapabilitiesdata/caps_2.1.1-1.caps       |   1 +
 .../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 +
 41 files changed, 1712 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