Lines Matching refs:e_src

647 				 struct aer_err_source *e_src)  in pci_rootport_aer_stats_incr()  argument
654 if (e_src->status & PCI_ERR_ROOT_COR_RCV) in pci_rootport_aer_stats_incr()
657 if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) { in pci_rootport_aer_stats_incr()
658 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV) in pci_rootport_aer_stats_incr()
1117 struct aer_err_source *e_src) in aer_isr_one_error() argument
1122 pci_rootport_aer_stats_incr(pdev, e_src); in aer_isr_one_error()
1128 if (e_src->status & PCI_ERR_ROOT_COR_RCV) { in aer_isr_one_error()
1129 e_info.id = ERR_COR_ID(e_src->id); in aer_isr_one_error()
1132 if (e_src->status & PCI_ERR_ROOT_MULTI_COR_RCV) in aer_isr_one_error()
1142 if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) { in aer_isr_one_error()
1143 e_info.id = ERR_UNCOR_ID(e_src->id); in aer_isr_one_error()
1145 if (e_src->status & PCI_ERR_ROOT_FATAL_RCV) in aer_isr_one_error()
1150 if (e_src->status & PCI_ERR_ROOT_MULTI_UNCOR_RCV) in aer_isr_one_error()
1173 struct aer_err_source e_src; in aer_isr() local
1178 while (kfifo_get(&rpc->aer_fifo, &e_src)) in aer_isr()
1179 aer_isr_one_error(rpc, &e_src); in aer_isr()
1196 struct aer_err_source e_src = {}; in aer_irq() local
1198 pci_read_config_dword(rp, aer + PCI_ERR_ROOT_STATUS, &e_src.status); in aer_irq()
1199 if (!(e_src.status & (PCI_ERR_ROOT_UNCOR_RCV|PCI_ERR_ROOT_COR_RCV))) in aer_irq()
1202 pci_read_config_dword(rp, aer + PCI_ERR_ROOT_ERR_SRC, &e_src.id); in aer_irq()
1203 pci_write_config_dword(rp, aer + PCI_ERR_ROOT_STATUS, e_src.status); in aer_irq()
1205 if (!kfifo_put(&rpc->aer_fifo, e_src)) in aer_irq()