[libvirt] [PATCH 0/6] qemu: Implement nested HV support for pSeries guests

Andrea Bolognani posted 6 patches 5 years, 4 months ago
Failed in applying to current master (apply log)
docs/formatdomain.html.in                     |    12 +
docs/news.xml                                 |    10 +
docs/schemas/domaincommon.rng                 |     5 +
src/conf/domain_conf.c                        |     4 +
src/conf/domain_conf.h                        |     1 +
src/qemu/qemu_capabilities.c                  |     2 +
src/qemu/qemu_capabilities.h                  |     1 +
src/qemu/qemu_command.c                       |    20 +
src/qemu/qemu_domain.c                        |    15 +-
.../caps_3.1.0.ppc64.replies                  | 23503 ++++++++++++++++
.../qemucapabilitiesdata/caps_3.1.0.ppc64.xml |  1076 +
tests/qemucapabilitiestest.c                  |     1 +
.../qemucaps2xmloutdata/caps_3.1.0.ppc64.xml  |    26 +
tests/qemucaps2xmltest.c                      |     1 +
tests/qemuxml2argvdata/pseries-features.args  |     2 +-
tests/qemuxml2argvdata/pseries-features.xml   |     1 +
tests/qemuxml2argvtest.c                      |     1 +
tests/qemuxml2xmloutdata/pseries-features.xml |     1 +
tests/qemuxml2xmltest.c                       |     1 +
19 files changed, 24669 insertions(+), 14 deletions(-)
create mode 100644 tests/qemucapabilitiesdata/caps_3.1.0.ppc64.replies
create mode 100644 tests/qemucapabilitiesdata/caps_3.1.0.ppc64.xml
create mode 100644 tests/qemucaps2xmloutdata/caps_3.1.0.ppc64.xml
[libvirt] [PATCH 0/6] qemu: Implement nested HV support for pSeries guests
Posted by Andrea Bolognani 5 years, 4 months ago
Andrea Bolognani (6):
  qemu: Drop duplicated code from qemuDomainDefValidateFeatures()
  tests: Add capabilities data for QEMU 3.1.0 on ppc64
  qemu: Introduce QEMU_CAPS_MACHINE_PSERIES_CAP_NESTED_HV
  conf: Parse and format nested-hv feature
  qemu: Format nested-hv feature on the command line
  news: Document nested-hv feature

 docs/formatdomain.html.in                     |    12 +
 docs/news.xml                                 |    10 +
 docs/schemas/domaincommon.rng                 |     5 +
 src/conf/domain_conf.c                        |     4 +
 src/conf/domain_conf.h                        |     1 +
 src/qemu/qemu_capabilities.c                  |     2 +
 src/qemu/qemu_capabilities.h                  |     1 +
 src/qemu/qemu_command.c                       |    20 +
 src/qemu/qemu_domain.c                        |    15 +-
 .../caps_3.1.0.ppc64.replies                  | 23503 ++++++++++++++++
 .../qemucapabilitiesdata/caps_3.1.0.ppc64.xml |  1076 +
 tests/qemucapabilitiestest.c                  |     1 +
 .../qemucaps2xmloutdata/caps_3.1.0.ppc64.xml  |    26 +
 tests/qemucaps2xmltest.c                      |     1 +
 tests/qemuxml2argvdata/pseries-features.args  |     2 +-
 tests/qemuxml2argvdata/pseries-features.xml   |     1 +
 tests/qemuxml2argvtest.c                      |     1 +
 tests/qemuxml2xmloutdata/pseries-features.xml |     1 +
 tests/qemuxml2xmltest.c                       |     1 +
 19 files changed, 24669 insertions(+), 14 deletions(-)
 create mode 100644 tests/qemucapabilitiesdata/caps_3.1.0.ppc64.replies
 create mode 100644 tests/qemucapabilitiesdata/caps_3.1.0.ppc64.xml
 create mode 100644 tests/qemucaps2xmloutdata/caps_3.1.0.ppc64.xml

-- 
2.19.1

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH 0/6] qemu: Implement nested HV support for pSeries guests
Posted by Michal Privoznik 5 years, 4 months ago
On 11/20/18 6:08 PM, Andrea Bolognani wrote:
> Andrea Bolognani (6):
>   qemu: Drop duplicated code from qemuDomainDefValidateFeatures()
>   tests: Add capabilities data for QEMU 3.1.0 on ppc64
>   qemu: Introduce QEMU_CAPS_MACHINE_PSERIES_CAP_NESTED_HV
>   conf: Parse and format nested-hv feature
>   qemu: Format nested-hv feature on the command line
>   news: Document nested-hv feature
> 
>  docs/formatdomain.html.in                     |    12 +
>  docs/news.xml                                 |    10 +
>  docs/schemas/domaincommon.rng                 |     5 +
>  src/conf/domain_conf.c                        |     4 +
>  src/conf/domain_conf.h                        |     1 +
>  src/qemu/qemu_capabilities.c                  |     2 +
>  src/qemu/qemu_capabilities.h                  |     1 +
>  src/qemu/qemu_command.c                       |    20 +
>  src/qemu/qemu_domain.c                        |    15 +-
>  .../caps_3.1.0.ppc64.replies                  | 23503 ++++++++++++++++
>  .../qemucapabilitiesdata/caps_3.1.0.ppc64.xml |  1076 +
>  tests/qemucapabilitiestest.c                  |     1 +
>  .../qemucaps2xmloutdata/caps_3.1.0.ppc64.xml  |    26 +
>  tests/qemucaps2xmltest.c                      |     1 +
>  tests/qemuxml2argvdata/pseries-features.args  |     2 +-
>  tests/qemuxml2argvdata/pseries-features.xml   |     1 +
>  tests/qemuxml2argvtest.c                      |     1 +
>  tests/qemuxml2xmloutdata/pseries-features.xml |     1 +
>  tests/qemuxml2xmltest.c                       |     1 +
>  19 files changed, 24669 insertions(+), 14 deletions(-)
>  create mode 100644 tests/qemucapabilitiesdata/caps_3.1.0.ppc64.replies
>  create mode 100644 tests/qemucapabilitiesdata/caps_3.1.0.ppc64.xml
>  create mode 100644 tests/qemucaps2xmloutdata/caps_3.1.0.ppc64.xml
> 


ACK

Michal

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