From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZwYol-00016G-Ef for qemu-devel@nongnu.org; Wed, 11 Nov 2015 12:08:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZwYh8-0003CF-CX for qemu-devel@nongnu.org; Wed, 11 Nov 2015 11:59:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:48333) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZwYh8-0003C7-6c for qemu-devel@nongnu.org; Wed, 11 Nov 2015 11:56:26 -0500 Date: Wed, 11 Nov 2015 18:56:22 +0200 From: "Michael S. Tsirkin" Message-ID: <20151111185617-mutt-send-email-mst@redhat.com> References: <2df4af01f8147db78db3992cffa950fd234aaa5f.1447231392.git.chen.fan.fnst@cn.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2df4af01f8147db78db3992cffa950fd234aaa5f.1447231392.git.chen.fan.fnst@cn.fujitsu.com> Subject: Re: [Qemu-devel] [PATCH v13 11/13] pcie_aer: expose pcie_aer_msg() interface List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cao jin Cc: Chen Fan , alex.williamson@redhat.com, qemu-devel@nongnu.org On Wed, Nov 11, 2015 at 06:34:29PM +0800, Cao jin wrote: > From: Chen Fan > > For vfio device, we need to propagate the aer error to > Guest OS. we use the pcie_aer_msg() to send aer error > to guest. > > Signed-off-by: Chen Fan Reviewed-by: Michael S. Tsirkin > --- > hw/pci/pcie_aer.c | 2 +- > include/hw/pci/pcie_aer.h | 1 + > 2 files changed, 2 insertions(+), 1 deletion(-) > > diff --git a/hw/pci/pcie_aer.c b/hw/pci/pcie_aer.c > index 45f351b..fbbd7d2 100644 > --- a/hw/pci/pcie_aer.c > +++ b/hw/pci/pcie_aer.c > @@ -370,7 +370,7 @@ static void pcie_aer_msg_root_port(PCIDevice *dev, const PCIEAERMsg *msg) > * > * Walk up the bus tree from the device, propagate the error message. > */ > -static void pcie_aer_msg(PCIDevice *dev, const PCIEAERMsg *msg) > +void pcie_aer_msg(PCIDevice *dev, const PCIEAERMsg *msg) > { > uint8_t type; > > diff --git a/include/hw/pci/pcie_aer.h b/include/hw/pci/pcie_aer.h > index 156acb0..c2ee4e2 100644 > --- a/include/hw/pci/pcie_aer.h > +++ b/include/hw/pci/pcie_aer.h > @@ -102,5 +102,6 @@ void pcie_aer_root_write_config(PCIDevice *dev, > > /* error injection */ > int pcie_aer_inject_error(PCIDevice *dev, const PCIEAERErr *err); > +void pcie_aer_msg(PCIDevice *dev, const PCIEAERMsg *msg); > > #endif /* QEMU_PCIE_AER_H */ > -- > 1.9.3