mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 01:04:08 +08:00
[PATCH] sata_sil: add controller unplug detection in sil_interrupt()
Short-circuit interrupt handling if BMDMA2 is reported as 0xffffffff indicating device removal. Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
3b01b8af24
commit
23fa961809
@ -419,7 +419,8 @@ static irqreturn_t sil_interrupt(int irq, void *dev_instance,
|
||||
if (unlikely(!ap || ap->flags & ATA_FLAG_DISABLED))
|
||||
continue;
|
||||
|
||||
if (!(bmdma2 & (SIL_DMA_COMPLETE | SIL_DMA_SATA_IRQ)))
|
||||
if (bmdma2 == 0xffffffff ||
|
||||
!(bmdma2 & (SIL_DMA_COMPLETE | SIL_DMA_SATA_IRQ)))
|
||||
continue;
|
||||
|
||||
sil_host_intr(ap, bmdma2);
|
||||
|
Loading…
Reference in New Issue
Block a user