qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cao jin <caoj.fnst@cn.fujitsu.com>
To: qemu-devel@nongnu.org
Cc: chen.fan.fnst@cn.fujitsu.com, alex.williamson@redhat.com, mst@redhat.com
Subject: [Qemu-devel] [v15 00/15] vfio-pci: pass the aer error to guest
Date: Tue, 5 Jan 2016 09:20:41 +0800	[thread overview]
Message-ID: <cover.1451901804.git.chen.fan.fnst@cn.fujitsu.com> (raw)

From: Chen Fan <chen.fan.fnst@cn.fujitsu.com>

For now, for vfio pci passthough devices when qemu receives
an error from host aer report, currentlly just terminate the guest,
but usually user want to know what error occurred but stopping the
guest, so this patches add aer capability support for vfio device,
and pass the error to guest, and have guest driver to recover
from the error.

v14-v15:
   1. add device hot reset callback
   2. add bus_in_reset for vfio device to avoid multi do host bus reset

v13-v14:
   1. for multifunction device, requiring all functions enable AER.(9/13)
   2. due to all affected functions receive error signal, ignore no
      error occurred function. (12/13)

v12-v13:
   1. since support multifuncion hotplug, here add callback to enable aer.
   2. add pci device pre+post reset for aer host reset.

Chen Fan (15):
  vfio: extract vfio_get_hot_reset_info as a single function
  vfio: squeeze out vfio_pci_do_hot_reset for support bus reset
  pcie: modify the capability size assert
  vfio: make the 4 bytes aligned for capability size
  vfio: add pcie extanded capability support
  aer: impove pcie_aer_init to support vfio device
  vfio: add aer support for vfio device
  vfio: add check host bus reset is support or not
  add check reset mechanism when hotplug vfio device
  pci: Introduce device hot reset
  vfio: add hot reset callback
  vfio: add bus in reset flag
  pcie_aer: expose pcie_aer_msg() interface
  vfio-pci: pass the aer error to guest
  vfio: add 'aer' property to expose aercap

 hw/core/qdev.c                     |  24 ++
 hw/pci-bridge/ioh3420.c            |   2 +-
 hw/pci-bridge/xio3130_downstream.c |   2 +-
 hw/pci-bridge/xio3130_upstream.c   |   2 +-
 hw/pci/pci.c                       |  29 ++
 hw/pci/pci_bridge.c                |   2 +-
 hw/pci/pcie.c                      |   2 +-
 hw/pci/pcie_aer.c                  |   6 +-
 hw/vfio/pci.c                      | 622 +++++++++++++++++++++++++++++++++----
 hw/vfio/pci.h                      |   7 +
 include/hw/pci/pci_bus.h           |   5 +
 include/hw/pci/pcie_aer.h          |   3 +-
 include/hw/qdev-core.h             |   3 +
 include/hw/vfio/vfio-common.h      |   1 +
 14 files changed, 637 insertions(+), 73 deletions(-)

-- 
1.9.3

             reply	other threads:[~2016-01-05  1:18 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-05  1:20 Cao jin [this message]
2016-01-05  1:20 ` [Qemu-devel] [v15 01/15] vfio: extract vfio_get_hot_reset_info as a single function Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 02/15] vfio: squeeze out vfio_pci_do_hot_reset for support bus reset Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 03/15] pcie: modify the capability size assert Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 04/15] vfio: make the 4 bytes aligned for capability size Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 05/15] vfio: add pcie extanded capability support Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 06/15] aer: impove pcie_aer_init to support vfio device Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 07/15] vfio: add aer support for " Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 08/15] vfio: add check host bus reset is support or not Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 09/15] add check reset mechanism when hotplug vfio device Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 10/15] pci: Introduce device hot reset Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 11/15] vfio: add hot reset callback Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 12/15] vfio: add bus in reset flag Cao jin
2016-01-05 19:58   ` Alex Williamson
2016-01-06  2:13     ` Chen Fan
2016-01-06 16:44       ` Alex Williamson
2016-01-12  1:13         ` Chen Fan
2016-01-05  1:20 ` [Qemu-devel] [v15 13/15] pcie_aer: expose pcie_aer_msg() interface Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 14/15] vfio-pci: pass the aer error to guest Cao jin
2016-01-05  1:20 ` [Qemu-devel] [v15 15/15] vfio: add 'aer' property to expose aercap Cao jin

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=cover.1451901804.git.chen.fan.fnst@cn.fujitsu.com \
    --to=caoj.fnst@cn.fujitsu.com \
    --cc=alex.williamson@redhat.com \
    --cc=chen.fan.fnst@cn.fujitsu.com \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).