From: Cornelia Huck <cohuck@redhat.com>
To: Collin Walling <walling@linux.ibm.com>
Cc: david@redhat.com, mst@redhat.com, qemu-devel@nongnu.org,
pasic@linux.ibm.com, borntraeger@de.ibm.com,
qemu-s390x@nongnu.org, pbonzini@redhat.com, rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH v5 2/2] s390: diagnose 318 info reset and migration support
Date: Tue, 2 Jul 2019 13:05:14 +0200 [thread overview]
Message-ID: <20190702130514.60b67dbf.cohuck@redhat.com> (raw)
In-Reply-To: <7a47fc60-e490-3c95-66f5-3e16a2ad9da7@linux.ibm.com>
On Wed, 26 Jun 2019 10:07:39 -0400
Collin Walling <walling@linux.ibm.com> wrote:
> On 6/26/19 8:33 AM, Cornelia Huck wrote:
> > On Tue, 25 Jun 2019 11:17:09 -0400
> > Collin Walling <walling@linux.ibm.com> wrote:
> >
> >> DIAGNOSE 0x318 (diag318) is a privileged s390x instruction that must
> >> be intercepted by SIE and handled via KVM. Let's introduce some
> >> functions to communicate between QEMU and KVM via ioctls. These
> >> will be used to get/set the diag318 information.
> >>
> >> The availability of this instruction is determined by byte 134, bit 0
> >> of the Read Info block. This coincidentally expands into the space used
> >> for CPU entries, which means VMs running with the diag318 capability
> >> will have a reduced maximum CPU count. Let's reduce the maximum CPU
> >> count from 248 to 247.
> >>
> >> In order to simplify the migration and system reset requirements of
> >> the diag318 data, let's introduce it as a device class and include
> >> a VMStateDescription.
> >>
> >> Diag318 is set to 0 during modified clear and load normal resets.
> >>
> >> Signed-off-by: Collin Walling <walling@linux.ibm.com>
> >> ---
> >> hw/s390x/Makefile.objs | 1 +
> >> hw/s390x/diag318.c | 80 +++++++++++++++++++++++++++++++++++++++++
> >> hw/s390x/diag318.h | 38 ++++++++++++++++++++
> >> hw/s390x/s390-virtio-ccw.c | 17 +++++++++
> >> hw/s390x/sclp.c | 3 ++
> >> include/hw/s390x/sclp.h | 2 ++
> >> target/s390x/cpu.h | 8 ++++-
> >> target/s390x/cpu_features.c | 3 ++
> >> target/s390x/cpu_features.h | 1 +
> >> target/s390x/cpu_features_def.h | 3 ++
> >> target/s390x/gen-features.c | 1 +
> >> target/s390x/kvm-stub.c | 10 ++++++
> >> target/s390x/kvm.c | 29 +++++++++++++++
> >> target/s390x/kvm_s390x.h | 2 ++
> >> 14 files changed, 197 insertions(+), 1 deletion(-)
> >> create mode 100644 hw/s390x/diag318.c
> >> create mode 100644 hw/s390x/diag318.h
> >
> > (...)
> >
> >> diff --git a/hw/s390x/diag318.c b/hw/s390x/diag318.c
> >> new file mode 100644
> >> index 0000000..0eb80fe
> >> --- /dev/null
> >> +++ b/hw/s390x/diag318.c
> >> @@ -0,0 +1,80 @@
> >> +/*
> >> + * DIAGNOSE 0x318 functions for reset and migration
> >> + *
> >> + * Copyright IBM, Corp. 2019
> >> + *
> >> + * Authors:
> >> + * Collin Walling <walling@linux.ibm.com>
> >> + *
> >> + * This work is licensed under the terms of the GNU GPL, version 2 or (at your
> >> + * option) any later version. See the COPYING file in the top-level directory.
> >> + */
> >> +
> >> +#include "hw/s390x/diag318.h"
> >> +#include "qapi/error.h"
> >> +#include "kvm_s390x.h"
> >> +#include "sysemu/kvm.h"
> >> +
> >> +static int diag318_post_load(void *opaque, int version_id)
> >> +{
> >> + DIAG318State *d = opaque;
> >> +
> >> + kvm_s390_set_diag318_info(d->info);
> >
> > Shouldn't we at least moan if something goes wrong here?
> >
>
> What are some things that might go wrong at this point? We
> should only call this if the diag318 feature is enabled. If
> we try to toggle that feature on a machine that cannot support
> it, the guest will fail to start, stating (paraphrased) "some
> features are not available in the configuration: diag318"
>
> Is there some sort of issue that could arise from QEMU that I'm not
> considering?
The function might return an error; so I suspected that something may
possibly go wrong... checking seems like good practice in general.
>
> >> + return 0;
> >> +}
> >> +
> >> +static int diag318_pre_save(void *opaque)
> >> +{
> >> + DIAG318State *d = opaque;
> >> +
> >> + kvm_s390_get_diag318_info(&d->info);
> >> + return 0;
> >> +}
> >> +
> >> +static bool diag318_needed(void *opaque)
> >> +{
> >> + return s390_has_feat(S390_FEAT_DIAG318);
> >
> > What happens if we emulate diag 318 in tcg and set this feature bit? We
> > probably don't want to call kvm_ functions in that case.
> >
>
> I have not tested on tcg.
Well, it is not implemented right now :) My point is that we should not
tie this to *kvm* functions, but rather more generic functions.
>
> >> +}
> >> +
> >> +const VMStateDescription vmstate_diag318 = {
> >> + .name = "vmstate_diag318",
> >> + .post_load = diag318_post_load,
> >> + .pre_save = diag318_pre_save,
> >> + .version_id = 1,
> >> + .minimum_version_id = 1,
> >> + .needed = diag318_needed,
> >> + .fields = (VMStateField[]) {
> >> + VMSTATE_UINT64(info, DIAG318State),
> >> + VMSTATE_END_OF_LIST()
> >> + }
> >> +};
> >> +
> >> +static void s390_diag318_reset(DeviceState *dev)
> >> +{
> >> + kvm_s390_set_diag318_info(0);
> >
> > Same here; we probably need a s390_set_diag318_info() function that
> > either calls the kvm_ function or resets some internal state.
> >
>
> Hmm okay. I recall doing this for the TOD-clock stuff way-back. I'll
> include these functions next round.
Just a simple wrapper will suffice; we can then add any possible tcg
stuff whenever we get around to it (or never ;)
>
> >> +}
> >> +
> >> +static void s390_diag318_class_init(ObjectClass *klass, void *data)
> >> +{
> >> + DeviceClass *dc = DEVICE_CLASS(klass);
> >> +
> >> + dc->reset = s390_diag318_reset;
> >> + dc->vmsd = &vmstate_diag318;
> >> + dc->hotpluggable = false;
> >> + /* Reason: Set automatically during IPL */
> >
> > "Created automatically during machine instantiation" ?
> >
>
> I like it.
>
> >> + dc->user_creatable = false;
> >> +}
> >> +
> >> +static const TypeInfo s390_diag318_info = {
> >> + .class_init = s390_diag318_class_init,
> >> + .parent = TYPE_DEVICE,
> >> + .name = TYPE_S390_DIAG318,
> >> + .instance_size = sizeof(DIAG318State),
> >> +};
> >> +
> >> +static void s390_diag318_register_types(void)
> >> +{
> >> + type_register_static(&s390_diag318_info);
> >> +}
> >> +
> >> +type_init(s390_diag318_register_types)
> >
> > (..)
> >
> >> diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c
> >> index 87b2039..54230c7 100644
> >> --- a/hw/s390x/s390-virtio-ccw.c
> >> +++ b/hw/s390x/s390-virtio-ccw.c
> >> @@ -38,6 +38,7 @@
> >> #include "cpu_models.h"
> >> #include "hw/nmi.h"
> >> #include "hw/s390x/tod.h"
> >> +#include "hw/s390x/diag318.h"
> >>
> >> S390CPU *s390_cpu_addr2state(uint16_t cpu_addr)
> >> {
> >> @@ -94,6 +95,7 @@ static const char *const reset_dev_types[] = {
> >> "s390-sclp-event-facility",
> >> "s390-flic",
> >> "diag288",
> >> + TYPE_S390_DIAG318,
> >
> > This looks a bit odd, although it is not wrong :)
> >
>
> It's cut-off here, but TYPE_VIRTUAL_CSS_BRIDGE is also in the list :)
Hah, better :)
next prev parent reply other threads:[~2019-07-02 11:13 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-25 15:17 [Qemu-devel] [PATCH v5 0/2] Guest Support for DIAGNOSE 0x318 Collin Walling
2019-06-25 15:17 ` [Qemu-devel] [PATCH v5 1/2] s390/kvm: header sync for diag318 Collin Walling
2019-06-26 9:43 ` David Hildenbrand
2019-06-25 15:17 ` [Qemu-devel] [PATCH v5 2/2] s390: diagnose 318 info reset and migration support Collin Walling
2019-06-26 9:12 ` Christian Borntraeger
2019-06-26 12:14 ` Cornelia Huck
2019-06-26 14:22 ` [Qemu-devel] [qemu-s390x] " Collin Walling
2019-06-26 14:30 ` David Hildenbrand
2019-06-27 10:29 ` Christian Borntraeger
2019-06-26 12:33 ` [Qemu-devel] " Cornelia Huck
2019-06-26 14:07 ` Collin Walling
2019-07-02 11:05 ` Cornelia Huck [this message]
2019-06-25 16:34 ` [Qemu-devel] [PATCH v5 0/2] Guest Support for DIAGNOSE 0x318 no-reply
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=20190702130514.60b67dbf.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=david@redhat.com \
--cc=mst@redhat.com \
--cc=pasic@linux.ibm.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=rth@twiddle.net \
--cc=walling@linux.ibm.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 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).