Patch "PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains()" has been added to the 5.18-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains()

to the 5.18-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     pci-mediatek-gen3-fix-refcount-leak-in-mtk_pcie_init.patch
and it can be found in the queue-5.18 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit a0b8d060f23b8e312d6e7b82cdfd606b78f728f2
Author: Miaoqian Lin <linmq006@xxxxxxxxx>
Date:   Wed Jun 1 08:12:58 2022 +0400

    PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains()
    
    [ Upstream commit bf038503d5fe90189743124233fe7aeb0984e961 ]
    
    of_get_child_by_name() returns a node pointer with refcount incremented, so
    we should use of_node_put() on it when we don't need it anymore.
    
    Add missing of_node_put() to avoid refcount leak.
    
    Fixes: 814cceebba9b ("PCI: mediatek-gen3: Add INTx support")
    Link: https://lore.kernel.org/r/20220601041259.56185-1-linmq006@xxxxxxxxx
    Signed-off-by: Miaoqian Lin <linmq006@xxxxxxxxx>
    Signed-off-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
    Reviewed-by: Miles Chen <miles.chen@xxxxxxxxxxxx>
    Acked-by: Jianjun Wang <jianjun.wang@xxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/pci/controller/pcie-mediatek-gen3.c b/drivers/pci/controller/pcie-mediatek-gen3.c
index 5d9fd36b02d1..a02c466a597c 100644
--- a/drivers/pci/controller/pcie-mediatek-gen3.c
+++ b/drivers/pci/controller/pcie-mediatek-gen3.c
@@ -600,7 +600,8 @@ static int mtk_pcie_init_irq_domains(struct mtk_gen3_pcie *pcie)
 						  &intx_domain_ops, pcie);
 	if (!pcie->intx_domain) {
 		dev_err(dev, "failed to create INTx IRQ domain\n");
-		return -ENODEV;
+		ret = -ENODEV;
+		goto out_put_node;
 	}
 
 	/* Setup MSI */
@@ -623,13 +624,15 @@ static int mtk_pcie_init_irq_domains(struct mtk_gen3_pcie *pcie)
 		goto err_msi_domain;
 	}
 
+	of_node_put(intc_node);
 	return 0;
 
 err_msi_domain:
 	irq_domain_remove(pcie->msi_bottom_domain);
 err_msi_bottom_domain:
 	irq_domain_remove(pcie->intx_domain);
-
+out_put_node:
+	of_node_put(intc_node);
 	return ret;
 }
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux