From: Cornelia Huck <cohuck@redhat.com>
To: Viktor Mihajlovski <mihajlov@linux.ibm.com>
Cc: Thomas Huth <thuth@redhat.com>,
Janosch Frank <frankja@linux.ibm.com>,
David Hildenbrand <david@redhat.com>,
qemu-devel@nongnu.org, Halil Pasic <pasic@linux.ibm.com>,
Christian Borntraeger <borntraeger@de.ibm.com>,
qemu-s390x@nongnu.org, Marc Hartmayer <mhartmay@linux.ibm.com>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [PATCH 1/1] s390/ipl: sync back loadparm
Date: Tue, 25 Feb 2020 15:47:50 +0100 [thread overview]
Message-ID: <20200225154750.6bee1c52.cohuck@redhat.com> (raw)
In-Reply-To: <853387e3-4425-731b-bb09-a7210ea6b299@linux.ibm.com>
On Tue, 25 Feb 2020 15:35:47 +0100
Viktor Mihajlovski <mihajlov@linux.ibm.com> wrote:
> On 2/25/20 12:56 PM, Halil Pasic wrote:
> > On Tue, 25 Feb 2020 10:39:40 +0100
> > David Hildenbrand <david@redhat.com> wrote:
> >
> >> On 24.02.20 16:02, Halil Pasic wrote:
> >>> We expose loadparm as a r/w machine property, but if loadparm is set by
> >>> the guest via DIAG 308, we don't update the property. Having a
> >>> disconnect between the guest view and the QEMU property is not nice in
> >>> itself, but things get even worse for SCSI, where under certain
> >>> circumstances (see 789b5a401b "s390: Ensure IPL from SCSI works as
> >>> expected" for details) we call s390_gen_initial_iplb() on resets
> >>> effectively overwriting the guest/user supplied loadparm with the stale
> >>> value.
> >>>
> >>> Signed-off-by: Halil Pasic <pasic@linux.ibm.com>
> >>> Fixes: 7104bae9de "hw/s390x: provide loadparm property for the machine"
Please use the format
Fixes: <hash> ("subject")
> >>> Reported-by: Marc Hartmayer <mhartmay@linux.ibm.com>
> >>> Reviewed-by: Janosch Frank <frankja@linux.ibm.com>
> >>> Reviewed-by: Viktor Mihajlovski <mihajlov@linux.ibm.com>
> >>> Tested-by: Marc Hartmayer <mhartmay@linux.ibm.com>
> >>> ---
> >>> hw/s390x/ipl.c | 21 +++++++++++++++++++++
> >>> 1 file changed, 21 insertions(+)
> >>>
> >>> diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c
> [...]
> >>> +
> >>> + /* Sync loadparm */
> >>> + if (iplb->flags & DIAG308_FLAGS_LP_VALID) {
> >>> + char ascii_loadparm[8];
> >>> + uint8_t *ebcdic_loadparm = iplb->loadparm;
> >>> + int i;
> >>> +
> >>> + for (i = 0; i < 8 && ebcdic_loadparm[i]; i++) {
> >>> + ascii_loadparm[i] = ebcdic2ascii[(uint8_t) ebcdic_loadparm[i]];
> >>> + }
> >>> + ascii_loadparm[i] = 0;
> >>> + object_property_set_str(mo, ascii_loadparm, "loadparm", NULL);
> >>> + } else {
> >>> + object_property_set_str(mo, "", "loadparm", NULL);
> >>> + }
> >>
> >> &error_abort instead of NULL, we certainly want to know if this would
> >> ever surprisingly fail.
> >
> > IMHO this is a typical assert() situation where one would like to have
> > a fast and obvious failure when testing, but not in production.
> >
> > AFAIU the guest can trigger this code at any time, and crashing the
> > whole (production) system seems a bit heavy handed to me. The setter
> > should only fail if something is buggy.
> >
> > But if the majority says &error_abort I can certainly do. Other opinions?
> >
> We might consider to return 0x0402 (invalid parameter) from the diag308
> "set", which is less drastic and would allow the OS to do whatever it
> finds appropriate to deal with the failure. Not that Linux would care
> about that today :-).
I'm not sure if we could actually get there in any other way than via a
QEMU coding error... not sure if I would trust QEMU to inject a return
code if it already had a code logic fail right before that :)
next prev parent reply other threads:[~2020-02-25 14:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-24 15:02 [PATCH 1/1] s390/ipl: sync back loadparm Halil Pasic
2020-02-25 9:39 ` David Hildenbrand
2020-02-25 11:56 ` Halil Pasic
2020-02-25 14:35 ` Viktor Mihajlovski
2020-02-25 14:47 ` Cornelia Huck [this message]
2020-03-05 12:44 ` Christian Borntraeger
2020-03-05 14:11 ` Halil Pasic
2020-03-05 14:25 ` Christian Borntraeger
2020-03-05 16:21 ` Christian Borntraeger
2020-03-06 13:57 ` Halil Pasic
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=20200225154750.6bee1c52.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=david@redhat.com \
--cc=frankja@linux.ibm.com \
--cc=mhartmay@linux.ibm.com \
--cc=mihajlov@linux.ibm.com \
--cc=pasic@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=rth@twiddle.net \
--cc=thuth@redhat.com \
/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.