From: Cornelia Huck <cohuck@redhat.com>
To: Pierre Morel <pmorel@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org, agraf@suse.de, borntraeger@de.ibm.com,
zyimin@linux.vnet.ibm.com, pasic@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH v1 3/5] s390x/intc: Emulate Adapter Interrupt Suppression
Date: Mon, 9 Oct 2017 11:08:52 +0200 [thread overview]
Message-ID: <20171009110852.2dcf0c55.cohuck@redhat.com> (raw)
In-Reply-To: <20171009104244.02d60070.cohuck@redhat.com>
On Mon, 9 Oct 2017 10:42:44 +0200
Cornelia Huck <cohuck@redhat.com> wrote:
> On Wed, 4 Oct 2017 15:49:37 +0200
> Pierre Morel <pmorel@linux.vnet.ibm.com> wrote:
>
> > Emulate the Adapter Interrupt Suppression in the KVM FLIC interface when
> > the kernel does not support AIS.
> >
> > When the kernel KVM does not support AIS, we can not support VFIO PCI
> > devices but we still can support emulated devices if we emulate AIS
> > inside QEMU.
> > Let's emulate AIS, allowing to use emulated PCI devices without KVM AIS
> > support.
> >
> > Signed-off-by: Pierre Morel <pmorel@linux.vnet.ibm.com>
> > ---
> > hw/intc/s390_flic.c | 3 +-
> > hw/intc/s390_flic_kvm.c | 76 ++++++++++++++++++++++++++++++++++++++++---------
> > 2 files changed, 64 insertions(+), 15 deletions(-)
> >
> > diff --git a/hw/intc/s390_flic.c b/hw/intc/s390_flic.c
> > index 6eaf178..33a7cde 100644
> > --- a/hw/intc/s390_flic.c
> > +++ b/hw/intc/s390_flic.c
> > @@ -185,8 +185,7 @@ static void s390_flic_common_realize(DeviceState *dev, Error **errp)
> > " (%d > %d)", max_batch, ADAPTER_ROUTES_MAX_GSI);
> > return;
> > }
> > -
> > - fs->ais_supported = s390_has_feat(S390_FEAT_ADAPTER_INT_SUPPRESSION);
> > + fs->ais_supported = false;
> > }
> >
> > static void s390_flic_class_init(ObjectClass *oc, void *data)
> > diff --git a/hw/intc/s390_flic_kvm.c b/hw/intc/s390_flic_kvm.c
> > index 7ead17a..fd1aa22 100644
> > --- a/hw/intc/s390_flic_kvm.c
> > +++ b/hw/intc/s390_flic_kvm.c
> > @@ -33,6 +33,8 @@ typedef struct KVMS390FLICState {
> >
> > uint32_t fd;
> > bool clear_io_supported;
> > + uint8_t simm;
> > + uint8_t nimm;
> > } KVMS390FLICState;
>
> Instead of duplicating this, move simm/nimm into the common flic state?
Also, simm/nimm need to be reset (done for the qemu flic, but not for
the kvm flic). Doing that in common flic code would take care of that
as well.
next prev parent reply other threads:[~2017-10-09 9:09 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-04 13:49 [Qemu-devel] [PATCH v1 0/5][RFC] Refactoring of AIS support Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 1/5] s390x/kvm: Enable AIS from CPU model always Pierre Morel
2017-10-09 9:09 ` Cornelia Huck
2017-10-09 13:58 ` Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 2/5] s390x/css: Use AIS AIRQ injection only if adapter support AIS Pierre Morel
2017-10-09 8:17 ` Cornelia Huck
2017-10-09 13:55 ` Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 3/5] s390x/intc: Emulate Adapter Interrupt Suppression Pierre Morel
2017-10-09 8:42 ` Cornelia Huck
2017-10-09 9:08 ` Cornelia Huck [this message]
2017-10-09 14:05 ` Pierre Morel
2017-10-09 14:03 ` Pierre Morel
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 4/5] s390x/pci: Refuse to realize VFIO-PCI if AIS needed but supported Pierre Morel
2017-10-09 9:06 ` Cornelia Huck
2017-10-09 14:25 ` Pierre Morel
2017-10-09 14:45 ` Alex Williamson
2017-10-09 17:16 ` Pierre Morel
2017-10-10 9:35 ` Cornelia Huck
2017-10-10 16:01 ` Pierre Morel
2017-10-11 12:20 ` Cornelia Huck
2017-10-12 10:12 ` Pierre Morel
2017-10-12 14:48 ` Pierre Morel
2017-10-12 14:54 ` Cornelia Huck
2017-10-04 13:49 ` [Qemu-devel] [PATCH v1 5/5] s390x/intc: AIS is now always migratable Pierre Morel
2017-10-30 8:28 ` [Qemu-devel] [PATCH v1 0/5][RFC] Refactoring of AIS support Christian Borntraeger
2017-10-30 12:42 ` Cornelia Huck
2017-10-30 12:44 ` Christian Borntraeger
2017-10-30 13:44 ` Pierre Morel
2017-10-30 13:48 ` Christian Borntraeger
2017-10-30 14:02 ` Halil Pasic
2017-10-30 16:59 ` Cornelia Huck
2017-10-30 17:08 ` Christian Borntraeger
2017-10-30 17:38 ` Pierre Morel
2017-10-30 18:58 ` Halil Pasic
2017-11-06 8:52 ` Cornelia Huck
2017-11-06 8:54 ` Christian Borntraeger
2017-11-06 10:05 ` Pierre Morel
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=20171009110852.2dcf0c55.cohuck@redhat.com \
--to=cohuck@redhat.com \
--cc=agraf@suse.de \
--cc=borntraeger@de.ibm.com \
--cc=pasic@linux.vnet.ibm.com \
--cc=pmorel@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=zyimin@linux.vnet.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 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.