Lines Matching defs:e_src
650 struct aer_err_source *e_src)
657 if (e_src->status & PCI_ERR_ROOT_COR_RCV)
660 if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) {
661 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV)
1118 * @e_src: pointer to an error source
1121 struct aer_err_source *e_src)
1126 pci_rootport_aer_stats_incr(pdev, e_src);
1132 if (e_src->status & PCI_ERR_ROOT_COR_RCV) {
1133 e_info.id = ERR_COR_ID(e_src->id);
1136 if (e_src->status & PCI_ERR_ROOT_MULTI_COR_RCV)
1146 if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) {
1147 e_info.id = ERR_UNCOR_ID(e_src->id);
1149 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV)
1154 if (e_src->status & PCI_ERR_ROOT_MULTI_UNCOR_RCV)
1177 struct aer_err_source e_src;
1182 while (kfifo_get(&rpc->aer_fifo, &e_src))
1183 aer_isr_one_error(rpc, &e_src);
1200 struct aer_err_source e_src = {};
1202 pci_read_config_dword(rp, aer + PCI_ERR_ROOT_STATUS, &e_src.status);
1203 if (!(e_src.status & AER_ERR_STATUS_MASK))
1206 pci_read_config_dword(rp, aer + PCI_ERR_ROOT_ERR_SRC, &e_src.id);
1207 pci_write_config_dword(rp, aer + PCI_ERR_ROOT_STATUS, e_src.status);
1209 if (!kfifo_put(&rpc->aer_fifo, e_src))