[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v6 03/37] ppc/xive: introduce the XiveNotifier i
From: |
David Gibson |
Subject: |
Re: [Qemu-devel] [PATCH v6 03/37] ppc/xive: introduce the XiveNotifier interface |
Date: |
Fri, 7 Dec 2018 13:07:35 +1100 |
User-agent: |
Mutt/1.10.1 (2018-07-13) |
On Thu, Dec 06, 2018 at 07:17:47AM +0100, Cédric Le Goater wrote:
> On 12/6/18 4:25 AM, David Gibson wrote:
> > On Thu, Dec 06, 2018 at 12:22:17AM +0100, Cédric Le Goater wrote:
> >> The XiveNotifier offers a simple interface, between the XiveSource
> >> object and the main interrupt controller of the machine. It will
> >> forward event notifications to the XIVE Interrupt Virtualization
> >> Routing Engine (IVRE).
> >>
> >> Signed-off-by: Cédric Le Goater <address@hidden>
> >> ---
> >> include/hw/ppc/xive.h | 23 +++++++++++++++++++++++
> >> hw/intc/xive.c | 25 +++++++++++++++++++++++++
> >> 2 files changed, 48 insertions(+)
> >>
> >> diff --git a/include/hw/ppc/xive.h b/include/hw/ppc/xive.h
> >> index 7cebc32eba4c..6770cffec67d 100644
> >> --- a/include/hw/ppc/xive.h
> >> +++ b/include/hw/ppc/xive.h
> >> @@ -142,6 +142,27 @@
> >>
> >> #include "hw/qdev-core.h"
> >>
> >> +/*
> >> + * XIVE Fabric (Interface between Source and Router)
> >> + */
> >> +
> >> +typedef struct XiveNotifier {
> >> + Object parent;
> >> +} XiveNotifier;
> >> +
> >> +#define TYPE_XIVE_NOTIFIER "xive-fabric"
> >
> > I'm applying this, but changing the string here from "xive-fabric" to
> > "xive-notifier".
>
> Ah yes. My sed command missed that.
So, I've now applied patches 1-5. I think we've agreed to a change in
patch 6 which will require tweaks to a bunch further down the series,
so I think the rest will need a v7.
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
[Qemu-devel] [PATCH v6 01/37] ppc/xive: introduce a XIVE interrupt source model, Cédric Le Goater, 2018/12/05
[Qemu-devel] [PATCH v6 04/37] ppc/xive: introduce the XiveRouter model, Cédric Le Goater, 2018/12/05
[Qemu-devel] [PATCH v6 05/37] ppc/xive: introduce the XIVE Event Notification Descriptors, Cédric Le Goater, 2018/12/05