lkml.org 
[lkml]   [2022]   [Jun]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] arm: mach-versatile: Fix refcount leak bug in versatile
Date
In versatile_dt_init(), of_find_compatible_node() will return a node
pointer with refcount incremented. We should use of_node_put() when
it is not used anymore.

Signed-off-by: Liang He <windhl@126.com>
---
arch/arm/mach-versatile/versatile.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-versatile/versatile.c b/arch/arm/mach-versatile/versatile.c
index 02ba68abe533..97da874b5d4b 100644
--- a/arch/arm/mach-versatile/versatile.c
+++ b/arch/arm/mach-versatile/versatile.c
@@ -164,6 +164,7 @@ static void __init versatile_dt_init(void)
np = of_find_compatible_node(NULL, NULL, "arm,core-module-versatile");
if (np)
versatile_sys_base = of_iomap(np, 0);
+ of_node_put(np);
WARN_ON(!versatile_sys_base);

versatile_dt_pci_init();
--
2.25.1
\
 
 \ /
  Last update: 2022-06-17 15:48    [W:0.034 / U:1.816 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site