[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL v3 0/10] xenpvh3-tag
|
From: |
Stefano Stabellini |
|
Subject: |
[PULL v3 0/10] xenpvh3-tag |
|
Date: |
Tue, 2 May 2023 17:12:53 -0700 (PDT) |
|
User-agent: |
Alpine 2.22 (DEB 394 2020-01-19) |
Hi Peter,
Vikram fixed the gitlab test problem, so now all the tests should
succeed. There were no changes to the QEMU code. I am resending the pull
request (I rebased it on staging, no conflicts.)
For reference this was the previous pull request:
https://marc.info/?l=qemu-devel&m=167641819725964
Cheers,
Stefano
The following changes since commit 4ebc33f3f3b656ebf62112daca6aa0f8019b4891:
Merge tag 'pull-tcg-20230502-2' of https://gitlab.com/rth7680/qemu into
staging (2023-05-02 21:18:45 +0100)
are available in the Git repository at:
https://gitlab.com/sstabellini/qemu xenpvh3-tag
for you to fetch changes up to bc618c54318cbc2fcb9decf9d4c193cc336a0dbc:
meson.build: enable xenpv machine build for ARM (2023-05-02 17:04:54 -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 (5):
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
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 | 13 +-
meson.build | 4 +-
18 files changed, 1350 insertions(+), 1010 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 v3 0/10] xenpvh3-tag,
Stefano Stabellini <=
- [PULL v3 01/10] hw/i386/xen/: move xen-mapcache.c to hw/xen/, Stefano Stabellini, 2023/05/02
- [PULL v3 03/10] hw/i386/xen/xen-hvm: move x86-specific fields out of XenIOState, Stefano Stabellini, 2023/05/02
- [PULL v3 02/10] hw/i386/xen: rearrange xen_hvm_init_pc, Stefano Stabellini, 2023/05/02
- [PULL v3 07/10] hw/xen/xen-hvm-common: Use g_new and error_report, Stefano Stabellini, 2023/05/02
- [PULL v3 04/10] xen-hvm: reorganize xen-hvm and move common function to xen-hvm-common, Stefano Stabellini, 2023/05/02
- [PULL v3 09/10] hw/arm: introduce xenpvh machine, Stefano Stabellini, 2023/05/02
- [PULL v3 05/10] include/hw/xen/xen_common: return error from xen_create_ioreq_server, Stefano Stabellini, 2023/05/02
- [PULL v3 06/10] hw/xen/xen-hvm-common: skip ioreq creation on ioreq registration failure, Stefano Stabellini, 2023/05/02
- [PULL v3 08/10] meson.build: do not set have_xen_pci_passthrough for aarch64 targets, Stefano Stabellini, 2023/05/02
- [PULL v3 10/10] meson.build: enable xenpv machine build for ARM, Stefano Stabellini, 2023/05/02