It appears to be very common that people complain about kernel log (and irq) flooding because of reported corrected errors by AER. An usual reply/solution is to completely disable aer with 'noaer' pci parameter. This is a big hammer tip since it also prevents reporting of 'real' non corrected PCI errors, that need to be handled by the kernel. A PCI correctable error is an error corrected at hardware level by the PCI protocol (e.g. with retry mechanism), the OS can then totally live without being notified about that hardware event. A simple change would then consist in not enabling correctable error reporting at all, but it can remain useful in some cases, such as for determining health of the PCI link. This patch changes the default AER mask to not enable correctable error reporting by default, and introduce a new pci parameter, 'aerfull' that can be used to re-enable all error reports, including correctable ones. Note: Alternatively, if changing the legacy behavior is not desirable, that can be done the other way, with a 'noaer_correctable' parameter to only disable correctable error reporting. Signed-off-by: Loic Poulain <loic.poulain@xxxxxxxxxx> --- drivers/pci/pci.c | 2 ++ drivers/pci/pci.h | 2 ++ drivers/pci/pcie/aer.c | 12 +++++++++++- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 6d4d5a2..c67ec709 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -6498,6 +6498,8 @@ static int __init pci_setup(char *str) pcie_ats_disabled = true; } else if (!strcmp(str, "noaer")) { pci_no_aer(); + } else if (!strcmp(str, "aerfull")) { + pci_aer_full(); } else if (!strcmp(str, "earlydump")) { pci_early_dump = true; } else if (!strncmp(str, "realloc=", 8)) { diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h index f86cae9..36306a1 100644 --- a/drivers/pci/pci.h +++ b/drivers/pci/pci.h @@ -662,6 +662,7 @@ static inline int devm_of_pci_bridge_init(struct device *dev, struct pci_host_br #ifdef CONFIG_PCIEAER void pci_no_aer(void); +void pci_aer_full(void); void pci_aer_init(struct pci_dev *dev); void pci_aer_exit(struct pci_dev *dev); extern const struct attribute_group aer_stats_attr_group; @@ -670,6 +671,7 @@ int pci_aer_clear_status(struct pci_dev *dev); int pci_aer_raw_clear_status(struct pci_dev *dev); #else static inline void pci_no_aer(void) { } +static inline void pci_aer_full(void) { } static inline void pci_aer_init(struct pci_dev *d) { } static inline void pci_aer_exit(struct pci_dev *d) { } static inline void pci_aer_clear_fatal_status(struct pci_dev *dev) { } diff --git a/drivers/pci/pcie/aer.c b/drivers/pci/pcie/aer.c index 65dff5f..e0ec7047 100644 --- a/drivers/pci/pcie/aer.c +++ b/drivers/pci/pcie/aer.c @@ -102,6 +102,7 @@ struct aer_stats { #define ERR_UNCOR_ID(d) (d >> 16) static int pcie_aer_disable; +static int pcie_aer_full; static pci_ers_result_t aer_root_reset(struct pci_dev *dev); void pci_no_aer(void) @@ -109,6 +110,11 @@ void pci_no_aer(void) pcie_aer_disable = 1; } +void pci_aer_full(void) +{ + pcie_aer_full = 1; +} + bool pci_aer_available(void) { return !pcie_aer_disable && pci_msi_enabled(); @@ -224,12 +230,16 @@ int pcie_aer_is_native(struct pci_dev *dev) int pci_enable_pcie_error_reporting(struct pci_dev *dev) { + u16 flags = PCI_EXP_AER_FLAGS; int rc; if (!pcie_aer_is_native(dev)) return -EIO; - rc = pcie_capability_set_word(dev, PCI_EXP_DEVCTL, PCI_EXP_AER_FLAGS); + if (!pcie_aer_full) + flags &= ~PCI_EXP_DEVCTL_CERE; + + rc = pcie_capability_set_word(dev, PCI_EXP_DEVCTL, flags); return pcibios_err_to_errno(rc); } EXPORT_SYMBOL_GPL(pci_enable_pcie_error_reporting); -- 2.7.4