diff options
author | Feng Wu <feng.wu@intel.com> | 2015-06-09 01:20:37 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-06-12 05:33:52 -0400 |
commit | c1d993341e46867af9412cf7f93f535895bbe3a7 (patch) | |
tree | 95f87632030df741b88ff13dc9d42c0778af7682 | |
parent | 959c870f7305be019d9316bc4e038dc6119d51ad (diff) |
iommu, x86: Properly handle posted interrupts for IOMMU hotplug
Return error when inserting a new IOMMU which doesn't support posted
interrupts if posted interrupts are already enabled.
Signed-off-by: Feng Wu <feng.wu@intel.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Joerg Roedel <joro@8bytes.org>
Cc: jiang.liu@linux.intel.com
Cc: iommu@lists.linux-foundation.org
Cc: dwmw2@infradead.org
Link: http://lkml.kernel.org/r/1433827237-3382-11-git-send-email-feng.wu@intel.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/iommu/intel_irq_remapping.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/iommu/intel_irq_remapping.c b/drivers/iommu/intel_irq_remapping.c index 0f57af72d8f8..80f1d1486247 100644 --- a/drivers/iommu/intel_irq_remapping.c +++ b/drivers/iommu/intel_irq_remapping.c | |||
@@ -1355,6 +1355,9 @@ int dmar_ir_hotplug(struct dmar_drhd_unit *dmaru, bool insert) | |||
1355 | return -EINVAL; | 1355 | return -EINVAL; |
1356 | if (!ecap_ir_support(iommu->ecap)) | 1356 | if (!ecap_ir_support(iommu->ecap)) |
1357 | return 0; | 1357 | return 0; |
1358 | if (irq_remapping_cap(IRQ_POSTING_CAP) && | ||
1359 | !cap_pi_support(iommu->cap)) | ||
1360 | return -EBUSY; | ||
1358 | 1361 | ||
1359 | if (insert) { | 1362 | if (insert) { |
1360 | if (!iommu->ir_table) | 1363 | if (!iommu->ir_table) |