From: Alexey Kardashevskiy <aik@ozlabs.ru>
To: qemu-devel@nongnu.org
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>
Subject: [Qemu-devel] [PATCH qemu] fdc: Exit if ISA controller does not support DMA
Date: Thu, 26 Oct 2017 17:46:35 +1100 [thread overview]
Message-ID: <20171026064635.7179-1-aik@ozlabs.ru> (raw)
A "powernv" machine type defines an ISA bus but it does not add any DMA
controller to it so it is possible to hit assert(fdctrl->dma) by
adding "-machine powernv -device isa-fdc".
This replaces assert() with an error message.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
Is it a must for ISA to have DMA controllers?
---
hw/block/fdc.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/hw/block/fdc.c b/hw/block/fdc.c
index 67f78ac702..ed8b367572 100644
--- a/hw/block/fdc.c
+++ b/hw/block/fdc.c
@@ -2700,7 +2700,10 @@ static void isabus_fdc_realize(DeviceState *dev, Error **errp)
fdctrl->dma_chann = isa->dma;
if (fdctrl->dma_chann != -1) {
fdctrl->dma = isa_get_dma(isa_bus_from_device(isadev), isa->dma);
- assert(fdctrl->dma);
+ if (!fdctrl->dma) {
+ error_setg(errp, "ISA controller does not support DMA, exiting");
+ return;
+ }
}
qdev_set_legacy_instance_id(dev, isa->iobase, 2);
--
2.11.0
next reply other threads:[~2017-10-26 6:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-26 6:46 Alexey Kardashevskiy [this message]
2017-11-07 0:58 ` [Qemu-devel] [PATCH qemu] fdc: Exit if ISA controller does not support DMA John Snow
2017-11-22 2:48 ` Alexey Kardashevskiy
2017-12-08 21:29 ` John Snow
2017-12-13 6:19 ` Hervé Poussineau
2018-03-05 10:29 ` Philippe Mathieu-Daudé
2018-03-05 19:03 ` Philippe Mathieu-Daudé
2018-03-05 10:15 ` Thomas Huth
2018-03-15 21:08 ` John Snow
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=20171026064635.7179-1-aik@ozlabs.ru \
--to=aik@ozlabs.ru \
--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).