• K
    PCI/AER: Abstract AER interrupt handling · d5351256
    Keith Busch 提交于
    task #29600094
    
    commit 390e2db8248075ae2f31a7046a88eda0f9784310 upstream.
    Backport summary: for 4.19 kernel ICX PCIe Gen4 support.
    
    The aer_inject module was directly calling aer_irq().  This required the
    AER driver export its private IRQ handler for no other reason than to
    support error injection.  A driver should not have to expose its private
    interfaces, so use the IRQ subsystem to route injection to the AER driver,
    and make aer_irq() a private interface.
    
    This provides additional benefits:
    
    First, directly calling the IRQ handler bypassed the IRQ subsytem so the
    injection wasn't really synthesizing what happens if a shared AER interrupt
    occurs.
    
    The error injection had to provide the callback data directly, which may be
    racing with a removal that is freeing that structure.  The IRQ subsystem
    can handle that race.
    
    Finally, using the IRQ subsystem automatically reacts to threaded IRQs,
    keeping the error injection abstracted from that implementation detail.
    Signed-off-by: NKeith Busch <keith.busch@intel.com>
    Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
    (cherry picked from commit 390e2db8248075ae2f31a7046a88eda0f9784310)
    Signed-off-by: NEthan Zhao <haifeng.zhao@intel.com>
    Signed-off-by: NArtie Ding <artie.ding@linux.alibaba.com>
    Acked-by: NCaspar Zhang <caspar@linux.alibaba.com>
    d5351256
aer.c 38.7 KB