]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
iommu/mediatek: fix device leak on of_xlate()
authorJohan Hovold <johan@kernel.org>
Mon, 20 Oct 2025 04:53:09 +0000 (06:53 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Jan 2026 09:14:40 +0000 (10:14 +0100)
commit b3f1ee18280363ef17f82b564fc379ceba9ec86f upstream.

Make sure to drop the reference taken to the iommu platform device when
looking up its driver data during of_xlate().

Fixes: 0df4fabe208d ("iommu/mediatek: Add mt8173 IOMMU driver")
Cc: stable@vger.kernel.org # 4.6
Acked-by: Robin Murphy <robin.murphy@arm.com>
Reviewed-by: Yong Wu <yong.wu@mediatek.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/iommu/mtk_iommu.c

index 78f83de7e955c4a7924123ed0ad11e48d1969c61..5ebf31f50c06a1db6c6d05275b9ad720c1c71bb1 100644 (file)
@@ -975,6 +975,8 @@ static int mtk_iommu_of_xlate(struct device *dev,
                        return -EINVAL;
 
                dev_iommu_priv_set(dev, platform_get_drvdata(m4updev));
+
+               put_device(&m4updev->dev);
        }
 
        return iommu_fwspec_add_ids(dev, args->args, 1);