OSDN Git Service

iommu/amd: Fix alloc_irq_index() increment
authorAlex Williamson <alex.williamson@redhat.com>
Fri, 3 Nov 2017 16:50:31 +0000 (10:50 -0600)
committerAlex Williamson <alex.williamson@redhat.com>
Fri, 3 Nov 2017 16:50:31 +0000 (10:50 -0600)
commit07d1c91b6c649705fdd9acf58001071845ecf068
tree24218f13c7107d4079bbc0dc556aedf6a19d182f
parenta593472591a5cf2d91244bc3f319c9dd91119343
iommu/amd: Fix alloc_irq_index() increment

On an is_allocated() interrupt index, we ALIGN() the current index and
then increment it via the for loop, guaranteeing that it is no longer
aligned for alignments >1.  We instead need to align the next index,
to guarantee forward progress, moving the increment-only to the case
where the index was found to be unallocated.

Fixes: 37946d95fc1a ('iommu/amd: Add align parameter to alloc_irq_index()')
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
drivers/iommu/amd_iommu.c