]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
powerpc/powernv: Reference iommu_table while it is linked to a group
authorAlexey Kardashevskiy <aik@ozlabs.ru>
Wed, 19 Dec 2018 08:52:23 +0000 (19:52 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 21 Dec 2018 05:20:46 +0000 (16:20 +1100)
The iommu_table pointer stored in iommu_table_group may get stale
by accident, this adds referencing and removes a redundant comment
about this.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/platforms/powernv/pci-ioda-tce.c
arch/powerpc/platforms/powernv/pci-ioda.c

index 7639b216875598f2315baa4a8d148c229b86329e..697449afb3f77f905c7c9b2155dd0b70650cf2b4 100644 (file)
@@ -368,6 +368,7 @@ void pnv_pci_unlink_table_and_group(struct iommu_table *tbl,
        found = false;
        for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
                if (table_group->tables[i] == tbl) {
+                       iommu_tce_table_put(tbl);
                        table_group->tables[i] = NULL;
                        found = true;
                        break;
@@ -393,7 +394,7 @@ long pnv_pci_link_table_and_group(int node, int num,
        tgl->table_group = table_group;
        list_add_rcu(&tgl->next, &tbl->it_group_list);
 
-       table_group->tables[num] = tbl;
+       table_group->tables[num] = iommu_tce_table_get(tbl);
 
        return 0;
 }
index 59db3b0f23d3643481629ca3571f0899692f5235..62f45546e66e48867e22507a024c7a5fcc1568c6 100644 (file)
@@ -2714,10 +2714,6 @@ static long pnv_pci_ioda2_npu_unset_window(
 
 static void pnv_ioda2_npu_take_ownership(struct iommu_table_group *table_group)
 {
-       /*
-        * Detach NPU first as pnv_ioda2_take_ownership() will destroy
-        * the iommu_table if 32bit DMA is enabled.
-        */
        pnv_npu_take_ownership(gpe_table_group_to_npe(table_group));
        pnv_ioda2_take_ownership(table_group);
 }