From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [PULL 00/16] Qdev patches for 2020-06-23
Date: Tue, 23 Jun 2020 16:23:10 +0200 [thread overview]
Message-ID: <20200623142326.2349416-1-armbru@redhat.com> (raw)
The following changes since commit 61fee7f45955cd0bf9b79be9fa9c7ebabb5e6a85:
Merge remote-tracking branch 'remotes/philmd-gitlab/tags/acceptance-testing-20200622' into staging (2020-06-22 20:50:10 +0100)
are available in the Git repository at:
git://repo.or.cz/qemu/armbru.git tags/pull-qdev-2020-06-23
for you to fetch changes up to 953cd66139b6e28fdc7cdbf28065a0a98ce7877c:
sd/milkymist-memcard: Fix error API violation (2020-06-23 16:07:21 +0200)
----------------------------------------------------------------
Qdev patches for 2020-06-23
* Reject clash between -drive if=floppy and -global isa-fdc
* Deprecate configuring floppies with -global isa-fdc
* Deprecate -drive with bogus interface type
* Reject drive property override instead of screwing up
* Reject chardev property override instead of screwing up
* Various error handling improvements
* Extend iotests/172
----------------------------------------------------------------
Markus Armbruster (16):
iotests/172: Include "info block" in test output
iotests/172: Cover empty filename and multiple use of drives
iotests/172: Cover -global floppy.drive=...
fdc: Reject clash between -drive if=floppy and -global isa-fdc
fdc: Open-code fdctrl_init_isa()
fdc: Deprecate configuring floppies with -global isa-fdc
docs/qdev-device-use.txt: Update section "Default Devices"
blockdev: Deprecate -drive with bogus interface type
qdev: Eliminate get_pointer(), set_pointer()
qdev: Improve netdev property override error a bit
qdev: Reject drive property override
qdev: Reject chardev property override
qdev: Make qdev_prop_set_drive() match the other helpers
arm/aspeed: Drop aspeed_board_init_flashes() parameter @errp
sd/pxa2xx_mmci: Don't crash on pxa2xx_mmci_init() error
sd/milkymist-memcard: Fix error API violation
docs/qdev-device-use.txt | 17 +-
docs/system/deprecated.rst | 34 ++
include/hw/block/fdc.h | 2 +-
include/hw/qdev-properties.h | 18 +-
include/sysemu/blockdev.h | 2 +
blockdev.c | 27 +-
hw/arm/aspeed.c | 16 +-
hw/arm/cubieboard.c | 2 +-
hw/arm/exynos4210.c | 2 +-
hw/arm/imx25_pdk.c | 2 +-
hw/arm/mcimx6ul-evk.c | 2 +-
hw/arm/mcimx7d-sabre.c | 2 +-
hw/arm/msf2-som.c | 4 +-
hw/arm/nseries.c | 4 +-
hw/arm/orangepi.c | 2 +-
hw/arm/raspi.c | 2 +-
hw/arm/sabrelite.c | 6 +-
hw/arm/vexpress.c | 3 +-
hw/arm/xilinx_zynq.c | 7 +-
hw/arm/xlnx-versal-virt.c | 2 +-
hw/arm/xlnx-zcu102.c | 10 +-
hw/block/fdc.c | 82 +++--
hw/block/nand.c | 2 +-
hw/block/pflash_cfi01.c | 6 +-
hw/block/pflash_cfi02.c | 2 +-
hw/core/qdev-properties-system.c | 151 +++++----
hw/core/qdev-properties.c | 17 +
hw/i386/pc.c | 8 +-
hw/ide/qdev.c | 4 +-
hw/isa/isa-superio.c | 18 +-
hw/m68k/q800.c | 3 +-
hw/microblaze/petalogix_ml605_mmu.c | 5 +-
hw/ppc/pnv.c | 3 +-
hw/ppc/spapr.c | 4 +-
hw/scsi/scsi-bus.c | 2 +-
hw/sd/milkymist-memcard.c | 2 +-
hw/sd/pxa2xx_mmci.c | 15 +-
hw/sd/sd.c | 2 +-
hw/sd/ssi-sd.c | 3 +-
hw/sparc64/sun4u.c | 9 +-
hw/xtensa/xtfpga.c | 3 +-
softmmu/vl.c | 8 +
tests/qemu-iotests/172 | 27 +-
tests/qemu-iotests/172.out | 656 ++++++++++++++++++++++++++++++++----
44 files changed, 928 insertions(+), 270 deletions(-)
--
2.26.2
next reply other threads:[~2020-06-23 14:24 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-23 14:23 Markus Armbruster [this message]
2020-06-23 14:23 ` [PULL 01/16] iotests/172: Include "info block" in test output Markus Armbruster
2020-06-23 14:23 ` [PULL 02/16] iotests/172: Cover empty filename and multiple use of drives Markus Armbruster
2020-06-23 14:23 ` [PULL 03/16] iotests/172: Cover -global floppy.drive= Markus Armbruster
2020-06-23 14:23 ` [PULL 04/16] fdc: Reject clash between -drive if=floppy and -global isa-fdc Markus Armbruster
2020-06-23 14:23 ` [PULL 05/16] fdc: Open-code fdctrl_init_isa() Markus Armbruster
2020-06-23 14:23 ` [PULL 06/16] fdc: Deprecate configuring floppies with -global isa-fdc Markus Armbruster
2020-06-23 14:23 ` [PULL 07/16] docs/qdev-device-use.txt: Update section "Default Devices" Markus Armbruster
2020-06-23 14:23 ` [PULL 08/16] blockdev: Deprecate -drive with bogus interface type Markus Armbruster
2020-06-23 14:23 ` [PULL 09/16] qdev: Eliminate get_pointer(), set_pointer() Markus Armbruster
2020-06-23 14:23 ` [PULL 10/16] qdev: Improve netdev property override error a bit Markus Armbruster
2020-06-23 14:23 ` [PULL 11/16] qdev: Reject drive property override Markus Armbruster
2020-06-23 14:23 ` [PULL 12/16] qdev: Reject chardev " Markus Armbruster
2020-06-23 14:23 ` [PULL 13/16] qdev: Make qdev_prop_set_drive() match the other helpers Markus Armbruster
2020-06-23 14:23 ` [PULL 14/16] arm/aspeed: Drop aspeed_board_init_flashes() parameter @errp Markus Armbruster
2020-06-23 14:23 ` [PULL 15/16] sd/pxa2xx_mmci: Don't crash on pxa2xx_mmci_init() error Markus Armbruster
2020-06-23 14:23 ` [PULL 16/16] sd/milkymist-memcard: Fix error API violation Markus Armbruster
2020-06-23 14:40 ` [PULL 00/16] Qdev patches for 2020-06-23 no-reply
2020-06-25 12:39 ` Peter Maydell
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=20200623142326.2349416-1-armbru@redhat.com \
--to=armbru@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).