[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220615130326.3966842-1-windhl@126.com>
Date: Wed, 15 Jun 2022 21:03:26 +0800
From: Liang He <windhl@....com>
To: monstr@...str.eu, wangxiang@...rlc.com
Cc: linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
windhl@....com
Subject: [PATCH] arch: microblaze: pci: Add missing of_node_put() in xilinx_pci.c
In xilinx_pci_init(), of_find_matching_node() will return a node
pointer with refcount incremented. We should use of_node_put() in
fail path or when it is not used anymore.
Signed-off-by: Liang He <windhl@....com>
---
arch/microblaze/pci/xilinx_pci.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/arch/microblaze/pci/xilinx_pci.c b/arch/microblaze/pci/xilinx_pci.c
index f4cb86fffcee..018d91bdcbb9 100644
--- a/arch/microblaze/pci/xilinx_pci.c
+++ b/arch/microblaze/pci/xilinx_pci.c
@@ -132,13 +132,13 @@ void __init xilinx_pci_init(void)
if (of_address_to_resource(pci_node, 0, &r)) {
pr_err("xilinx-pci: cannot resolve base address\n");
- return;
+ goto out_put;
}
hose = pcibios_alloc_controller(pci_node);
if (!hose) {
pr_err("xilinx-pci: pcibios_alloc_controller() failed\n");
- return;
+ goto out_put;
}
/* Setup config space */
@@ -167,4 +167,7 @@ void __init xilinx_pci_init(void)
pr_info("xilinx-pci: Registered PCI host bridge\n");
xilinx_early_pci_scan(hose);
+
+out_put:
+ of_node_put(pci_node);
}
--
2.25.1
Powered by blists - more mailing lists