diff options
author | Feng Wu <[email protected]> | 2015-06-09 13:20:37 +0800 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2015-06-12 11:33:52 +0200 |
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 <[email protected]>
Reviewed-by: Thomas Gleixner <[email protected]>
Acked-by: Joerg Roedel <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
-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) return -EINVAL; if (!ecap_ir_support(iommu->ecap)) return 0; + if (irq_remapping_cap(IRQ_POSTING_CAP) && + !cap_pi_support(iommu->cap)) + return -EBUSY; if (insert) { if (!iommu->ir_table) |