[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220617080439.4010786-1-windhl@126.com>
Date: Fri, 17 Jun 2022 16:04:39 +0800
From: Liang He <windhl@....com>
To: mpe@...erman.id.au, benh@...nel.crashing.org, paulus@...ba.org,
nick.child@....com, npiggin@...il.com, christophe.leroy@...roup.eu
Cc: windhl@....com, linuxppc-dev@...ts.ozlabs.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] powerpc: powernv: Fix refcount leak in opal
In opal_imc_init_dev(), 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@....com>
---
arch/powerpc/platforms/powernv/opal.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
index 55a8fbfdb5b2..d86cc48a10aa 100644
--- a/arch/powerpc/platforms/powernv/opal.c
+++ b/arch/powerpc/platforms/powernv/opal.c
@@ -952,6 +952,7 @@ static void __init opal_imc_init_dev(void)
np = of_find_compatible_node(NULL, NULL, IMC_DTB_COMPAT);
if (np)
of_platform_device_create(np, NULL, NULL);
+ of_node_put(np);
}
static int kopald(void *unused)
--
2.25.1
Powered by blists - more mailing lists