On Fri, 2015-05-06 at 06:35:09 UTC, Alexey Kardashevskiy wrote:
> So far one TCE table could only be used by one IOMMU group. However
> IODA2 hardware allows programming the same TCE table address to
> multiple PE allowing sharing tables.

...

> +     pnv_pci_link_table_and_group(phb->hose->node, 0, tbl, &pe->table_group);
> +     pnv_pci_link_table_and_group(phb->hose->node, 0, tbl, &pe->table_group);
> +             pnv_pci_link_table_and_group(phb->hose->node, 0,
> +                             tbl, &phb->p5ioc2.table_group);

> +long pnv_pci_link_table_and_group(int node, int num,
> +             struct iommu_table *tbl,
> +             struct iommu_table_group *table_group)
> +{
> +     struct iommu_table_group_link *tgl = NULL;
> +
> +     BUG_ON(!tbl);
> +     BUG_ON(!table_group);
> +     BUG_ON(!table_group->group);
> +
> +     tgl = kzalloc_node(sizeof(struct iommu_table_group_link), GFP_KERNEL,
> +                     node);
> +     if (!tgl)
> +             return -ENOMEM;
> +
> +     tgl->table_group = table_group;
> +     list_add_rcu(&tgl->next, &tbl->it_group_list);
> +
> +     table_group->tables[num] = tbl;
> +
> +     return 0;

I'm not a fan of the BUG_ONs here.

This routine is so important that you have to BUG_ON three times at the start,
yet you never check the return code if it fails? That doesn't make sense to me.

If anything this should be sufficient:

        if (WARN_ON(!tbl || !table_group))
                return -EINVAL;

cheers
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to