qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Michael Tokarev <mjt@tls.msk.ru>
To: qemu-stable@nongnu.org
Cc: qemu-devel@nongnu.org, Michael Roth <michael.roth@amd.com>
Subject: [PATCH v7.2.3 00/30]  Patch Round-up for stable 7.2.3, freeze on 2023-05-27
Date: Wed, 17 May 2023 12:10:12 +0300	[thread overview]
Message-ID: <cover.1684310574.git.mjt@msgid.tls.msk.ru> (raw)

Hi everyone,

I intend to release at least one more 7.2.x release, maybe keep it
going for a while.  This is another attempt at it.

The following new patches are queued for QEMU stable v7.2.3:

  https://gitlab.com/qemu-project/qemu/-/commits/staging-7.2

Patch freeze is 2023-05-27, and the release is planned for 2023-05-29:

  https://wiki.qemu.org/Planning/7.2

Please respond here or CC qemu-stable@nongnu.org on any additional patches
you think should (or shouldn't) be included in the release.

Thanks!

/mjt

--------------------------------------------------------------
Akihiko Odaki (1):
  target/arm: Initialize debug capabilities only once

Albert Esteve (1):
  hw/virtio/vhost-user: avoid using unitialized errp

Alex Bennée (1):
  qemu-options: finesse the recommendations around -blockdev

Carlos López (1):
  virtio: fix reachable assertion due to stale value of cached region
    size

Chuck Zmudzinski (1):
  xen/pt: reserve PCI slot 2 for Intel igd-passthru

Cédric Le Goater (3):
  hw/arm/boot: Make write_bootloader() public as arm_write_bootloader()
  hw/arm/aspeed: Use arm_write_bootloader() to write the bootloader
  async: Suppress GCC13 false positive in aio_bh_poll()

Greg Kurz (2):
  Revert "vhost-user: Monitor slave channel in vhost_user_read()"
  Revert "vhost-user: Introduce nested event loop in vhost_user_read()"

Igor Mammedov (1):
  acpi: pcihp: allow repeating hot-unplug requests

Ilya Leoshkevich (1):
  target/s390x: Fix EXECUTE of relative branches

Jason Andryuk (1):
  9pfs/xen: Fix segfault on shutdown

Kevin Wolf (1):
  block: Fix use after free in blockdev_mark_auto_del()

LIU Zhiwei (1):
  target/riscv: Fix itrigger when icount is used

Paolo Bonzini (2):
  vnc: avoid underflow when accessing user-provided address
  meson: leave unnecessary modules out of the build

Peter Maydell (8):
  docs/about/deprecated.rst: Add "since 7.1" tag to dtb-kaslr-seed
    deprecation
  hw/net/msf2-emac: Don't modify descriptor in-place in
    emac_store_desc()
  hw/arm/raspi: Use arm_write_bootloader() to write boot code
  hw/intc/allwinner-a10-pic: Don't use set_bit()/clear_bit()
  target/arm: Define and use new load_cpu_field_low32()
  hw/sd/allwinner-sdhost: Correctly byteswap descriptor fields
  hw/net/allwinner-sun8i-emac: Correctly byteswap descriptor fields
  ui: Fix pixel colour channel order for PNG screenshots

Richard Henderson (1):
  accel/tcg: Fix atomic_mmu_lookup for reads

Shivaprasad G Bhat (2):
  softfloat: Fix the incorrect computation in float32_exp2
  tcg: ppc64: Fix mask generation for vextractdm

Wang Liang (1):
  block/monitor: Fix crash when executing HMP commit

Yang Zhong (1):
  target/i386: Change wrong XFRM value in SGX CPUID leaf

 accel/tcg/cputlb.c                            |   2 +-
 block/monitor/block-hmp-cmds.c                |  10 +-
 blockdev.c                                    |  18 ++-
 docs/about/deprecated.rst                     |   4 +-
 fpu/softfloat.c                               |   2 +-
 hw/9pfs/trace-events                          |   6 +
 hw/9pfs/xen-9p-backend.c                      |  35 +++---
 hw/acpi/pcihp.c                               |  10 ++
 hw/arm/aspeed.c                               |  42 +++----
 hw/arm/boot.c                                 |  35 ++----
 hw/arm/raspi.c                                |  64 ++++++-----
 hw/i386/pc_piix.c                             |   1 +
 hw/intc/allwinner-a10-pic.c                   |   7 +-
 hw/net/allwinner-sun8i-emac.c                 |  22 ++--
 hw/net/msf2-emac.c                            |  18 +--
 hw/sd/allwinner-sdhost.c                      |  31 +++++-
 hw/virtio/vhost-user.c                        | 104 ++----------------
 hw/virtio/virtio.c                            |  11 +-
 hw/xen/xen_pt.c                               |  64 +++++++++--
 hw/xen/xen_pt.h                               |  20 ++++
 hw/xen/xen_pt_stub.c                          |   4 +
 include/hw/arm/boot.h                         |  49 +++++++++
 meson.build                                   |   4 +
 qemu-options.hx                               |  24 +++-
 target/arm/kvm.c                              |   2 +
 target/arm/kvm64.c                            |  18 +--
 target/arm/kvm_arm.h                          |   8 ++
 target/arm/translate-a32.h                    |   7 ++
 target/arm/translate.c                        |   4 +-
 target/i386/cpu.c                             |   4 +-
 target/ppc/translate/vmx-impl.c.inc           |   2 +-
 .../riscv/insn_trans/trans_privileged.c.inc   |   6 +
 target/s390x/tcg/translate.c                  |  81 ++++++++++----
 ui/console.c                                  |   4 +-
 ui/vnc.c                                      |   2 +-
 util/async.c                                  |  14 +++
 36 files changed, 455 insertions(+), 284 deletions(-)

-- 
2.39.2



             reply	other threads:[~2023-05-17  9:15 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-17  9:10 Michael Tokarev [this message]
2023-05-17  9:10 ` [PATCH v7.2.3 01/30] vnc: avoid underflow when accessing user-provided address Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 02/30] target/i386: Change wrong XFRM value in SGX CPUID leaf Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 03/30] acpi: pcihp: allow repeating hot-unplug requests Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 04/30] qemu-options: finesse the recommendations around -blockdev Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 05/30] docs/about/deprecated.rst: Add "since 7.1" tag to dtb-kaslr-seed deprecation Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 06/30] target/arm: Initialize debug capabilities only once Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 07/30] hw/net/msf2-emac: Don't modify descriptor in-place in emac_store_desc() Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 08/30] hw/arm/boot: Make write_bootloader() public as arm_write_bootloader() Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 09/30] hw/arm/aspeed: Use arm_write_bootloader() to write the bootloader Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 10/30] hw/arm/raspi: Use arm_write_bootloader() to write boot code Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 11/30] hw/intc/allwinner-a10-pic: Don't use set_bit()/clear_bit() Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 12/30] target/arm: Define and use new load_cpu_field_low32() Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 13/30] hw/sd/allwinner-sdhost: Correctly byteswap descriptor fields Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 14/30] hw/net/allwinner-sun8i-emac: " Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 15/30] softfloat: Fix the incorrect computation in float32_exp2 Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 16/30] meson: leave unnecessary modules out of the build Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 17/30] block: Fix use after free in blockdev_mark_auto_del() Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 18/30] target/riscv: Fix itrigger when icount is used Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 19/30] accel/tcg: Fix atomic_mmu_lookup for reads Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 20/30] ui: Fix pixel colour channel order for PNG screenshots Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 21/30] async: Suppress GCC13 false positive in aio_bh_poll() Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 22/30] tcg: ppc64: Fix mask generation for vextractdm Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 23/30] hw/virtio/vhost-user: avoid using unitialized errp Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 24/30] virtio: fix reachable assertion due to stale value of cached region size Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 25/30] block/monitor: Fix crash when executing HMP commit Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 26/30] target/s390x: Fix EXECUTE of relative branches Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 27/30] 9pfs/xen: Fix segfault on shutdown Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 28/30] xen/pt: reserve PCI slot 2 for Intel igd-passthru Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 29/30] Revert "vhost-user: Monitor slave channel in vhost_user_read()" Michael Tokarev
2023-05-17  9:10 ` [PATCH v7.2.3 30/30] Revert "vhost-user: Introduce nested event loop " Michael Tokarev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1684310574.git.mjt@msgid.tls.msk.ru \
    --to=mjt@tls.msk.ru \
    --cc=michael.roth@amd.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-stable@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).