All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/22] Single binary patches for 2026-05-28
@ 2026-05-28 20:22 Philippe Mathieu-Daudé
  2026-05-28 20:22 ` [PULL 01/22] system/exit-with-parent: Close the file descriptor before exit Philippe Mathieu-Daudé
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Philippe Mathieu-Daudé @ 2026-05-28 20:22 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 2db91528542672cf0db78b3f2cc0e22b36302b38:

  Merge tag 'pull-vfio-20260527' of https://github.com/legoater/qemu into staging (2026-05-27 14:45:58 -0400)

are available in the Git repository at:

  https://github.com/philmd/qemu.git tags/single-binary-20260528

for you to fetch changes up to 603813bfc2aa57410cffdf4bccf4b45a82ea006a:

  hw/core: Remove SysemuCPUOps::get_phys_addr_attrs_debug (2026-05-28 22:18:35 +0200)

Checkpatch warnings ignored:

  WARNING: line over 80 characters
  #47: FILE: target/microblaze/helper.h:30:
  +DEF_HELPER_FLAGS_2(microblaze_unaligned_access, TCG_CALL_NO_WG, noreturn, env, i64)

  WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
    accel/accel-target.c

----------------------------------------------------------------
Various patches loosely related to single binary effort:

- Fix possible stub conflicts in meson.build
- Remove SysemuCPUOps::get_phys_addr_attrs_debug()
- Few other fixes and .mailmap updates
----------------------------------------------------------------

Knutsson Development (1):
  monitor: fix missing spaces in screendump help text

Mohammadfaiz Bawa (1):
  hw/tpm/tpm_tis_sysbus: defer resource allocation to realize

Peter Maydell (3):
  target/microblaze: Convert to translate_for_debug
  target/i386: Convert to translate_for_debug
  hw/core: Remove SysemuCPUOps::get_phys_addr_attrs_debug

Philippe Mathieu-Daudé (6):
  target/tcg: Rename unaligned_access() helpers
  docs/devel/tcg-ops: Stop listing dup2_vec()
  docs/devel/tcg-ops: List more vector opcodes
  mailmap: Update email addresses for Daniel Henrique Barboza
  mailmap: Update email addresses for Andrew Jones
  accel/common: Remove last bit of target-specific code

Pierrick Bouvier (7):
  meson.build: move some subdir before system lib creation
  target/arm: move kvm-stub to arm_stubs_ss
  target/arm: move whpx-stub to arm_stubs_ss
  migration: use stub_ss for vfio-stub.c
  net: use stub_ss for vhost-user-stub.c and vhost-vdpa-stub.c
  hw/net: use stub_ss for vhost_net-stub.c
  hw/vfio: use stub_ss for iommufd-stubs.c

Quan Sun (1):
  meson: fix close_range detection on older glibc

Richard W.M. Jones (1):
  system/exit-with-parent: Close the file descriptor before exit

Thomas Huth (2):
  system/vl: Free allocate memory for pid file name in case realpath()
    failed
  system/qtest: Fix length parameter in the b64write code

 docs/devel/tcg-ops.rst           | 13 ++++++----
 meson.build                      | 28 +++++++++++-----------
 include/hw/core/sysemu-cpu-ops.h | 14 -----------
 target/arm/tcg/helper-a64-defs.h |  2 +-
 target/i386/cpu.h                |  4 ++--
 target/microblaze/cpu.h          |  4 ++--
 target/microblaze/helper.h       |  2 +-
 accel/accel-common.c             | 15 ++++++++++++
 accel/accel-target.c             | 41 --------------------------------
 hw/core/cpu-system.c             | 11 ++-------
 hw/tpm/tpm_tis_sysbus.c          | 18 +++++++-------
 system/exit-with-parent.c        |  1 +
 system/qtest.c                   |  2 +-
 system/vl.c                      |  3 +++
 target/arm/tcg/helper-a64.c      |  4 ++--
 target/arm/tcg/translate-a64.c   |  4 ++--
 target/i386/cpu.c                |  2 +-
 target/i386/helper.c             | 31 +++++++++++++-----------
 target/i386/whpx/whpx-all.c      |  2 +-
 target/microblaze/cpu.c          |  2 +-
 target/microblaze/helper.c       | 18 +++++++-------
 target/microblaze/translate.c    |  2 +-
 .mailmap                         |  5 ++++
 accel/meson.build                |  1 -
 hmp-commands.hx                  |  4 ++--
 hw/net/meson.build               |  5 ++--
 hw/vfio/meson.build              |  2 +-
 migration/meson.build            |  4 ++--
 net/meson.build                  |  6 +++--
 target/arm/meson.build           |  6 +++--
 target/arm/whpx/meson.build      |  2 +-
 31 files changed, 114 insertions(+), 144 deletions(-)
 delete mode 100644 accel/accel-target.c

-- 
2.53.0



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

end of thread, other threads:[~2026-05-29 19:49 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-28 20:22 [PULL 00/22] Single binary patches for 2026-05-28 Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 01/22] system/exit-with-parent: Close the file descriptor before exit Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 02/22] target/tcg: Rename unaligned_access() helpers Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 03/22] monitor: fix missing spaces in screendump help text Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 04/22] docs/devel/tcg-ops: Stop listing dup2_vec() Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 05/22] docs/devel/tcg-ops: List more vector opcodes Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 06/22] system/vl: Free allocate memory for pid file name in case realpath() failed Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 07/22] system/qtest: Fix length parameter in the b64write code Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 08/22] meson: fix close_range detection on older glibc Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 09/22] meson.build: move some subdir before system lib creation Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 10/22] target/arm: move kvm-stub to arm_stubs_ss Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 11/22] target/arm: move whpx-stub " Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 12/22] migration: use stub_ss for vfio-stub.c Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 13/22] net: use stub_ss for vhost-user-stub.c and vhost-vdpa-stub.c Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 14/22] hw/net: use stub_ss for vhost_net-stub.c Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 15/22] hw/vfio: use stub_ss for iommufd-stubs.c Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 16/22] mailmap: Update email addresses for Daniel Henrique Barboza Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 17/22] mailmap: Update email addresses for Andrew Jones Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 18/22] hw/tpm/tpm_tis_sysbus: defer resource allocation to realize Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 19/22] accel/common: Remove last bit of target-specific code Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 20/22] target/microblaze: Convert to translate_for_debug Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 21/22] target/i386: " Philippe Mathieu-Daudé
2026-05-28 20:22 ` [PULL 22/22] hw/core: Remove SysemuCPUOps::get_phys_addr_attrs_debug Philippe Mathieu-Daudé
2026-05-29 19:48 ` [PULL 00/22] Single binary patches for 2026-05-28 Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.