[libvirt] [PATCH 0/4] qemu: Enable configuration of HPT resizing for pSeries guests

Andrea Bolognani posted 4 patches 6 years, 5 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20171106160839.29403-1-abologna@redhat.com
docs/formatdomain.html.in                          | 13 +++++-
docs/news.xml                                      | 10 +++++
docs/schemas/domaincommon.rng                      | 15 +++++++
src/conf/domain_conf.c                             | 46 +++++++++++++++++++++-
src/conf/domain_conf.h                             | 12 ++++++
src/libvirt_private.syms                           |  1 +
src/qemu/qemu_capabilities.c                       |  8 ++++
src/qemu/qemu_capabilities.h                       |  1 +
src/qemu/qemu_command.c                            | 20 ++++++++++
src/qemu/qemu_domain.c                             |  8 ++++
tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml   |  1 +
...qemuxml2argv-pseries-hpt-resizing-disabled.args | 20 ++++++++++
.../qemuxml2argv-pseries-hpt-resizing-disabled.xml | 19 +++++++++
.../qemuxml2argv-pseries-hpt-resizing-enabled.args | 20 ++++++++++
.../qemuxml2argv-pseries-hpt-resizing-enabled.xml  | 19 +++++++++
...l2argv-pseries-hpt-resizing-invalid-machine.xml | 18 +++++++++
...qemuxml2argv-pseries-hpt-resizing-required.args | 20 ++++++++++
.../qemuxml2argv-pseries-hpt-resizing-required.xml | 19 +++++++++
tests/qemuxml2argvtest.c                           | 20 ++++++++++
...emuxml2xmlout-pseries-hpt-resizing-disabled.xml | 28 +++++++++++++
...qemuxml2xmlout-pseries-hpt-resizing-enabled.xml | 28 +++++++++++++
...emuxml2xmlout-pseries-hpt-resizing-required.xml | 28 +++++++++++++
tests/qemuxml2xmltest.c                            | 13 ++++++
23 files changed, 385 insertions(+), 2 deletions(-)
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-disabled.args
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-disabled.xml
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-enabled.args
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-enabled.xml
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-invalid-machine.xml
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-required.args
create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-required.xml
create mode 100644 tests/qemuxml2xmloutdata/qemuxml2xmlout-pseries-hpt-resizing-disabled.xml
create mode 100644 tests/qemuxml2xmloutdata/qemuxml2xmlout-pseries-hpt-resizing-enabled.xml
create mode 100644 tests/qemuxml2xmloutdata/qemuxml2xmlout-pseries-hpt-resizing-required.xml
[libvirt] [PATCH 0/4] qemu: Enable configuration of HPT resizing for pSeries guests
Posted by Andrea Bolognani 6 years, 5 months ago
Applies on top of

  https://www.redhat.com/archives/libvir-list/2017-November/msg00176.html

Andrea Bolognani (4):
  qemu: Enable configuration of HPT resizing for pSeries guests
  tests: Add tests for configuration of HPT resizing
  docs: Document configuration of HPT resizing
  news: Update for configuration of HPT resizing

 docs/formatdomain.html.in                          | 13 +++++-
 docs/news.xml                                      | 10 +++++
 docs/schemas/domaincommon.rng                      | 15 +++++++
 src/conf/domain_conf.c                             | 46 +++++++++++++++++++++-
 src/conf/domain_conf.h                             | 12 ++++++
 src/libvirt_private.syms                           |  1 +
 src/qemu/qemu_capabilities.c                       |  8 ++++
 src/qemu/qemu_capabilities.h                       |  1 +
 src/qemu/qemu_command.c                            | 20 ++++++++++
 src/qemu/qemu_domain.c                             |  8 ++++
 tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml   |  1 +
 ...qemuxml2argv-pseries-hpt-resizing-disabled.args | 20 ++++++++++
 .../qemuxml2argv-pseries-hpt-resizing-disabled.xml | 19 +++++++++
 .../qemuxml2argv-pseries-hpt-resizing-enabled.args | 20 ++++++++++
 .../qemuxml2argv-pseries-hpt-resizing-enabled.xml  | 19 +++++++++
 ...l2argv-pseries-hpt-resizing-invalid-machine.xml | 18 +++++++++
 ...qemuxml2argv-pseries-hpt-resizing-required.args | 20 ++++++++++
 .../qemuxml2argv-pseries-hpt-resizing-required.xml | 19 +++++++++
 tests/qemuxml2argvtest.c                           | 20 ++++++++++
 ...emuxml2xmlout-pseries-hpt-resizing-disabled.xml | 28 +++++++++++++
 ...qemuxml2xmlout-pseries-hpt-resizing-enabled.xml | 28 +++++++++++++
 ...emuxml2xmlout-pseries-hpt-resizing-required.xml | 28 +++++++++++++
 tests/qemuxml2xmltest.c                            | 13 ++++++
 23 files changed, 385 insertions(+), 2 deletions(-)
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-disabled.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-disabled.xml
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-enabled.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-enabled.xml
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-invalid-machine.xml
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-required.args
 create mode 100644 tests/qemuxml2argvdata/qemuxml2argv-pseries-hpt-resizing-required.xml
 create mode 100644 tests/qemuxml2xmloutdata/qemuxml2xmlout-pseries-hpt-resizing-disabled.xml
 create mode 100644 tests/qemuxml2xmloutdata/qemuxml2xmlout-pseries-hpt-resizing-enabled.xml
 create mode 100644 tests/qemuxml2xmloutdata/qemuxml2xmlout-pseries-hpt-resizing-required.xml

-- 
2.13.6

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list