qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/30] Accelerator patches for 2023-06-28
@ 2023-06-28 15:52 Philippe Mathieu-Daudé
  2023-06-28 15:52 ` [PULL 01/30] MAINTAINERS: Update Roman Bolshakov email address Philippe Mathieu-Daudé
                   ` (30 more replies)
  0 siblings, 31 replies; 32+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-06-28 15:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: Philippe Mathieu-Daudé

The following changes since commit b111569da9f82fdf05df03184836a4564adef599:

  Merge tag 'ui-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2023-06-28 08:42:32 +0200)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/accel-20230628

for you to fetch changes up to 14a868c626e99eea063ecbf6ef86002f6a314f0a:

  exec/memory: Add symbol for the min value of memory listener priority (2023-06-28 14:27:59 +0200)

----------------------------------------------------------------
Accelerators patches

- MAINTAINERS: Update Roman Bolshakov email address
- HAX: Fix a memory leak
- HAX/NVMM/WHPX/HVF: Rename per-accel state as AccelCPUState
- KVM: Restrict specific fields from ArchCPU
- WHPX: Re-enable cross-build gitlab-ci job on case sensitive filesystems
- WHPX: Fix error message when setting ProcessorCount fails
- exec/memory: Add definitions for memory listener priorities

----------------------------------------------------------------

Isaku Yamahata (3):
  exec/memory: Add symbolic value for memory listener priority for accel
  exec/memory: Add symbol for memory listener priority for device
    backend
  exec/memory: Add symbol for the min value of memory listener priority

Philippe Mathieu-Daudé (26):
  MAINTAINERS: Update Roman Bolshakov email address
  docs/devel/testing: Update the 'Docker Debugging' section
  accel: Re-enable WHPX cross-build on case sensitive filesystems
  accel: Document generic accelerator headers
  accel: Remove unused hThread variable on TCG/WHPX
  accel: Fix a leak on Windows HAX
  accel: Destroy HAX vCPU threads once done
  accel: Rename 'hax_vcpu' as 'accel' in CPUState
  accel: Rename HAX 'struct hax_vcpu_state' -> AccelCPUState
  accel: Move HAX hThread to accelerator context
  accel: Remove NVMM unreachable error path
  accel: Rename NVMM 'struct qemu_vcpu' -> AccelCPUState
  accel: Inline NVMM get_qemu_vcpu()
  accel: Remove WHPX unreachable error path
  accel: Rename WHPX 'struct whpx_vcpu' -> AccelCPUState
  accel: Inline WHPX get_whpx_vcpu()
  accel: Rename 'cpu_state' -> 'cs'
  accel: Rename HVF 'struct hvf_vcpu_state' -> AccelCPUState
  accel/kvm: Re-include "exec/memattrs.h" header
  accel/kvm: Declare kvm_direct_msi_allowed in stubs
  hw/intc/arm_gic: Un-inline GIC*/ITS class_name() helpers
  hw/intc/arm_gic: Rename 'first_cpu' argument
  hw/arm/sbsa-ref: Include missing 'sysemu/kvm.h' header
  target/arm: Restrict KVM-specific fields from ArchCPU
  target/ppc: Restrict KVM-specific fields from ArchCPU
  target/riscv: Restrict KVM-specific fields from ArchCPU

Zhao Liu (1):
  target/i386/WHPX: Fix error message when fail to set ProcessorCount

 MAINTAINERS                            |   4 +-
 docs/devel/testing.rst                 |   2 +-
 meson.build                            |   4 +-
 include/exec/memory.h                  |   4 +
 include/hw/core/cpu.h                  |  10 +-
 include/hw/intc/arm_gic.h              |   2 +
 include/hw/intc/arm_gicv3_common.h     |  10 +
 include/hw/intc/arm_gicv3_its_common.h |   9 +
 include/qemu/typedefs.h                |   1 +
 include/sysemu/hax.h                   |   2 +
 include/sysemu/hvf_int.h               |   2 +-
 include/sysemu/kvm.h                   |   3 +
 include/sysemu/nvmm.h                  |   2 +
 include/sysemu/tcg.h                   |   2 +
 include/sysemu/whpx.h                  |   2 +
 include/sysemu/xen.h                   |   2 +
 target/arm/cpu.h                       |   2 +
 target/arm/kvm_arm.h                   |  45 ---
 target/i386/hax/hax-i386.h             |  12 +-
 target/i386/hvf/vmx.h                  |  22 +-
 target/i386/hvf/x86hvf.h               |  18 +-
 target/i386/whpx/whpx-internal.h       |   4 +-
 target/ppc/cpu.h                       |   2 +
 target/riscv/cpu.h                     |   2 +
 accel/hvf/hvf-accel-ops.c              |  21 +-
 accel/kvm/kvm-all.c                    |   5 +-
 accel/stubs/kvm-stub.c                 |   1 +
 accel/tcg/tcg-accel-ops-mttcg.c        |   4 -
 accel/tcg/tcg-accel-ops-rr.c           |   3 -
 hw/arm/sbsa-ref.c                      |   2 +
 hw/arm/virt-acpi-build.c               |   2 +-
 hw/arm/virt.c                          |   1 +
 hw/arm/xen_arm.c                       |   2 +-
 hw/i386/xen/xen-hvm.c                  |   2 +-
 hw/intc/arm_gic_common.c               |  11 +-
 hw/intc/arm_gicv3_common.c             |  14 +
 hw/intc/arm_gicv3_its_common.c         |  12 +
 hw/ppc/e500.c                          |   2 +
 hw/ppc/ppce500_spin.c                  |   2 +
 hw/remote/proxy-memory-listener.c      |   2 +-
 hw/virtio/vhost.c                      |   2 +-
 hw/xen/xen-hvm-common.c                |   2 +-
 hw/xen/xen_pt.c                        |   4 +-
 target/arm/hvf/hvf.c                   | 108 +++----
 target/arm/kvm.c                       |   1 +
 target/i386/hax/hax-accel-ops.c        |   5 +-
 target/i386/hax/hax-all.c              |  26 +-
 target/i386/hax/hax-mem.c              |   2 +-
 target/i386/hax/hax-posix.c            |   4 +-
 target/i386/hax/hax-windows.c          |   6 +-
 target/i386/hvf/hvf.c                  | 106 +++----
 target/i386/hvf/x86.c                  |  28 +-
 target/i386/hvf/x86_descr.c            |  26 +-
 target/i386/hvf/x86_emu.c              |  62 ++---
 target/i386/hvf/x86_mmu.c              |   4 +-
 target/i386/hvf/x86_task.c             |  10 +-
 target/i386/hvf/x86hvf.c               | 372 ++++++++++++-------------
 target/i386/nvmm/nvmm-all.c            |  44 ++-
 target/i386/whpx/whpx-accel-ops.c      |   3 -
 target/i386/whpx/whpx-all.c            |  55 ++--
 target/ppc/mmu_common.c                |   4 +
 target/riscv/cpu.c                     |   2 +-
 target/riscv/machine.c                 |   8 +-
 .mailmap                               |   3 +-
 64 files changed, 582 insertions(+), 559 deletions(-)

-- 
2.38.1



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

end of thread, other threads:[~2023-06-29 11:16 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-28 15:52 [PULL 00/30] Accelerator patches for 2023-06-28 Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 01/30] MAINTAINERS: Update Roman Bolshakov email address Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 02/30] docs/devel/testing: Update the 'Docker Debugging' section Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 03/30] accel: Re-enable WHPX cross-build on case sensitive filesystems Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 04/30] accel: Document generic accelerator headers Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 05/30] accel: Remove unused hThread variable on TCG/WHPX Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 06/30] accel: Fix a leak on Windows HAX Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 07/30] accel: Destroy HAX vCPU threads once done Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 08/30] accel: Rename 'hax_vcpu' as 'accel' in CPUState Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 09/30] accel: Rename HAX 'struct hax_vcpu_state' -> AccelCPUState Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 10/30] accel: Move HAX hThread to accelerator context Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 11/30] accel: Remove NVMM unreachable error path Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 12/30] accel: Rename NVMM 'struct qemu_vcpu' -> AccelCPUState Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 13/30] accel: Inline NVMM get_qemu_vcpu() Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 14/30] accel: Remove WHPX unreachable error path Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 15/30] accel: Rename WHPX 'struct whpx_vcpu' -> AccelCPUState Philippe Mathieu-Daudé
2023-06-28 15:52 ` [PULL 16/30] accel: Inline WHPX get_whpx_vcpu() Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 17/30] accel: Rename 'cpu_state' -> 'cs' Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 18/30] accel: Rename HVF 'struct hvf_vcpu_state' -> AccelCPUState Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 19/30] accel/kvm: Re-include "exec/memattrs.h" header Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 20/30] accel/kvm: Declare kvm_direct_msi_allowed in stubs Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 21/30] hw/intc/arm_gic: Un-inline GIC*/ITS class_name() helpers Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 22/30] hw/intc/arm_gic: Rename 'first_cpu' argument Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 23/30] hw/arm/sbsa-ref: Include missing 'sysemu/kvm.h' header Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 24/30] target/arm: Restrict KVM-specific fields from ArchCPU Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 25/30] target/ppc: " Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 26/30] target/riscv: " Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 27/30] target/i386/WHPX: Fix error message when fail to set ProcessorCount Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 28/30] exec/memory: Add symbolic value for memory listener priority for accel Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 29/30] exec/memory: Add symbol for memory listener priority for device backend Philippe Mathieu-Daudé
2023-06-28 15:53 ` [PULL 30/30] exec/memory: Add symbol for the min value of memory listener priority Philippe Mathieu-Daudé
2023-06-29 11:15 ` [PULL 00/30] Accelerator patches for 2023-06-28 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).