[PATCH V2 0/3] Xen: Add support for qemu commandline passthrough

Jim Fehlig posted 3 patches 3 years, 7 months ago
Test syntax-check failed
Failed in applying to current master (apply log)
NEWS.rst                                     |  8 ++
docs/drvxen.html.in                          | 29 +++++++
docs/schemas/domaincommon.rng                | 17 ++++
src/libxl/libxl_conf.c                       | 10 ++-
src/libxl/libxl_conf.h                       |  8 ++
src/libxl/libxl_domain.c                     | 84 ++++++++++++++++++
src/libxl/libxl_domain.h                     |  1 +
src/libxl/xen_xl.c                           | 91 ++++++++++++++++++++
tests/xlconfigdata/test-qemu-passthrough.cfg | 26 ++++++
tests/xlconfigdata/test-qemu-passthrough.xml | 53 ++++++++++++
tests/xlconfigtest.c                         |  1 +
11 files changed, 327 insertions(+), 1 deletion(-)
create mode 100644 tests/xlconfigdata/test-qemu-passthrough.cfg
create mode 100644 tests/xlconfigdata/test-qemu-passthrough.xml
[PATCH V2 0/3] Xen: Add support for qemu commandline passthrough
Posted by Jim Fehlig 3 years, 7 months ago
V2 of https://www.redhat.com/archives/libvir-list/2020-July/msg02043.html

Changes in V2:
- Drop use of virStringListCopy, and hence patch 1/4

- Switch to using 'xen' namespace and schema extenstion instead of qemu

- Use more glib functions

Jim Fehlig (3):
  Xen: Add support for qemu command-line passthrough
  Xen: Add support for qemu commandline passthrough to config converter
  news: Mention support for device model commandline passthrough in Xen

 NEWS.rst                                     |  8 ++
 docs/drvxen.html.in                          | 29 +++++++
 docs/schemas/domaincommon.rng                | 17 ++++
 src/libxl/libxl_conf.c                       | 10 ++-
 src/libxl/libxl_conf.h                       |  8 ++
 src/libxl/libxl_domain.c                     | 84 ++++++++++++++++++
 src/libxl/libxl_domain.h                     |  1 +
 src/libxl/xen_xl.c                           | 91 ++++++++++++++++++++
 tests/xlconfigdata/test-qemu-passthrough.cfg | 26 ++++++
 tests/xlconfigdata/test-qemu-passthrough.xml | 53 ++++++++++++
 tests/xlconfigtest.c                         |  1 +
 11 files changed, 327 insertions(+), 1 deletion(-)
 create mode 100644 tests/xlconfigdata/test-qemu-passthrough.cfg
 create mode 100644 tests/xlconfigdata/test-qemu-passthrough.xml

-- 
2.26.2


Re: [PATCH V2 0/3] Xen: Add support for qemu commandline passthrough
Posted by Jim Fehlig 3 years, 7 months ago
Hi All,

Any comments on V2 of this series? (Thanks Jano for reviewing V1!)

Regards,
Jim

On 8/4/20 4:13 PM, Jim Fehlig wrote:
> V2 of https://www.redhat.com/archives/libvir-list/2020-July/msg02043.html
> 
> Changes in V2:
> - Drop use of virStringListCopy, and hence patch 1/4
> 
> - Switch to using 'xen' namespace and schema extenstion instead of qemu
> 
> - Use more glib functions
> 
> Jim Fehlig (3):
>    Xen: Add support for qemu command-line passthrough
>    Xen: Add support for qemu commandline passthrough to config converter
>    news: Mention support for device model commandline passthrough in Xen
> 
>   NEWS.rst                                     |  8 ++
>   docs/drvxen.html.in                          | 29 +++++++
>   docs/schemas/domaincommon.rng                | 17 ++++
>   src/libxl/libxl_conf.c                       | 10 ++-
>   src/libxl/libxl_conf.h                       |  8 ++
>   src/libxl/libxl_domain.c                     | 84 ++++++++++++++++++
>   src/libxl/libxl_domain.h                     |  1 +
>   src/libxl/xen_xl.c                           | 91 ++++++++++++++++++++
>   tests/xlconfigdata/test-qemu-passthrough.cfg | 26 ++++++
>   tests/xlconfigdata/test-qemu-passthrough.xml | 53 ++++++++++++
>   tests/xlconfigtest.c                         |  1 +
>   11 files changed, 327 insertions(+), 1 deletion(-)
>   create mode 100644 tests/xlconfigdata/test-qemu-passthrough.cfg
>   create mode 100644 tests/xlconfigdata/test-qemu-passthrough.xml
> 

Re: [PATCH V2 0/3] Xen: Add support for qemu commandline passthrough
Posted by Michal Privoznik 3 years, 7 months ago
On 8/5/20 12:13 AM, Jim Fehlig wrote:
> V2 of https://www.redhat.com/archives/libvir-list/2020-July/msg02043.html
> 
> Changes in V2:
> - Drop use of virStringListCopy, and hence patch 1/4
> 
> - Switch to using 'xen' namespace and schema extenstion instead of qemu
> 
> - Use more glib functions
> 
> Jim Fehlig (3):
>    Xen: Add support for qemu command-line passthrough
>    Xen: Add support for qemu commandline passthrough to config converter
>    news: Mention support for device model commandline passthrough in Xen
> 
>   NEWS.rst                                     |  8 ++
>   docs/drvxen.html.in                          | 29 +++++++
>   docs/schemas/domaincommon.rng                | 17 ++++
>   src/libxl/libxl_conf.c                       | 10 ++-
>   src/libxl/libxl_conf.h                       |  8 ++
>   src/libxl/libxl_domain.c                     | 84 ++++++++++++++++++
>   src/libxl/libxl_domain.h                     |  1 +
>   src/libxl/xen_xl.c                           | 91 ++++++++++++++++++++
>   tests/xlconfigdata/test-qemu-passthrough.cfg | 26 ++++++
>   tests/xlconfigdata/test-qemu-passthrough.xml | 53 ++++++++++++
>   tests/xlconfigtest.c                         |  1 +
>   11 files changed, 327 insertions(+), 1 deletion(-)
>   create mode 100644 tests/xlconfigdata/test-qemu-passthrough.cfg
>   create mode 100644 tests/xlconfigdata/test-qemu-passthrough.xml
> 

Reviewed-by: Michal Privoznik <mprivozn@redhat.com>

Michal