LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Tyler Baicar <tbaicar@codeaurora.org>
To: Alexandru Gagniuc <mr.nuke.me@gmail.com>,
bhelgaas@google.com, linux-pci@vger.kernel.org
Cc: gregkh@linuxfoundation.org, fred@fredlawl.com,
linux-kernel@vger.kernel.org, alex_gagniuc@dellteam.com,
austin_bolen@dell.com, keith.busch@intel.com
Subject: Re: [PATCH RESEND] PCI/AER: Use a common function to print AER error bits
Date: Thu, 26 Apr 2018 13:27:47 -0400 [thread overview]
Message-ID: <ab79f650-180f-24b4-f3d6-c07d10e5318c@codeaurora.org> (raw)
In-Reply-To: <20180417170943.1767-1-mr.nuke.me@gmail.com>
On 4/17/2018 1:09 PM, Alexandru Gagniuc wrote:
> On errors reported from CPER, cper_print_bits() was used to log the
> AER bits. This resulted in hard-to-understand messages, without a
> prefix. Instead use __aer_print_error() for both native AER and CPER
> to provide a more consistent log format.
>
> Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: Tyler Baicar <tbaicar@codeaurora.org>
Thanks!
> ---
> drivers/pci/pcie/aer/aerdrv_errprint.c | 16 +++++++++-------
> 1 file changed, 9 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/pci/pcie/aer/aerdrv_errprint.c b/drivers/pci/pcie/aer/aerdrv_errprint.c
> index cfc89dd57831..cfae4d52f848 100644
> --- a/drivers/pci/pcie/aer/aerdrv_errprint.c
> +++ b/drivers/pci/pcie/aer/aerdrv_errprint.c
> @@ -216,28 +216,30 @@ EXPORT_SYMBOL_GPL(cper_severity_to_aer);
> void cper_print_aer(struct pci_dev *dev, int aer_severity,
> struct aer_capability_regs *aer)
> {
> - int layer, agent, status_strs_size, tlp_header_valid = 0;
> + int layer, agent, tlp_header_valid = 0;
> u32 status, mask;
> - const char **status_strs;
> + struct aer_err_info info;
>
> if (aer_severity == AER_CORRECTABLE) {
> status = aer->cor_status;
> mask = aer->cor_mask;
> - status_strs = aer_correctable_error_string;
> - status_strs_size = ARRAY_SIZE(aer_correctable_error_string);
> } else {
> status = aer->uncor_status;
> mask = aer->uncor_mask;
> - status_strs = aer_uncorrectable_error_string;
> - status_strs_size = ARRAY_SIZE(aer_uncorrectable_error_string);
> tlp_header_valid = status & AER_LOG_TLP_MASKS;
> }
>
> layer = AER_GET_LAYER_ERROR(aer_severity, status);
> agent = AER_GET_AGENT(aer_severity, status);
>
> + memset(&info, 0, sizeof(info));
> + info.severity = aer_severity;
> + info.status = status;
> + info.mask = mask;
> + info.first_error = 0x1f;
> +
> pci_err(dev, "aer_status: 0x%08x, aer_mask: 0x%08x\n", status, mask);
> - cper_print_bits("", status, status_strs, status_strs_size);
> + __aer_print_error(dev, &info);
> pci_err(dev, "aer_layer=%s, aer_agent=%s\n",
> aer_error_layer[layer], aer_agent_string[agent]);
>
--
Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project.
next prev parent reply other threads:[~2018-04-26 17:27 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-17 17:09 Alexandru Gagniuc
2018-04-26 17:27 ` Tyler Baicar [this message]
2018-04-27 22:43 ` Bjorn Helgaas
2018-04-28 16:46 ` Alex G.
2018-04-28 17:07 ` Alex G.
2018-04-30 17:15 ` Bjorn Helgaas
2018-04-30 17:41 ` Alex G.
2018-05-07 22:06 ` Bjorn Helgaas
2018-04-30 19:52 ` [PATCH v2] " Alexandru Gagniuc
2018-05-07 22:13 ` Bjorn Helgaas
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=ab79f650-180f-24b4-f3d6-c07d10e5318c@codeaurora.org \
--to=tbaicar@codeaurora.org \
--cc=alex_gagniuc@dellteam.com \
--cc=austin_bolen@dell.com \
--cc=bhelgaas@google.com \
--cc=fred@fredlawl.com \
--cc=gregkh@linuxfoundation.org \
--cc=keith.busch@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=mr.nuke.me@gmail.com \
--subject='Re: [PATCH RESEND] PCI/AER: Use a common function to print AER error bits' \
/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
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).