/* * Copyright (C) 2006 Intel Corp. * Tom Long Nguyen (tom.l.nguyen@intel.com) * Zhang Yanmin (yanmin.zhang@intel.com) */ #ifndef _AER_H_ #define _AER_H_ #include <linux/errno.h> #include <linux/types.h> #define AER_NONFATAL 0 #define AER_FATAL 1 #define AER_CORRECTABLE 2 struct pci_dev; struct aer_header_log_regs { unsigned int dw0; unsigned int dw1; unsigned int dw2; unsigned int dw3; }; struct aer_capability_regs { u32 header; u32 uncor_status; u32 uncor_mask; u32 uncor_severity; u32 cor_status; u32 cor_mask; u32 cap_control; struct aer_header_log_regs header_log; u32 root_command; u32 root_status; u16 cor_err_source; u16 uncor_err_source; }; #if defined(CONFIG_PCIEAER) /* pci-e port driver needs this function to enable aer */ int pci_enable_pcie_error_reporting(struct pci_dev *dev); int pci_disable_pcie_error_reporting(struct pci_dev *dev); int pci_cleanup_aer_uncorrect_error_status(struct pci_dev *dev); int pci_cleanup_aer_error_status_regs(struct pci_dev *dev); #else
static inline int pci_enable_pcie_error_reporting(struct pci_dev *dev) { return -EINVAL; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Randy Dunlap | 12 | 75.00% | 1 | 50.00% |
Yanmin Zhang | 4 | 25.00% | 1 | 50.00% |
Total | 16 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Randy Dunlap | 12 | 75.00% | 1 | 50.00% |
Yanmin Zhang | 4 | 25.00% | 1 | 50.00% |
Total | 16 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Randy Dunlap | 6 | 37.50% | 1 | 33.33% |
Taku Izumi | 6 | 37.50% | 1 | 33.33% |
Yanmin Zhang | 4 | 25.00% | 1 | 33.33% |
Total | 16 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Taku Izumi | 10 | 62.50% | 1 | 50.00% |
Randy Dunlap | 6 | 37.50% | 1 | 50.00% |
Total | 16 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Huang Ying | 99 | 39.29% | 2 | 16.67% |
Yanmin Zhang | 60 | 23.81% | 1 | 8.33% |
Randy Dunlap | 36 | 14.29% | 1 | 8.33% |
Taku Izumi | 25 | 9.92% | 1 | 8.33% |
Betty Dall | 12 | 4.76% | 1 | 8.33% |
Lance Ortiz | 10 | 3.97% | 2 | 16.67% |
Sudip Mukherjee | 3 | 1.19% | 1 | 8.33% |
Mike Qiu | 3 | 1.19% | 1 | 8.33% |
Thierry Reding | 3 | 1.19% | 1 | 8.33% |
Tyler Baicar | 1 | 0.40% | 1 | 8.33% |
Total | 252 | 100.00% | 12 | 100.00% |