[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/29] Misc patches for 2021-02-25
From: |
Paolo Bonzini |
Subject: |
[PULL 00/29] Misc patches for 2021-02-25 |
Date: |
Fri, 26 Feb 2021 09:04:57 +0100 |
The following changes since commit 00d8ba9e0d62ea1c7459c25aeabf9c8bb7659462:
Merge remote-tracking branch 'remotes/philmd-gitlab/tags/mips-20210221' into
staging (2021-02-21 19:52:58 +0000)
are available in the Git repository at:
https://gitlab.com/bonzini/qemu.git tags/for-upstream
for you to fetch changes up to b7ea7d82903f125e393b7957d1add25cf6b522dd:
tcg/i386: rdpmc: fix the the condtions (2021-02-25 14:49:01 +0100)
----------------------------------------------------------------
* fix --enable-fuzzing linker failures (Alexander)
* target/i386: Add bus lock debug exception support (Chenyi)
* update documentation for preferred boolean option syntax (Daniel)
* make SCSI io_timeout configurable (Hannes)
* fix handling of guest recoverable SCSI errors (myself)
* misc fixes (Pavel, Zheng Zhan Liang, Zihao)
* fix installation of binaries with entitlements (Akihiko)
----------------------------------------------------------------
Akihiko Odaki (1):
hvf: Sign the code after installation
Alexander Bulekov (1):
configure: fix --enable-fuzzing linker failures
Chenyi Qiang (1):
target/i386: Add bus lock debug exception support
Daniel P. Berrangé (10):
gdbstub: use preferred boolean option syntax
qemu-options: update to show preferred boolean syntax for -chardev
qemu-options: update to show preferred boolean syntax for -spice
qemu-options: update to show preferred boolean syntax for -netdev
qemu-options: update to show preferred boolean syntax for -incoming
qemu-options: update to show preferred boolean syntax for -vnc
docs: update to show preferred boolean syntax for -chardev
docs: update to show preferred boolean syntax for -vnc
docs: update to show preferred boolean syntax for -cpu
target/i386: update to show preferred boolean syntax for -cpu
Doug Evans (1):
qom/object.c: Fix typo
Hannes Reinecke (3):
scsi: make io_timeout configurable
scsi: add tracing for SG_IO commands
scsi: drop 'result' argument from command_complete callback
Maxim Levitsky (1):
virtio-scsi: don't process IO on fenced dataplane
Paolo Bonzini (8):
multiprocess: move feature to meson_options.txt
scsi-disk: move scsi_handle_rw_error earlier
scsi-disk: do not complete requests early for rerror/werror=ignore
scsi: introduce scsi_sense_from_errno()
scsi-disk: pass SCSI status to scsi_handle_rw_error
scsi-disk: pass guest recoverable errors through even for rerror=stop
vl: deprecate -writeconfig
chardev: do not use short form boolean options in non-QemuOpts character
device descriptions
Pavel Dovgalyuk (1):
char: don't fail when client is not connected
Zheng Zhan Liang (1):
tcg/i386: rdpmc: fix the the condtions
Zihao Chang (1):
scsi: allow user to set werror as report
chardev/char-socket.c | 13 ++-
configure | 24 +++--
docs/COLO-FT.txt | 12 +--
docs/ccid.txt | 6 +-
docs/colo-proxy.txt | 16 +--
docs/devel/writing-qmp-commands.txt | 2 +-
docs/interop/firmware.json | 2 +-
docs/interop/live-block-operations.rst | 4 +-
docs/interop/qmp-intro.txt | 4 +-
docs/system/cpu-hotplug.rst | 2 +-
docs/system/cpu-models-x86.rst.inc | 4 +-
docs/system/deprecated.rst | 7 ++
docs/system/s390x/3270.rst | 2 +-
docs/system/target-avr.rst | 2 +-
docs/system/vnc-security.rst | 8 +-
docs/tools/qemu-storage-daemon.rst | 4 +-
gdbstub.c | 2 +-
hw/scsi/esp-pci.c | 5 +-
hw/scsi/esp.c | 7 +-
hw/scsi/lsi53c895a.c | 6 +-
hw/scsi/megasas.c | 6 +-
hw/scsi/mptsas.c | 5 +-
hw/scsi/scsi-bus.c | 2 +-
hw/scsi/scsi-disk.c | 172 ++++++++++++++++-----------------
hw/scsi/scsi-generic.c | 28 ++++--
hw/scsi/spapr_vscsi.c | 12 +--
hw/scsi/trace-events | 4 +
hw/scsi/virtio-scsi-dataplane.c | 24 +++--
hw/scsi/virtio-scsi.c | 5 +-
hw/scsi/vmw_pvscsi.c | 4 +-
hw/usb/dev-storage.c | 6 +-
hw/usb/dev-uas.c | 7 +-
include/hw/scsi/esp.h | 2 +-
include/hw/scsi/scsi.h | 6 +-
include/scsi/utils.h | 2 +
meson.build | 18 +++-
meson_options.txt | 2 +
qapi/char.json | 4 +-
qemu-options.hx | 138 +++++++++++++-------------
qom/object.c | 2 +-
scripts/entitlement.sh | 19 +++-
scripts/qmp/qemu-ga-client | 2 +-
scsi/utils.c | 51 ++++++++--
softmmu/vl.c | 1 +
target/i386/cpu.c | 4 +-
target/i386/cpu.h | 2 +
target/i386/tcg/misc_helper.c | 3 +-
tests/guest-debug/run-test.py | 8 +-
tests/qtest/test-x86-cpuid-compat.c | 52 +++++-----
tests/test-char.c | 4 +-
50 files changed, 405 insertions(+), 322 deletions(-)
--
2.29.2
- [PULL 00/29] Misc patches for 2021-02-25,
Paolo Bonzini <=
- [PULL 02/29] configure: fix --enable-fuzzing linker failures, Paolo Bonzini, 2021/02/26
- [PULL 05/29] scsi: add tracing for SG_IO commands, Paolo Bonzini, 2021/02/26
- [PULL 01/29] hvf: Sign the code after installation, Paolo Bonzini, 2021/02/26
- [PULL 03/29] multiprocess: move feature to meson_options.txt, Paolo Bonzini, 2021/02/26
- [PULL 06/29] scsi: allow user to set werror as report, Paolo Bonzini, 2021/02/26
- [PULL 10/29] scsi: introduce scsi_sense_from_errno(), Paolo Bonzini, 2021/02/26
- [PULL 13/29] scsi: drop 'result' argument from command_complete callback, Paolo Bonzini, 2021/02/26
- [PULL 18/29] qemu-options: update to show preferred boolean syntax for -netdev, Paolo Bonzini, 2021/02/26
- [PULL 12/29] scsi-disk: pass guest recoverable errors through even for rerror=stop, Paolo Bonzini, 2021/02/26
- [PULL 16/29] qemu-options: update to show preferred boolean syntax for -chardev, Paolo Bonzini, 2021/02/26