From: Christian Borntraeger <borntraeger@de.ibm.com>
To: Alexander Graf <agraf@suse.de>
Cc: "Christian Borntraeger" <borntraeger@de.ibm.com>,
qemu-stable@nongnu.org, "Andreas Färber" <afaerber@suse.de>,
"Dominik Dingel" <dingel@linux.vnet.ibm.com>,
qemu-devel <qemu-devel@nongnu.org>
Subject: [Qemu-devel] [PATCH 1/2] s390/ipl: Fix boot order
Date: Mon, 17 Jun 2013 14:29:41 +0200 [thread overview]
Message-ID: <1371472182-10074-2-git-send-email-borntraeger@de.ibm.com> (raw)
In-Reply-To: <1371472182-10074-1-git-send-email-borntraeger@de.ibm.com>
The latest ipl code adoptions collided with some of the virtio
refactoring rework. This resulted in always booting the first
disk. Lets fix booting from a given ID.
The new code also checks for command lines without bootindex to
avoid random behaviour when accessing dev_st (==0).
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
CC: qemu-stable@nongnu.org
---
hw/s390x/ipl.c | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
index 0aeb003..8b25b1c 100644
--- a/hw/s390x/ipl.c
+++ b/hw/s390x/ipl.c
@@ -156,13 +156,15 @@ static void s390_ipl_reset(DeviceState *dev)
if (!ipl->kernel) {
/* booting firmware, tell what device to boot from */
DeviceState *dev_st = get_boot_device(0);
- VirtioCcwDevice *ccw_dev = (VirtioCcwDevice *) object_dynamic_cast(
- OBJECT(&(dev_st->parent_obj)), "virtio-blk-ccw");
-
- if (ccw_dev) {
- env->regs[7] = ccw_dev->sch->cssid << 24 |
- ccw_dev->sch->ssid << 16 |
- ccw_dev->sch->devno;
+ if (dev_st) {
+ VirtioCcwDevice *ccw_dev = (VirtioCcwDevice *) object_dynamic_cast(
+ OBJECT((dev_st->parent_obj.parent)), "virtio-blk-ccw");
+
+ if (ccw_dev) {
+ env->regs[7] = ccw_dev->sch->cssid << 24 |
+ ccw_dev->sch->ssid << 16 |
+ ccw_dev->sch->devno;
+ }
} else {
env->regs[7] = -1;
}
--
1.8.1.4
next prev parent reply other threads:[~2013-06-17 12:29 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-17 12:29 [Qemu-devel] [PATCH 0/2] ipl related fixes Christian Borntraeger
2013-06-17 12:29 ` Christian Borntraeger [this message]
2013-06-17 21:54 ` [Qemu-devel] [PATCH 1/2] s390/ipl: Fix boot order Andreas Färber
2013-06-18 9:22 ` Christian Borntraeger
2013-06-18 12:31 ` [Qemu-devel] [PATCH v3] " Christian Borntraeger
2013-06-18 12:36 ` Andreas Färber
2013-06-24 12:57 ` Alexander Graf
2013-06-17 12:29 ` [Qemu-devel] [PATCH 2/2] s390/IPL: Allow boot from other ssid than 0 Christian Borntraeger
2013-06-24 12:57 ` Alexander Graf
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=1371472182-10074-2-git-send-email-borntraeger@de.ibm.com \
--to=borntraeger@de.ibm.com \
--cc=afaerber@suse.de \
--cc=agraf@suse.de \
--cc=dingel@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@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).