[libvirt] [PATCH v3 0/3] qemu: Support vhost-vsock-ccw

Boris Fiuczynski posted 3 patches 5 years, 7 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20180806154108.3554-1-fiuczy@linux.ibm.com
Test syntax-check passed
docs/news.xml                                 |  8 +++++
src/qemu/qemu_command.c                       |  8 +++--
src/qemu/qemu_domain.c                        | 10 ++++--
src/qemu/qemu_domain_address.c                |  7 +++-
.../vhost-vsock-ccw-auto.s390x-latest.args    | 32 ++++++++++++++++++
.../qemuxml2argvdata/vhost-vsock-ccw-auto.xml | 25 ++++++++++++++
.../vhost-vsock-ccw.s390x-latest.args         | 32 ++++++++++++++++++
tests/qemuxml2argvdata/vhost-vsock-ccw.xml    | 32 ++++++++++++++++++
tests/qemuxml2argvtest.c                      | 33 ++++++++++++++-----
.../vhost-vsock-ccw-auto.xml                  | 32 ++++++++++++++++++
tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml  |  1 +
tests/qemuxml2xmltest.c                       |  5 +++
12 files changed, 212 insertions(+), 13 deletions(-)
create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.s390x-latest.args
create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.xml
create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.s390x-latest.args
create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.xml
create mode 100644 tests/qemuxml2xmloutdata/vhost-vsock-ccw-auto.xml
create mode 120000 tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml
[libvirt] [PATCH v3 0/3] qemu: Support vhost-vsock-ccw
Posted by Boris Fiuczynski 5 years, 7 months ago
Support the vhost-vsock-ccw device on S390.

Since v2
 - instead of reusing CAPS_LATEST adding CAPS_ARCH_LATEST (Peter Krempa)

Since v1
 - adjusted vsock command line generation (Ján Tomko)
 - added CAPS_LATEST test coverage to s390 (Ján Tomko)
 - adjusted new vsock tests to use CAPS_LATEST


Bjoern Walk (1):
  tests: qemuxml2argv: add CAPS_ARCH_LATEST macro

Boris Fiuczynski (2):
  qemu: Add ccw support for vhost-vsock
  news: Update for vhost-vsock-ccw support

 docs/news.xml                                 |  8 +++++
 src/qemu/qemu_command.c                       |  8 +++--
 src/qemu/qemu_domain.c                        | 10 ++++--
 src/qemu/qemu_domain_address.c                |  7 +++-
 .../vhost-vsock-ccw-auto.s390x-latest.args    | 32 ++++++++++++++++++
 .../qemuxml2argvdata/vhost-vsock-ccw-auto.xml | 25 ++++++++++++++
 .../vhost-vsock-ccw.s390x-latest.args         | 32 ++++++++++++++++++
 tests/qemuxml2argvdata/vhost-vsock-ccw.xml    | 32 ++++++++++++++++++
 tests/qemuxml2argvtest.c                      | 33 ++++++++++++++-----
 .../vhost-vsock-ccw-auto.xml                  | 32 ++++++++++++++++++
 tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml  |  1 +
 tests/qemuxml2xmltest.c                       |  5 +++
 12 files changed, 212 insertions(+), 13 deletions(-)
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.s390x-latest.args
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.xml
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.s390x-latest.args
 create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.xml
 create mode 100644 tests/qemuxml2xmloutdata/vhost-vsock-ccw-auto.xml
 create mode 120000 tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml

-- 
2.17.0

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH v3 0/3] qemu: Support vhost-vsock-ccw
Posted by Ján Tomko 5 years, 7 months ago
On Mon, Aug 06, 2018 at 05:41:05PM +0200, Boris Fiuczynski wrote:
>Support the vhost-vsock-ccw device on S390.
>
>Since v2
> - instead of reusing CAPS_LATEST adding CAPS_ARCH_LATEST (Peter Krempa)
>
>Since v1
> - adjusted vsock command line generation (Ján Tomko)
> - added CAPS_LATEST test coverage to s390 (Ján Tomko)
> - adjusted new vsock tests to use CAPS_LATEST
>
>
>Bjoern Walk (1):
>  tests: qemuxml2argv: add CAPS_ARCH_LATEST macro
>
>Boris Fiuczynski (2):
>  qemu: Add ccw support for vhost-vsock
>  news: Update for vhost-vsock-ccw support
>
> docs/news.xml                                 |  8 +++++
> src/qemu/qemu_command.c                       |  8 +++--
> src/qemu/qemu_domain.c                        | 10 ++++--
> src/qemu/qemu_domain_address.c                |  7 +++-
> .../vhost-vsock-ccw-auto.s390x-latest.args    | 32 ++++++++++++++++++
> .../qemuxml2argvdata/vhost-vsock-ccw-auto.xml | 25 ++++++++++++++
> .../vhost-vsock-ccw.s390x-latest.args         | 32 ++++++++++++++++++
> tests/qemuxml2argvdata/vhost-vsock-ccw.xml    | 32 ++++++++++++++++++
> tests/qemuxml2argvtest.c                      | 33 ++++++++++++++-----
> .../vhost-vsock-ccw-auto.xml                  | 32 ++++++++++++++++++
> tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml  |  1 +
> tests/qemuxml2xmltest.c                       |  5 +++
> 12 files changed, 212 insertions(+), 13 deletions(-)
> create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.s390x-latest.args
> create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.xml
> create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.s390x-latest.args
> create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.xml
> create mode 100644 tests/qemuxml2xmloutdata/vhost-vsock-ccw-auto.xml
> create mode 120000 tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml
>


Reviewed-by: Ján Tomko <jtomko@redhat.com>

Jano
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list
Re: [libvirt] [PATCH v3 0/3] qemu: Support vhost-vsock-ccw
Posted by Boris Fiuczynski 5 years, 7 months ago
On 08/07/2018 03:25 PM, Ján Tomko wrote:
> On Mon, Aug 06, 2018 at 05:41:05PM +0200, Boris Fiuczynski wrote:
>> Support the vhost-vsock-ccw device on S390.
>>
>> Since v2
>> - instead of reusing CAPS_LATEST adding CAPS_ARCH_LATEST (Peter Krempa)
>>
>> Since v1
>> - adjusted vsock command line generation (Ján Tomko)
>> - added CAPS_LATEST test coverage to s390 (Ján Tomko)
>> - adjusted new vsock tests to use CAPS_LATEST
>>
>>
>> Bjoern Walk (1):
>>  tests: qemuxml2argv: add CAPS_ARCH_LATEST macro
>>
>> Boris Fiuczynski (2):
>>  qemu: Add ccw support for vhost-vsock
>>  news: Update for vhost-vsock-ccw support
>>
>> docs/news.xml                                 |  8 +++++
>> src/qemu/qemu_command.c                       |  8 +++--
>> src/qemu/qemu_domain.c                        | 10 ++++--
>> src/qemu/qemu_domain_address.c                |  7 +++-
>> .../vhost-vsock-ccw-auto.s390x-latest.args    | 32 ++++++++++++++++++
>> .../qemuxml2argvdata/vhost-vsock-ccw-auto.xml | 25 ++++++++++++++
>> .../vhost-vsock-ccw.s390x-latest.args         | 32 ++++++++++++++++++
>> tests/qemuxml2argvdata/vhost-vsock-ccw.xml    | 32 ++++++++++++++++++
>> tests/qemuxml2argvtest.c                      | 33 ++++++++++++++-----
>> .../vhost-vsock-ccw-auto.xml                  | 32 ++++++++++++++++++
>> tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml  |  1 +
>> tests/qemuxml2xmltest.c                       |  5 +++
>> 12 files changed, 212 insertions(+), 13 deletions(-)
>> create mode 100644 
>> tests/qemuxml2argvdata/vhost-vsock-ccw-auto.s390x-latest.args
>> create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw-auto.xml
>> create mode 100644 
>> tests/qemuxml2argvdata/vhost-vsock-ccw.s390x-latest.args
>> create mode 100644 tests/qemuxml2argvdata/vhost-vsock-ccw.xml
>> create mode 100644 tests/qemuxml2xmloutdata/vhost-vsock-ccw-auto.xml
>> create mode 120000 tests/qemuxml2xmloutdata/vhost-vsock-ccw.xml
>>
> 
> 
> Reviewed-by: Ján Tomko <jtomko@redhat.com>
> 
> Jano
Jano,
thanks for your review.

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


-- 
Mit freundlichen Grüßen/Kind regards
    Boris Fiuczynski

IBM Deutschland Research & Development GmbH
Vorsitzender des Aufsichtsrats: Martina Köderitz
Geschäftsführung: Dirk Wittkopp
Sitz der Gesellschaft: Böblingen
Registergericht: Amtsgericht Stuttgart, HRB 243294

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