[PULL v5 00/11] xenpvh5-tag

Stefano Stabellini posted 11 patches 10 months, 3 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/alpine.DEB.2.22.394.2306151649350.897208@ubuntu-linux-20-04-desktop
Maintainers: Peter Maydell <peter.maydell@linaro.org>, Paolo Bonzini <pbonzini@redhat.com>, Richard Henderson <richard.henderson@linaro.org>, Eduardo Habkost <eduardo@habkost.net>, "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Stefano Stabellini <sstabellini@kernel.org>, Anthony Perard <anthony.perard@citrix.com>, Paul Durrant <paul@xen.org>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Thomas Huth <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Laurent Vivier <lvivier@redhat.com>
docs/system/arm/xenpvh.rst       |   34 ++
docs/system/target-arm.rst       |    1 +
hw/arm/meson.build               |    2 +
hw/arm/xen_arm.c                 |  181 +++++++
hw/i386/meson.build              |    1 +
hw/i386/xen/meson.build          |    1 -
hw/i386/xen/trace-events         |   19 -
hw/i386/xen/xen-hvm.c            | 1075 ++++----------------------------------
hw/xen/meson.build               |    7 +
hw/xen/trace-events              |   19 +
hw/xen/xen-hvm-common.c          |  879 +++++++++++++++++++++++++++++++
hw/{i386 => }/xen/xen-mapcache.c |    0
include/hw/arm/xen_arch_hvm.h    |    9 +
include/hw/i386/xen_arch_hvm.h   |   11 +
include/hw/xen/arch_hvm.h        |    5 +
include/hw/xen/xen-hvm-common.h  |   99 ++++
include/hw/xen/xen_native.h      |    8 +-
meson.build                      |    4 +-
tests/qtest/libqtest.c           |    3 +-
19 files changed, 1349 insertions(+), 1009 deletions(-)
create mode 100644 docs/system/arm/xenpvh.rst
create mode 100644 hw/arm/xen_arm.c
create mode 100644 hw/xen/xen-hvm-common.c
rename hw/{i386 => }/xen/xen-mapcache.c (100%)
create mode 100644 include/hw/arm/xen_arch_hvm.h
create mode 100644 include/hw/i386/xen_arch_hvm.h
create mode 100644 include/hw/xen/arch_hvm.h
create mode 100644 include/hw/xen/xen-hvm-common.h
[PULL v5 00/11] xenpvh5-tag
Posted by Stefano Stabellini 10 months, 3 weeks ago
Hi Peter, Richard,

Vikram fixed the gitlab test problem yet again. I appended a tiny qtest
fix at the end of the series.

Cheers,

Stefano


The following changes since commit 7efd65423ab22e6f5890ca08ae40c84d6660242f:

  Merge tag 'pull-riscv-to-apply-20230614' of https://github.com/alistair23/qemu into staging (2023-06-14 05:28:51 +0200)

are available in the Git repository at:

  https://gitlab.com/sstabellini/qemu.git xenpvh5-tag

for you to fetch changes up to d8a714eba68cd7221d44a6acb6b8a69cf6f2f86b:

  test/qtest: add xepvh to skip list for qtest (2023-06-15 16:46:58 -0700)

----------------------------------------------------------------
Stefano Stabellini (5):
      hw/i386/xen/xen-hvm: move x86-specific fields out of XenIOState
      xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
      include/hw/xen/xen_common: return error from xen_create_ioreq_server
      hw/xen/xen-hvm-common: skip ioreq creation on ioreq registration failure
      meson.build: do not set have_xen_pci_passthrough for aarch64 targets

Vikram Garhwal (6):
      hw/i386/xen/: move xen-mapcache.c to hw/xen/
      hw/i386/xen: rearrange xen_hvm_init_pc
      hw/xen/xen-hvm-common: Use g_new and error_report
      hw/arm: introduce xenpvh machine
      meson.build: enable xenpv machine build for ARM
      test/qtest: add xepvh to skip list for qtest

 docs/system/arm/xenpvh.rst       |   34 ++
 docs/system/target-arm.rst       |    1 +
 hw/arm/meson.build               |    2 +
 hw/arm/xen_arm.c                 |  181 +++++++
 hw/i386/meson.build              |    1 +
 hw/i386/xen/meson.build          |    1 -
 hw/i386/xen/trace-events         |   19 -
 hw/i386/xen/xen-hvm.c            | 1075 ++++----------------------------------
 hw/xen/meson.build               |    7 +
 hw/xen/trace-events              |   19 +
 hw/xen/xen-hvm-common.c          |  879 +++++++++++++++++++++++++++++++
 hw/{i386 => }/xen/xen-mapcache.c |    0
 include/hw/arm/xen_arch_hvm.h    |    9 +
 include/hw/i386/xen_arch_hvm.h   |   11 +
 include/hw/xen/arch_hvm.h        |    5 +
 include/hw/xen/xen-hvm-common.h  |   99 ++++
 include/hw/xen/xen_native.h      |    8 +-
 meson.build                      |    4 +-
 tests/qtest/libqtest.c           |    3 +-
 19 files changed, 1349 insertions(+), 1009 deletions(-)
 create mode 100644 docs/system/arm/xenpvh.rst
 create mode 100644 hw/arm/xen_arm.c
 create mode 100644 hw/xen/xen-hvm-common.c
 rename hw/{i386 => }/xen/xen-mapcache.c (100%)
 create mode 100644 include/hw/arm/xen_arch_hvm.h
 create mode 100644 include/hw/i386/xen_arch_hvm.h
 create mode 100644 include/hw/xen/arch_hvm.h
 create mode 100644 include/hw/xen/xen-hvm-common.h
Re: [PULL v5 00/11] xenpvh5-tag
Posted by Richard Henderson 10 months, 3 weeks ago
On 6/16/23 01:52, Stefano Stabellini wrote:
> Hi Peter, Richard,
> 
> Vikram fixed the gitlab test problem yet again. I appended a tiny qtest
> fix at the end of the series.
> 
> Cheers,
> 
> Stefano
> 
> 
> The following changes since commit 7efd65423ab22e6f5890ca08ae40c84d6660242f:
> 
>    Merge tag 'pull-riscv-to-apply-20230614' ofhttps://github.com/alistair23/qemu  into staging (2023-06-14 05:28:51 +0200)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/sstabellini/qemu.git  xenpvh5-tag
> 
> for you to fetch changes up to d8a714eba68cd7221d44a6acb6b8a69cf6f2f86b:
> 
>    test/qtest: add xepvh to skip list for qtest (2023-06-15 16:46:58 -0700)
> 
> ----------------------------------------------------------------
> Stefano Stabellini (5):
>        hw/i386/xen/xen-hvm: move x86-specific fields out of XenIOState
>        xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common
>        include/hw/xen/xen_common: return error from xen_create_ioreq_server
>        hw/xen/xen-hvm-common: skip ioreq creation on ioreq registration failure
>        meson.build: do not set have_xen_pci_passthrough for aarch64 targets
> 
> Vikram Garhwal (6):
>        hw/i386/xen/: move xen-mapcache.c to hw/xen/
>        hw/i386/xen: rearrange xen_hvm_init_pc
>        hw/xen/xen-hvm-common: Use g_new and error_report
>        hw/arm: introduce xenpvh machine
>        meson.build: enable xenpv machine build for ARM
>        test/qtest: add xepvh to skip list for qtest

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/8.1 as appropriate.


r~