[PATCH v3 0/2] Implement paeg-per-vq to virtio devices

Han Han posted 2 patches 2 years, 6 months ago
Test syntax-check failed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/libvirt tags/patchew/20211015060930.1163897-1-hhan@redhat.com
docs/formatdomain.rst                         |  9 +++++++
docs/schemas/domaincommon.rng                 |  5 ++++
src/conf/domain_conf.c                        | 16 ++++++++++++
src/conf/domain_conf.h                        |  1 +
src/conf/domain_validate.c                    |  6 +++++
src/qemu/qemu_command.c                       |  1 +
src/qemu/qemu_hotplug.c                       |  3 ++-
src/qemu/qemu_validate.c                      |  1 +
.../virtio-options.x86_64-latest.args         | 24 ++++++++---------
tests/qemuxml2argvdata/virtio-options.xml     | 26 +++++++++----------
10 files changed, 66 insertions(+), 26 deletions(-)
[PATCH v3 0/2] Implement paeg-per-vq to virtio devices
Posted by Han Han 2 years, 6 months ago
Diff from v2:
- Remove the code of qemu capabilities since the least supported QEMU
  version is over the version introducing paeg-per-vq.
- Rebase to latest upstream

v2: https://listman.redhat.com/archives/libvir-list/2021-October/msg00489.html

Han Han (2):
  conf: Add page_per_vq for driver element
  qemu: Add support for virtio device option page-per-vq

 docs/formatdomain.rst                         |  9 +++++++
 docs/schemas/domaincommon.rng                 |  5 ++++
 src/conf/domain_conf.c                        | 16 ++++++++++++
 src/conf/domain_conf.h                        |  1 +
 src/conf/domain_validate.c                    |  6 +++++
 src/qemu/qemu_command.c                       |  1 +
 src/qemu/qemu_hotplug.c                       |  3 ++-
 src/qemu/qemu_validate.c                      |  1 +
 .../virtio-options.x86_64-latest.args         | 24 ++++++++---------
 tests/qemuxml2argvdata/virtio-options.xml     | 26 +++++++++----------
 10 files changed, 66 insertions(+), 26 deletions(-)

-- 
2.31.1

Re: [PATCH v3 0/2] Implement paeg-per-vq to virtio devices
Posted by Michal Prívozník 2 years, 6 months ago
On 10/15/21 8:09 AM, Han Han wrote:
> Diff from v2:
> - Remove the code of qemu capabilities since the least supported QEMU
>   version is over the version introducing paeg-per-vq.
> - Rebase to latest upstream
> 
> v2: https://listman.redhat.com/archives/libvir-list/2021-October/msg00489.html
> 
> Han Han (2):
>   conf: Add page_per_vq for driver element
>   qemu: Add support for virtio device option page-per-vq
> 
>  docs/formatdomain.rst                         |  9 +++++++
>  docs/schemas/domaincommon.rng                 |  5 ++++
>  src/conf/domain_conf.c                        | 16 ++++++++++++
>  src/conf/domain_conf.h                        |  1 +
>  src/conf/domain_validate.c                    |  6 +++++
>  src/qemu/qemu_command.c                       |  1 +
>  src/qemu/qemu_hotplug.c                       |  3 ++-
>  src/qemu/qemu_validate.c                      |  1 +
>  .../virtio-options.x86_64-latest.args         | 24 ++++++++---------
>  tests/qemuxml2argvdata/virtio-options.xml     | 26 +++++++++----------
>  10 files changed, 66 insertions(+), 26 deletions(-)
> 

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

and pushed.

Michal