File 5d80e82e-AMD-IOMMU-alloc_intremap_table-callers-handle-errors.patch of Package xen.27494
References: bsc#1135799
# Commit 076c34d12a341f3915a2d8021752e0641df07496
# Date 2019-09-17 16:05:34 +0200
# Author Jan Beulich <jbeulich@suse.com>
# Committer Jan Beulich <jbeulich@suse.com>
AMD/IOMMU: let callers of amd_iommu_alloc_intremap_table() handle errors
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>
--- a/xen/drivers/passthrough/amd/iommu_acpi.c
+++ b/xen/drivers/passthrough/amd/iommu_acpi.c
@@ -86,6 +86,10 @@ static void __init add_ivrs_mapping_entr
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;
--- a/xen/drivers/passthrough/amd/iommu_intr.c
+++ b/xen/drivers/passthrough/amd/iommu_intr.c
@@ -818,12 +818,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;
}