qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v5 00/11] xenpvh5-tag
@ 2023-06-15 23:52 Stefano Stabellini
  2023-06-15 23:52 ` [PULL v5 01/11] hw/i386/xen/: move xen-mapcache.c to hw/xen/ Stefano Stabellini
                   ` (11 more replies)
  0 siblings, 12 replies; 18+ messages in thread
From: Stefano Stabellini @ 2023-06-15 23:52 UTC (permalink / raw)
  To: peter.maydell, richard.henderson; +Cc: sstabellini, qemu-devel, vikram.garhwal

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


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2025-03-06  6:29 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-15 23:52 [PULL v5 00/11] xenpvh5-tag Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 01/11] hw/i386/xen/: move xen-mapcache.c to hw/xen/ Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 02/11] hw/i386/xen: rearrange xen_hvm_init_pc Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 03/11] hw/i386/xen/xen-hvm: move x86-specific fields out of XenIOState Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 04/11] xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 05/11] include/hw/xen/xen_common: return error from xen_create_ioreq_server Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 06/11] hw/xen/xen-hvm-common: skip ioreq creation on ioreq registration failure Stefano Stabellini
2023-06-20 10:40   ` Peter Maydell
2023-06-15 23:52 ` [PULL v5 07/11] hw/xen/xen-hvm-common: Use g_new and error_report Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 08/11] meson.build: do not set have_xen_pci_passthrough for aarch64 targets Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 09/11] hw/arm: introduce xenpvh machine Stefano Stabellini
2025-03-05 11:36   ` Philippe Mathieu-Daudé
2025-03-05 23:20     ` Stefano Stabellini
2025-03-06  0:13       ` Edgar E. Iglesias
2025-03-06  6:28         ` Philippe Mathieu-Daudé
2023-06-15 23:52 ` [PULL v5 10/11] meson.build: enable xenpv machine build for ARM Stefano Stabellini
2023-06-15 23:52 ` [PULL v5 11/11] test/qtest: add xepvh to skip list for qtest Stefano Stabellini
2023-06-17  8:02 ` [PULL v5 00/11] xenpvh5-tag Richard Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).