All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: qemu-stable@nongnu.org, qemu-devel <qemu-devel@nongnu.org>,
	"Dominik Dingel" <dingel@linux.vnet.ibm.com>,
	"Alexander Graf" <agraf@suse.de>,
	"Anthony Liguori" <anthony@codemonkey.ws>,
	"KONRAD Frédéric" <fred.konrad@greensocs.com>
Subject: Re: [Qemu-devel] [PATCH v3] s390/ipl: Fix boot order
Date: Tue, 18 Jun 2013 14:36:45 +0200	[thread overview]
Message-ID: <51C0545D.3070101@suse.de> (raw)
In-Reply-To: <1371558712-43580-1-git-send-email-borntraeger@de.ibm.com>

Am 18.06.2013 14:31, schrieb Christian Borntraeger:
> The latest ipl code adaptions collided with some of the virtio
> refactoring rework. This resulted in always booting the first
> disk. Let's 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
> ---
> Changelog:
> 
> Version 2: Review feedback from Andreas Faerber
> Version 3: use object_dynamic_cast to avoid crashes with !ccw

Reviewed-by: Andreas Färber <afaerber@suse.de>

Thanks a lot,
Andreas

> 
>  hw/s390x/ipl.c | 22 ++++++++++++----------
>  1 file changed, 12 insertions(+), 10 deletions(-)
> 
> diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
> index 0aeb003..d69adb2 100644
> --- a/hw/s390x/ipl.c
> +++ b/hw/s390x/ipl.c
> @@ -154,17 +154,19 @@ static void s390_ipl_reset(DeviceState *dev)
>      env->psw.mask = IPL_PSW_MASK;
>  
>      if (!ipl->kernel) {
> -        /* booting firmware, tell what device to boot from */
> +        /* Tell firmware, if there is a preferred boot device */
> +        env->regs[7] = -1;
>          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;
> -        } else {
> -            env->regs[7] = -1;
> +        if (dev_st) {
> +            VirtioCcwDevice *ccw_dev = (VirtioCcwDevice *) object_dynamic_cast(
> +                OBJECT(qdev_get_parent_bus(dev_st)->parent),
> +                TYPE_VIRTIO_CCW_DEVICE);
> +
> +            if (ccw_dev) {
> +                env->regs[7] = ccw_dev->sch->cssid << 24 |
> +                               ccw_dev->sch->ssid << 16 |
> +                               ccw_dev->sch->devno;
> +            }
>          }
>      }
>  
> 


-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

  reply	other threads:[~2013-06-18 12:36 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 ` [Qemu-devel] [PATCH 1/2] s390/ipl: Fix boot order Christian Borntraeger
2013-06-17 21:54   ` 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 [this message]
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=51C0545D.3070101@suse.de \
    --to=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=anthony@codemonkey.ws \
    --cc=borntraeger@de.ibm.com \
    --cc=dingel@linux.vnet.ibm.com \
    --cc=fred.konrad@greensocs.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.