From: poza@codeaurora.org
To: Bjorn Helgaas <bhelgaas@google.com>,
Philippe Ombredanne <pombredanne@nexb.com>,
Thomas Gleixner <tglx@linutronix.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Kate Stewart <kstewart@linuxfoundation.org>,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org,
Dongdong Liu <liudongdong3@huawei.com>,
Keith Busch <keith.busch@intel.com>, Wei Zhang <wzhang@fb.com>,
Sinan Kaya <okaya@codeaurora.org>,
Timur Tabi <timur@codeaurora.org>
Subject: Re: [PATCH v7 0/7] Address error and recovery for AER and DPC
Date: Tue, 20 Feb 2018 10:27:02 +0530 [thread overview]
Message-ID: <b667e39f9d16a90ff8745f90010871da@codeaurora.org> (raw)
In-Reply-To: <1516430119-3825-1-git-send-email-poza@codeaurora.org>
On 2018-01-20 12:05, Oza Pawandeep wrote:
> This patch set brings in error handling support for DPC
>
> The current implementation of AER and error message broadcasting to the
> EP driver is tightly coupled and limited to AER service driver.
> It is important to factor out broadcasting and other link handling
> callbacks. So that not only when AER gets triggered, but also when DPC
> get
> triggered (for e.g. ERR_FATAL), callbacks are handled appropriately.
>
> DPC should enumerate the devices after recovering the link, which is
> achieved by implementing error_resume callback.
>
> Changes since v6:
> Sinan's and Stefan's comments implemented.
> > reordered patch 6 and 7
> > cleaned up
> Changes since v5:
> Sinan's and Keith's comments incorporated.
> > made separate patch for mutex
> > unified error repotting codes into driver/pci/pci.h
> > got rid of wait link active/inactive and
> made generic function in driver/pci/pci.c
> Changes since v4:
> Bjorn's comments incorporated.
> > Renamed only do_recovery.
> > moved the things more locally to drivers/pci/pci.h
> Changes since v3:
> Bjorn's comments incorporated.
> > Made separate patch renaming generic pci_err.c
> > Introduce pci_err.h to contain all the error types and
> recovery
> > removed all the dependencies on pci.h
> Changes since v2:
> Based on feedback from Keith:
> "
> When DPC is triggered due to receipt of an uncorrectable error
> Message,
> the Requester ID from the Message is recorded in the DPC Error
> Source ID register and that Message is discarded and not forwarded
> Upstream.
> "
> Removed the patch where AER checks if DPC service is active
> Changes since v1:
> Kbuild errors fixed:
> > pci_find_dpc_dev made static
> > ras_event.h updated
> > pci_find_aer_service call with CONFIG check
> > pci_find_dpc_service call with CONFIG check
>
> Oza Pawandeep (7):
> PCI/AER: Rename error recovery to generic pci naming
> PCI/AER: factor out error reporting from AER
> PCI/ERR: add mutex to synchronize recovery
> PCI/DPC: Unify and plumb error handling into DPC
> PCI/AER: Unify aer error defines at single space
> PCI/DPC: Enumerate the devices after DPC trigger event
> PCI: Unify wait for link active into generic pci
>
> drivers/acpi/apei/ghes.c | 1 +
> drivers/pci/hotplug/pciehp_hpc.c | 21 +-
> drivers/pci/pci.c | 39 +++-
> drivers/pci/pci.h | 11 +
> drivers/pci/pcie/Makefile | 2 +-
> drivers/pci/pcie/aer/aerdrv.h | 30 ---
> drivers/pci/pcie/aer/aerdrv_core.c | 293
> +-------------------------
> drivers/pci/pcie/aer/aerdrv_errprint.c | 1 +
> drivers/pci/pcie/pcie-dpc.c | 115 ++++++++++-
> drivers/pci/pcie/pcie-err.c | 366
> +++++++++++++++++++++++++++++++++
> drivers/pci/pcie/portdrv.h | 2 +
> include/linux/aer.h | 4 -
> include/linux/pci.h | 1 +
> 13 files changed, 534 insertions(+), 352 deletions(-)
> create mode 100644 drivers/pci/pcie/pcie-err.c
Hi Bjorn,
I will rebase this patch series on pci and post it again.
on
https://kernel.googlesource.com/pub/scm/linux/kernel/git/helgaas/pci
Regards,
Oza.
prev parent reply other threads:[~2018-02-20 4:57 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-20 6:35 [PATCH v7 0/7] Address error and recovery for AER and DPC Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 1/7] PCI/AER: Rename error recovery to generic pci naming Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 2/7] PCI/AER: factor out error reporting from AER Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 3/7] PCI/ERR: add mutex to synchronize recovery Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 4/7] PCI/DPC: Unify and plumb error handling into DPC Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 5/7] PCI/AER: Unify aer error defines at single space Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 6/7] PCI: Unify wait for link active into generic pci Oza Pawandeep
2018-01-20 6:35 ` [PATCH v7 7/7] PCI/DPC: Enumerate the devices after DPC trigger event Oza Pawandeep
2018-02-20 4:57 ` poza [this message]
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=b667e39f9d16a90ff8745f90010871da@codeaurora.org \
--to=poza@codeaurora.org \
--cc=bhelgaas@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=keith.busch@intel.com \
--cc=kstewart@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=liudongdong3@huawei.com \
--cc=okaya@codeaurora.org \
--cc=pombredanne@nexb.com \
--cc=tglx@linutronix.de \
--cc=timur@codeaurora.org \
--cc=wzhang@fb.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).