[libvirt] [PATCHv2 0/7] qemu: add vhost-vsock-pci support

Ján Tomko posted 7 patches 5 years, 11 months ago
Failed in applying to current master (apply log)
configure.ac                                       |   8 +
docs/formatdomain.html.in                          |  20 ++
docs/schemas/domaincommon.rng                      |  29 +++
src/conf/domain_conf.c                             | 228 ++++++++++++++++++++-
src/conf/domain_conf.h                             |  27 +++
src/libvirt_private.syms                           |   6 +
src/qemu/qemu_alias.c                              |  16 ++
src/qemu/qemu_capabilities.c                       |   2 +
src/qemu/qemu_capabilities.h                       |   1 +
src/qemu/qemu_command.c                            |  45 ++++
src/qemu/qemu_domain.c                             |  42 ++++
src/qemu/qemu_domain.h                             |   9 +
src/qemu/qemu_domain_address.c                     |  11 +
src/qemu/qemu_driver.c                             |   6 +
src/qemu/qemu_hotplug.c                            |   1 +
src/qemu/qemu_process.c                            |  35 ++++
src/util/Makefile.inc.am                           |   2 +
src/util/virvsock.c                                |  89 ++++++++
src/util/virvsock.h                                |  29 +++
tests/qemucapabilitiesdata/caps_2.10.0.aarch64.xml |   1 +
tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml   |   1 +
tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml   |   1 +
tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml  |   1 +
tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml   |   1 +
tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml |   1 +
tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml   |   1 +
tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml   |   1 +
tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml  |   1 +
tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml    |   1 +
tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml   |   1 +
tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml    |   1 +
tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml    |   1 +
tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml   |   1 +
.../vhost-vsock-auto.x86_64-latest.args            |  32 +++
tests/qemuxml2argvdata/vhost-vsock-auto.xml        |  35 ++++
.../vhost-vsock.x86_64-latest.args                 |  32 +++
tests/qemuxml2argvdata/vhost-vsock.xml             |  36 ++++
tests/qemuxml2argvtest.c                           |  14 ++
tests/qemuxml2xmloutdata/vhost-vsock-auto.xml      |  36 ++++
tests/qemuxml2xmloutdata/vhost-vsock.xml           |   1 +
tests/qemuxml2xmltest.c                            |   3 +
41 files changed, 808 insertions(+), 1 deletion(-)
create mode 100644 src/util/virvsock.c
create mode 100644 src/util/virvsock.h
create mode 100644 tests/qemuxml2argvdata/vhost-vsock-auto.x86_64-latest.args
create mode 100644 tests/qemuxml2argvdata/vhost-vsock-auto.xml
create mode 100644 tests/qemuxml2argvdata/vhost-vsock.x86_64-latest.args
create mode 100644 tests/qemuxml2argvdata/vhost-vsock.xml
create mode 100644 tests/qemuxml2xmloutdata/vhost-vsock-auto.xml
create mode 120000 tests/qemuxml2xmloutdata/vhost-vsock.xml
[libvirt] [PATCHv2 0/7] qemu: add vhost-vsock-pci support
Posted by Ján Tomko 5 years, 11 months ago
v1:
https://www.redhat.com/archives/libvir-list/2018-May/msg01517.html
v2:
* use <vsock> instead of <interface>
* use <source> for the guest address
* add <source auto> attribute and auto-assign the guest CID
* fixed PCI address allocation
https://bugzilla.redhat.com/show_bug.cgi?id=1291851

Ján Tomko (7):
  Introduce virDomainVsockDef
  Add privateData to virDomainVsockDef
  conf: introduce <vsock> element
  qemu: add private data for vsock
  Introduce QEMU_CAPS_DEVICE_VHOST_VSOCK
  util: create virvsock.c
  qemu: add support for vhost-vsock-pci

 configure.ac                                       |   8 +
 docs/formatdomain.html.in                          |  20 ++
 docs/schemas/domaincommon.rng                      |  29 +++
 src/conf/domain_conf.c                             | 228 ++++++++++++++++++++-
 src/conf/domain_conf.h                             |  27 +++
 src/libvirt_private.syms                           |   6 +
 src/qemu/qemu_alias.c                              |  16 ++
 src/qemu/qemu_capabilities.c                       |   2 +
 src/qemu/qemu_capabilities.h                       |   1 +
 src/qemu/qemu_command.c                            |  45 ++++
 src/qemu/qemu_domain.c                             |  42 ++++
 src/qemu/qemu_domain.h                             |   9 +
 src/qemu/qemu_domain_address.c                     |  11 +
 src/qemu/qemu_driver.c                             |   6 +
 src/qemu/qemu_hotplug.c                            |   1 +
 src/qemu/qemu_process.c                            |  35 ++++
 src/util/Makefile.inc.am                           |   2 +
 src/util/virvsock.c                                |  89 ++++++++
 src/util/virvsock.h                                |  29 +++
 tests/qemucapabilitiesdata/caps_2.10.0.aarch64.xml |   1 +
 tests/qemucapabilitiesdata/caps_2.10.0.ppc64.xml   |   1 +
 tests/qemucapabilitiesdata/caps_2.10.0.s390x.xml   |   1 +
 tests/qemucapabilitiesdata/caps_2.10.0.x86_64.xml  |   1 +
 tests/qemucapabilitiesdata/caps_2.11.0.s390x.xml   |   1 +
 tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml |   1 +
 tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml   |   1 +
 tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml   |   1 +
 tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml  |   1 +
 tests/qemucapabilitiesdata/caps_2.8.0.s390x.xml    |   1 +
 tests/qemucapabilitiesdata/caps_2.8.0.x86_64.xml   |   1 +
 tests/qemucapabilitiesdata/caps_2.9.0.ppc64.xml    |   1 +
 tests/qemucapabilitiesdata/caps_2.9.0.s390x.xml    |   1 +
 tests/qemucapabilitiesdata/caps_2.9.0.x86_64.xml   |   1 +
 .../vhost-vsock-auto.x86_64-latest.args            |  32 +++
 tests/qemuxml2argvdata/vhost-vsock-auto.xml        |  35 ++++
 .../vhost-vsock.x86_64-latest.args                 |  32 +++
 tests/qemuxml2argvdata/vhost-vsock.xml             |  36 ++++
 tests/qemuxml2argvtest.c                           |  14 ++
 tests/qemuxml2xmloutdata/vhost-vsock-auto.xml      |  36 ++++
 tests/qemuxml2xmloutdata/vhost-vsock.xml           |   1 +
 tests/qemuxml2xmltest.c                            |   3 +
 41 files changed, 808 insertions(+), 1 deletion(-)
 create mode 100644 src/util/virvsock.c
 create mode 100644 src/util/virvsock.h
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock-auto.x86_64-latest.args
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock-auto.xml
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock.x86_64-latest.args
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock.xml
 create mode 100644 tests/qemuxml2xmloutdata/vhost-vsock-auto.xml
 create mode 120000 tests/qemuxml2xmloutdata/vhost-vsock.xml

-- 
2.16.1

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCHv2 0/7] qemu: add vhost-vsock-pci support
Posted by Ján Tomko 5 years, 11 months ago
On Thu, May 24, 2018 at 12:39:08PM +0200, Ján Tomko wrote:
>v1:
>https://www.redhat.com/archives/libvir-list/2018-May/msg01517.html
>v2:
>* use <vsock> instead of <interface>
>* use <source> for the guest address
>* add <source auto> attribute and auto-assign the guest CID
>* fixed PCI address allocation
>https://bugzilla.redhat.com/show_bug.cgi?id=1291851
>
>Ján Tomko (7):
>  Introduce virDomainVsockDef
>  Add privateData to virDomainVsockDef
>  conf: introduce <vsock> element
>  qemu: add private data for vsock
>  Introduce QEMU_CAPS_DEVICE_VHOST_VSOCK
>  util: create virvsock.c
>  qemu: add support for vhost-vsock-pci
>

I forgot to rebase on the latest capability changes,
if you do not want to resolve them yourselves [0]
they are also on my repo.cz:
git://repo.or.cz/libvirt/jtomko.git vsock-v2
http://repo.or.cz/libvirt/jtomko.git/shortlog/refs/heads/vsock-v2

Jano

[0] or with my naive merge tool
https://www.redhat.com/archives/libvir-list/2018-April/msg00942.html
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list