AMD IOMMU: panic if completion wait loop fails
Impact: prevents data corruption after a failed completion wait loop Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
cf558d25e5
commit
84df817595
|
@ -235,8 +235,9 @@ static int iommu_completion_wait(struct amd_iommu *iommu)
|
||||||
status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
|
status &= ~MMIO_STATUS_COM_WAIT_INT_MASK;
|
||||||
writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
|
writel(status, iommu->mmio_base + MMIO_STATUS_OFFSET);
|
||||||
|
|
||||||
if (unlikely((i == EXIT_LOOP_COUNT) && printk_ratelimit()))
|
if (unlikely(i == EXIT_LOOP_COUNT))
|
||||||
printk(KERN_WARNING "AMD IOMMU: Completion wait loop failed\n");
|
panic("AMD IOMMU: Completion wait loop failed\n");
|
||||||
|
|
||||||
out:
|
out:
|
||||||
spin_unlock_irqrestore(&iommu->lock, flags);
|
spin_unlock_irqrestore(&iommu->lock, flags);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue