qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 00/19] Misc patches for 2023-09-26
Date: Tue, 26 Sep 2023 18:58:56 +0200	[thread overview]
Message-ID: <20230926165915.738719-1-pbonzini@redhat.com> (raw)

The following changes since commit 494a6a2cf7f775d2c20fd6df9601e30606cc2014:

  Merge tag 'pull-request-2023-09-25' of https://gitlab.com/thuth/qemu into staging (2023-09-25 10:10:30 -0400)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 417f8c8ebfa32823b23fed957dcbc7108cb77dea:

  audio: remove shadowed locals (2023-09-26 18:09:08 +0200)

----------------------------------------------------------------
* new round of audio cleanups
* various shadowed local variable fixes in vl, mptsas, pm_smbus, target/i386
* remove deprecated pc-i440fx-1.4 up to pc-i440fx-1.7
* remove PCI drivers from 128K bios.bin
* remove unused variable in user-exec-stub.c
* small fixes for ui/vnc
* scsi-disk: Disallow block sizes smaller than 512 [CVE-2023-42467]

----------------------------------------------------------------
Paolo Bonzini (18):
      pc_piix: remove pc-i440fx-1.4 up to pc-i440fx-1.7
      seabios: remove PCI drivers from bios.bin
      user-exec-stub: remove unused variable
      vl: remove shadowed local variables
      ui/vnc: fix debug output for invalid audio message
      ui/vnc: fix handling of VNC_FEATURE_XVP
      mptsas: avoid shadowed local variables
      pm_smbus: rename variable to avoid shadowing
      m48t59-test: avoid possible overflow on ABS
      target/i386/kvm: eliminate shadowed local variables
      target/i386/cpu: avoid shadowed local variables
      target/i386/translate: avoid shadowed local variables
      target/i386/seg_helper: introduce tss_set_busy
      target/i386/seg_helper: remove shadowed variable
      target/i386/svm_helper: eliminate duplicate local variable
      block: mark mixed functions that can suspend
      compiler: introduce QEMU_ANNOTATE
      audio: remove shadowed locals

Thomas Huth (1):
      hw/scsi/scsi-disk: Disallow block sizes smaller than 512 [CVE-2023-42467]

 accel/tcg/user-exec-stub.c          |   2 -
 audio/audio.c                       |  11 +++---
 block/io.c                          |   5 ++-
 block/qcow2.c                       |   2 +-
 block/qed.c                         |   4 +-
 block/throttle-groups.c             |   4 +-
 docs/about/deprecated.rst           |   8 ----
 docs/about/removed-features.rst     |   4 +-
 hw/i2c/pm_smbus.c                   |   4 +-
 hw/i386/pc.c                        |  60 ++---------------------------
 hw/i386/pc_piix.c                   |  73 ------------------------------------
 hw/scsi/mptsas.c                    |   6 +--
 hw/scsi/scsi-disk.c                 |   5 ++-
 include/qemu/compiler.h             |   6 +++
 include/qemu/osdep.h                |   6 +--
 pc-bios/bios.bin                    | Bin 131072 -> 131072 bytes
 roms/config.seabios-128k            |  29 +++++++++-----
 softmmu/vl.c                        |   9 ++---
 target/i386/cpu.c                   |   3 +-
 target/i386/kvm/kvm.c               |   7 +---
 target/i386/tcg/seg_helper.c        |  53 +++++++++++++-------------
 target/i386/tcg/sysemu/svm_helper.c |   2 -
 target/i386/tcg/translate.c         |   4 +-
 tests/qtest/m48t59-test.c           |  17 +++++----
 tests/qtest/test-x86-cpuid-compat.c |  10 +----
 ui/vnc.c                            |   6 +--
 26 files changed, 103 insertions(+), 237 deletions(-)
-- 
2.41.0



             reply	other threads:[~2023-09-26 17:00 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-26 16:58 Paolo Bonzini [this message]
2023-09-26 16:58 ` [PULL 01/19] pc_piix: remove pc-i440fx-1.4 up to pc-i440fx-1.7 Paolo Bonzini
2023-09-26 16:58 ` [PULL 02/19] seabios: remove PCI drivers from bios.bin Paolo Bonzini
2023-09-26 16:58 ` [PULL 03/19] user-exec-stub: remove unused variable Paolo Bonzini
2023-09-26 16:59 ` [PULL 04/19] hw/scsi/scsi-disk: Disallow block sizes smaller than 512 [CVE-2023-42467] Paolo Bonzini
2023-09-26 16:59 ` [PULL 05/19] vl: remove shadowed local variables Paolo Bonzini
2023-09-26 16:59 ` [PULL 06/19] ui/vnc: fix debug output for invalid audio message Paolo Bonzini
2023-09-26 16:59 ` [PULL 07/19] ui/vnc: fix handling of VNC_FEATURE_XVP Paolo Bonzini
2023-09-26 16:59 ` [PULL 08/19] mptsas: avoid shadowed local variables Paolo Bonzini
2023-09-26 16:59 ` [PULL 09/19] pm_smbus: rename variable to avoid shadowing Paolo Bonzini
2023-09-26 16:59 ` [PULL 10/19] m48t59-test: avoid possible overflow on ABS Paolo Bonzini
2023-09-26 16:59 ` [PULL 11/19] target/i386/kvm: eliminate shadowed local variables Paolo Bonzini
2023-09-26 16:59 ` [PULL 12/19] target/i386/cpu: avoid " Paolo Bonzini
2023-09-26 16:59 ` [PULL 13/19] target/i386/translate: " Paolo Bonzini
2023-09-26 16:59 ` [PULL 14/19] target/i386/seg_helper: introduce tss_set_busy Paolo Bonzini
2023-09-26 16:59 ` [PULL 15/19] target/i386/seg_helper: remove shadowed variable Paolo Bonzini
2023-09-26 16:59 ` [PULL 16/19] target/i386/svm_helper: eliminate duplicate local variable Paolo Bonzini
2023-09-26 16:59 ` [PULL 17/19] block: mark mixed functions that can suspend Paolo Bonzini
2023-09-26 16:59 ` [PULL 18/19] compiler: introduce QEMU_ANNOTATE Paolo Bonzini
2023-09-26 16:59 ` [PULL 19/19] audio: remove shadowed locals Paolo Bonzini
2023-09-27 20:13 ` [PULL 00/19] Misc patches for 2023-09-26 Stefan Hajnoczi

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=20230926165915.738719-1-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=qemu-devel@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).