mbox

[PULL,00/20] SCSI, build system patches for 2022-07-13

Message ID 20220714090211.304305-1-pbonzini@redhat.com
State New
Headers show

Pull-request

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

Message

Paolo Bonzini July 14, 2022, 9:01 a.m. UTC
The following changes since commit 8e3d85d36b77f11ad7bded3a2d48c1f0cc334f82:

  Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2022-07-12 14:12:15 +0100)

are available in the Git repository at:

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

for you to fetch changes up to c0b3607d5938f5ee7fd16ff1e102afe938fd4b39:

  pc-bios/s390-ccw: add -Wno-array-bounds (2022-07-13 16:58:58 +0200)

----------------------------------------------------------------
* SCSI fuzzing fix (Mauro)
* pre-install data files in the build directory (Akihiko)
* SCSI fixes for Mac OS (Mark)

----------------------------------------------------------------
Akihiko Odaki (4):
      cutils: Introduce bundle mechanism
      datadir: Use bundle mechanism
      module: Use bundle mechanism
      meson: Prefix each element of firmware path

Mark Cave-Ayland (14):
      scsi-disk: add new quirks bitmap to SCSIDiskState
      scsi-disk: add MODE_PAGE_APPLE_VENDOR quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_page_apple_vendor for scsi-cd devices
      scsi-disk: add SCSI_DISK_QUIRK_MODE_SENSE_ROM_USE_DBD quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_sense_rom_use_dbd for scsi-cd devices
      scsi-disk: add SCSI_DISK_QUIRK_MODE_PAGE_VENDOR_SPECIFIC_APPLE quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_page_vendor_specific_apple for scsi devices
      scsi-disk: add FORMAT UNIT command
      scsi-disk: add SCSI_DISK_QUIRK_MODE_PAGE_TRUNCATED quirk for Macintosh
      q800: implement compat_props to enable quirk_mode_page_truncated for scsi-cd devices
      scsi-disk: allow the MODE_PAGE_R_W_ERROR AWRE bit to be changeable for CDROM drives
      scsi-disk: allow MODE SELECT block descriptor to set the block size
      q800: add default vendor and product information for scsi-hd devices
      q800: add default vendor and product information for scsi-cd devices

Mauro Matteo Cascella (1):
      scsi/lsi53c895a: really fix use-after-free in lsi_do_msgout (CVE-2022-0216)

Paolo Bonzini (1):
      pc-bios/s390-ccw: add -Wno-array-bounds

 .travis.yml                        |  2 +-
 Makefile                           |  2 +-
 configure                          | 15 ++++++
 docs/about/build-platforms.rst     |  2 +-
 hw/m68k/q800.c                     | 16 +++++++
 hw/scsi/lsi53c895a.c               |  3 +-
 hw/scsi/scsi-disk.c                | 96 +++++++++++++++++++++++++++++++++++---
 hw/scsi/trace-events               |  3 ++
 include/hw/scsi/scsi.h             |  6 +++
 include/qemu/cutils.h              | 18 +++++--
 include/scsi/constants.h           |  2 +
 meson.build                        | 15 +++++-
 meson_options.txt                  |  2 +-
 pc-bios/keymaps/meson.build        | 21 +++------
 pc-bios/meson.build                | 13 ++----
 pc-bios/s390-ccw/Makefile          |  1 +
 scripts/meson-buildoptions.py      |  7 ++-
 scripts/meson-buildoptions.sh      |  4 +-
 scripts/oss-fuzz/build.sh          |  8 ++--
 scripts/symlink-install-tree.py    | 33 +++++++++++++
 softmmu/datadir.c                  | 30 +++---------
 tests/qtest/fuzz-lsi53c895a-test.c | 76 ++++++++++++++++++++++++++++++
 tests/qtest/fuzz/fuzz.c            | 18 -------
 util/cutils.c                      | 66 ++++++++++++++++++--------
 util/meson.build                   |  1 +
 util/module.c                      |  1 -
 26 files changed, 348 insertions(+), 113 deletions(-)
 create mode 100644 scripts/symlink-install-tree.py

Comments

Peter Maydell July 15, 2022, 10:10 a.m. UTC | #1
On Thu, 14 Jul 2022 at 10:14, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 8e3d85d36b77f11ad7bded3a2d48c1f0cc334f82:
>
>   Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2022-07-12 14:12:15 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to c0b3607d5938f5ee7fd16ff1e102afe938fd4b39:
>
>   pc-bios/s390-ccw: add -Wno-array-bounds (2022-07-13 16:58:58 +0200)
>
> ----------------------------------------------------------------
> * SCSI fuzzing fix (Mauro)
> * pre-install data files in the build directory (Akihiko)
> * SCSI fixes for Mac OS (Mark)
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/7.1
for any user-visible changes.

-- PMM