aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-02-22 21:11:18 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-22 21:11:18 -0500
commit5066e4a34081dd82fb625f2f382bfa29ca421a3f (patch)
tree9c622bb39bd6d5edd42e56dfe5c0778d1216c72d
parentb4642c109f9bbf62b2ee10babf5c4221c48480aa (diff)
parentc37a01779b3954d9c8f9ac4f663a03c11f69fded (diff)
Merge tag 'iommu-fix-v4.11-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu
Pull IOMMU fix from Joerg Roedel: "Fix a boot crash caused by the VT-d driver when booted with IOMMU disabled. This was introduced with the recent IOMMU changes" * tag 'iommu-fix-v4.11-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu: iommu/vt-d: Fix crash on boot when DMAR is disabled
-rw-r--r--drivers/iommu/dmar.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/iommu/dmar.c b/drivers/iommu/dmar.c
index d9c0decfc91a..36e3f430d265 100644
--- a/drivers/iommu/dmar.c
+++ b/drivers/iommu/dmar.c
@@ -1108,8 +1108,10 @@ error:
1108 1108
1109static void free_iommu(struct intel_iommu *iommu) 1109static void free_iommu(struct intel_iommu *iommu)
1110{ 1110{
1111 iommu_device_sysfs_remove(&iommu->iommu); 1111 if (intel_iommu_enabled) {
1112 iommu_device_unregister(&iommu->iommu); 1112 iommu_device_unregister(&iommu->iommu);
1113 iommu_device_sysfs_remove(&iommu->iommu);
1114 }
1113 1115
1114 if (iommu->irq) { 1116 if (iommu->irq) {
1115 if (iommu->pr_irq) { 1117 if (iommu->pr_irq) {