aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2015-06-12 09:06:26 -0400
committerJoerg Roedel <jroedel@suse.de>2015-06-16 04:59:36 -0400
commit7c3c9876d98a76b97d16c0f46cb108e95542b212 (patch)
treeec8a45ab84bc253a3d19ef9cc65d860c636f1b74
parentaf3b358e48115588d905cc07a47b3f356e0d01d1 (diff)
iommu/vt-d: Make sure copied over IR entries are not reused
Walk over the copied entries and mark the present ones as allocated. Tested-by: ZhenHua Li <zhen-hual@hp.com> Tested-by: Baoquan He <bhe@redhat.com> Signed-off-by: Joerg Roedel <jroedel@suse.de>
-rw-r--r--drivers/iommu/intel_irq_remapping.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c
index 2a901219f953..14e10de4a548 100644
--- a/drivers/iommu/intel_irq_remapping.c
+++ b/drivers/iommu/intel_irq_remapping.c
@@ -451,6 +451,7 @@ static int iommu_load_old_irte(struct intel_iommu *iommu)
451{ 451{
452 struct irte *old_ir_table; 452 struct irte *old_ir_table;
453 phys_addr_t irt_phys; 453 phys_addr_t irt_phys;
454 unsigned int i;
454 size_t size; 455 size_t size;
455 u64 irta; 456 u64 irta;
456 457
@@ -481,6 +482,15 @@ static int iommu_load_old_irte(struct intel_iommu *iommu)
481 482
482 __iommu_flush_cache(iommu, iommu->ir_table->base, size); 483 __iommu_flush_cache(iommu, iommu->ir_table->base, size);
483 484
485 /*
486 * Now check the table for used entries and mark those as
487 * allocated in the bitmap
488 */
489 for (i = 0; i < INTR_REMAP_TABLE_ENTRIES; i++) {
490 if (iommu->ir_table->base[i].present)
491 bitmap_set(iommu->ir_table->bitmap, i, 1);
492 }
493
484 return 0; 494 return 0;
485} 495}
486 496