Patch "PCI: microchip: Fix refcount leak in mc_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: microchip: Fix refcount leak in mc_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-microchip-fix-refcount-leak-in-mc_pcie_init_irq_.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 c44815bafdfea5d877e8afa944999f04cdbe8f98
Author: Miaoqian Lin <linmq006@xxxxxxxxx>
Date:   Sun Jun 5 09:51:23 2022 +0400

    PCI: microchip: Fix refcount leak in mc_pcie_init_irq_domains()
    
    [ Upstream commit f030304fdeb87ec8f1b518c73703214aec6cc24a ]
    
    of_get_next_child() returns a node pointer with refcount incremented, so we
    should use of_node_put() on it when we don't need it anymore.
    
    mc_pcie_init_irq_domains() only calls of_node_put() in the normal path,
    missing it in some error paths.  Add missing of_node_put() to avoid
    refcount leak.
    
    Fixes: 6f15a9c9f941 ("PCI: microchip: Add Microchip PolarFire PCIe controller driver")
    Link: https://lore.kernel.org/r/20220605055123.59127-1-linmq006@xxxxxxxxx
    Signed-off-by: Miaoqian Lin <linmq006@xxxxxxxxx>
    Signed-off-by: Bjorn Helgaas <bhelgaas@xxxxxxxxxx>
    Reviewed-by: Rob Herring <robh@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/pci/controller/pcie-microchip-host.c b/drivers/pci/controller/pcie-microchip-host.c
index 2c52a8cef726..932b1c182149 100644
--- a/drivers/pci/controller/pcie-microchip-host.c
+++ b/drivers/pci/controller/pcie-microchip-host.c
@@ -904,6 +904,7 @@ static int mc_pcie_init_irq_domains(struct mc_pcie *port)
 						   &event_domain_ops, port);
 	if (!port->event_domain) {
 		dev_err(dev, "failed to get event domain\n");
+		of_node_put(pcie_intc_node);
 		return -ENOMEM;
 	}
 
@@ -913,6 +914,7 @@ static int mc_pcie_init_irq_domains(struct mc_pcie *port)
 						  &intx_domain_ops, port);
 	if (!port->intx_domain) {
 		dev_err(dev, "failed to get an INTx IRQ domain\n");
+		of_node_put(pcie_intc_node);
 		return -ENOMEM;
 	}
 



[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