* [PATCH] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus
@ 2022-05-12 2:16 Miaoqian Lin
2022-05-12 10:56 ` Martin Blumenstingl
2022-06-10 6:43 ` Neil Armstrong
0 siblings, 2 replies; 3+ messages in thread
From: Miaoqian Lin @ 2022-05-12 2:16 UTC (permalink / raw)
To: Russell King, Neil Armstrong, Kevin Hilman, Jerome Brunet,
Martin Blumenstingl, Carlo Caione, linux-arm-kernel,
linux-amlogic, linux-kernel
Cc: linmq006
of_find_compatible_node() returns a node pointer with refcount
incremented, we should use of_node_put() on it when done.
Add missing of_node_put() to avoid refcount leak.
Fixes: d850f3e5d296 ("ARM: meson: Add SMP bringup code for Meson8 and Meson8b")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
---
arch/arm/mach-meson/platsmp.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/mach-meson/platsmp.c b/arch/arm/mach-meson/platsmp.c
index 4b8ad728bb42..32ac60b89fdc 100644
--- a/arch/arm/mach-meson/platsmp.c
+++ b/arch/arm/mach-meson/platsmp.c
@@ -71,6 +71,7 @@ static void __init meson_smp_prepare_cpus(const char *scu_compatible,
}
sram_base = of_iomap(node, 0);
+ of_node_put(node);
if (!sram_base) {
pr_err("Couldn't map SRAM registers\n");
return;
@@ -91,6 +92,7 @@ static void __init meson_smp_prepare_cpus(const char *scu_compatible,
}
scu_base = of_iomap(node, 0);
+ of_node_put(node);
if (!scu_base) {
pr_err("Couldn't map SCU registers\n");
return;
--
2.25.1
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus
2022-05-12 2:16 [PATCH] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus Miaoqian Lin
@ 2022-05-12 10:56 ` Martin Blumenstingl
2022-06-10 6:43 ` Neil Armstrong
1 sibling, 0 replies; 3+ messages in thread
From: Martin Blumenstingl @ 2022-05-12 10:56 UTC (permalink / raw)
To: Miaoqian Lin
Cc: Russell King, Neil Armstrong, Kevin Hilman, Jerome Brunet,
Carlo Caione, linux-arm-kernel, linux-amlogic, linux-kernel
On Thu, May 12, 2022 at 4:16 AM Miaoqian Lin <linmq006@gmail.com> wrote:
>
> of_find_compatible_node() returns a node pointer with refcount
> incremented, we should use of_node_put() on it when done.
> Add missing of_node_put() to avoid refcount leak.
>
> Fixes: d850f3e5d296 ("ARM: meson: Add SMP bringup code for Meson8 and Meson8b")
> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Thank you for spotting and fixing this issue!
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus
2022-05-12 2:16 [PATCH] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus Miaoqian Lin
2022-05-12 10:56 ` Martin Blumenstingl
@ 2022-06-10 6:43 ` Neil Armstrong
1 sibling, 0 replies; 3+ messages in thread
From: Neil Armstrong @ 2022-06-10 6:43 UTC (permalink / raw)
To: Carlo Caione, Martin Blumenstingl, Jerome Brunet, linux-amlogic,
Miaoqian Lin, linux-arm-kernel, Kevin Hilman, linux-kernel,
Russell King
Cc: Neil Armstrong
Hi,
On Thu, 12 May 2022 06:16:10 +0400, Miaoqian Lin wrote:
> of_find_compatible_node() returns a node pointer with refcount
> incremented, we should use of_node_put() on it when done.
> Add missing of_node_put() to avoid refcount leak.
>
>
Thanks, Applied to https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git (v5.20/arm)
[1/1] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus
https://git.kernel.org/amlogic/c/34d2cd3fccced12b958b8848e3eff0ee4296764c
These changes has been applied on the intermediate git tree [1].
The v5.20/arm branch will then be sent via a formal Pull Request to the Linux SoC maintainers
for inclusion in their intermediate git branches in order to be sent to Linus during
the next merge window, or sooner if it's a set of fixes.
In the cases of fixes, those will be merged in the current release candidate
kernel and as soon they appear on the Linux master branch they will be
backported to the previous Stable and Long-Stable kernels [2].
The intermediate git branches are merged daily in the linux-next tree [3],
people are encouraged testing these pre-release kernels and report issues on the
relevant mailing-lists.
If problems are discovered on those changes, please submit a signed-off-by revert
patch followed by a corrective changeset.
[1] https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux.git
[2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
[3] https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
--
Neil
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-06-10 6:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-12 2:16 [PATCH] ARM: meson: Fix refcount leak in meson_smp_prepare_cpus Miaoqian Lin
2022-05-12 10:56 ` Martin Blumenstingl
2022-06-10 6:43 ` Neil Armstrong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®