]> xenbits.xensource.com Git - people/liuw/xen.git/commitdiff
AMD/IOMMU: let callers of amd_iommu_alloc_intremap_table() handle errors
authorJan Beulich <jbeulich@suse.com>
Tue, 17 Sep 2019 14:05:34 +0000 (16:05 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 17 Sep 2019 14:05:34 +0000 (16:05 +0200)
Additional users of the function will want to handle errors more
gracefully. Remove the BUG_ON()s and make the current caller panic()
instead.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/drivers/passthrough/amd/iommu_acpi.c
xen/drivers/passthrough/amd/iommu_intr.c

index 197f3e64039c9a7f7d00751d87ed3d9593aee107..8df034730f54e401929d8480fe2798498b4180ab 100644 (file)
@@ -86,6 +86,10 @@ static void __init add_ivrs_mapping_entry(
              ivrs_mappings[alias_id].intremap_table = shared_intremap_table;
              ivrs_mappings[alias_id].intremap_inuse = shared_intremap_inuse;
          }
+
+         if ( !ivrs_mappings[alias_id].intremap_table )
+             panic("No memory for %04x:%02x:%02x.%u's IRT\n", iommu->seg,
+                   PCI_BUS(alias_id), PCI_SLOT(alias_id), PCI_FUNC(alias_id));
     }
 
     ivrs_mappings[alias_id].valid = true;
index 4f8a56f9c58b1e2e9e13e61015c8abfbcd303b81..e3018e16f480404b2a9462677a0f9b509ff369f6 100644 (file)
@@ -817,12 +817,22 @@ int __init amd_iommu_free_intremap_table(
 void *__init amd_iommu_alloc_intremap_table(
     const struct amd_iommu *iommu, unsigned long **inuse_map)
 {
-    void *tb = __alloc_amd_iommu_tables(intremap_table_order(iommu));
+    unsigned int order = intremap_table_order(iommu);
+    void *tb = __alloc_amd_iommu_tables(order);
+
+    if ( tb )
+    {
+        *inuse_map = xzalloc_array(unsigned long,
+                                   BITS_TO_LONGS(INTREMAP_ENTRIES));
+        if ( *inuse_map )
+            memset(tb, 0, PAGE_SIZE << order);
+        else
+        {
+            __free_amd_iommu_tables(tb, order);
+            tb = NULL;
+        }
+    }
 
-    BUG_ON(tb == NULL);
-    memset(tb, 0, PAGE_SIZE << intremap_table_order(iommu));
-    *inuse_map = xzalloc_array(unsigned long, BITS_TO_LONGS(INTREMAP_ENTRIES));
-    BUG_ON(*inuse_map == NULL);
     return tb;
 }