* [PATCH 0/2] ARM: mvebu: Adjustments for common code in two functions
@ 2024-10-02 17:48 Markus Elfring
2024-10-02 17:50 ` [PATCH 1/2] ARM: mvebu: Call of_node_put(cpu_config_np) only once in armada_370_coherency_init() Markus Elfring
2024-10-02 17:52 ` [PATCH 2/2] ARM: mvebu: Use common of_node_put() code in mvebu_pm_suspend_init() Markus Elfring
0 siblings, 2 replies; 3+ messages in thread
From: Markus Elfring @ 2024-10-02 17:48 UTC (permalink / raw)
To: linux-arm-kernel, Andrew Lunn, Gregory Clement, Russell King,
Sebastian Hesselbarth, Thomas Petazzoni
Cc: LKML, kernel-janitors, Krzysztof Kozlowski
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Wed, 2 Oct 2024 19:32:23 +0200
A few update suggestions were taken into account
from static source code analysis.
Markus Elfring (2):
Call of_node_put(cpu_config_np) only once in armada_370_coherency_init()
Use common of_node_put() code in mvebu_pm_suspend_init()
arch/arm/mach-mvebu/coherency.c | 7 ++-----
arch/arm/mach-mvebu/pm.c | 21 +++++++++++----------
2 files changed, 13 insertions(+), 15 deletions(-)
--
2.46.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/2] ARM: mvebu: Call of_node_put(cpu_config_np) only once in armada_370_coherency_init()
2024-10-02 17:48 [PATCH 0/2] ARM: mvebu: Adjustments for common code in two functions Markus Elfring
@ 2024-10-02 17:50 ` Markus Elfring
2024-10-02 17:52 ` [PATCH 2/2] ARM: mvebu: Use common of_node_put() code in mvebu_pm_suspend_init() Markus Elfring
1 sibling, 0 replies; 3+ messages in thread
From: Markus Elfring @ 2024-10-02 17:50 UTC (permalink / raw)
To: linux-arm-kernel, Andrew Lunn, Gregory Clement, Russell King,
Sebastian Hesselbarth, Thomas Petazzoni
Cc: LKML, kernel-janitors, Krzysztof Kozlowski
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Wed, 2 Oct 2024 19:02:28 +0200
An of_node_put(cpu_config_np) call was immediately used after a null
pointer check for an of_iomap() call in this function implementation.
Thus call such a function only once instead directly before the check.
This issue was transformed by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
arch/arm/mach-mvebu/coherency.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/arch/arm/mach-mvebu/coherency.c b/arch/arm/mach-mvebu/coherency.c
index a6b621ff0b87..262410ccc4bd 100644
--- a/arch/arm/mach-mvebu/coherency.c
+++ b/arch/arm/mach-mvebu/coherency.c
@@ -137,12 +137,9 @@ static void __init armada_370_coherency_init(struct device_node *np)
goto exit;
cpu_config_base = of_iomap(cpu_config_np, 0);
- if (!cpu_config_base) {
- of_node_put(cpu_config_np);
- goto exit;
- }
-
of_node_put(cpu_config_np);
+ if (!cpu_config_base)
+ goto exit;
cpuhp_setup_state_nocalls(CPUHP_AP_ARM_MVEBU_COHERENCY,
"arm/mvebu/coherency:starting",
--
2.46.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 2/2] ARM: mvebu: Use common of_node_put() code in mvebu_pm_suspend_init()
2024-10-02 17:48 [PATCH 0/2] ARM: mvebu: Adjustments for common code in two functions Markus Elfring
2024-10-02 17:50 ` [PATCH 1/2] ARM: mvebu: Call of_node_put(cpu_config_np) only once in armada_370_coherency_init() Markus Elfring
@ 2024-10-02 17:52 ` Markus Elfring
1 sibling, 0 replies; 3+ messages in thread
From: Markus Elfring @ 2024-10-02 17:52 UTC (permalink / raw)
To: linux-arm-kernel, Andrew Lunn, Gregory Clement, Russell King,
Sebastian Hesselbarth, Thomas Petazzoni
Cc: LKML, kernel-janitors, Krzysztof Kozlowski
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Wed, 2 Oct 2024 19:15:09 +0200
Add a local variable “rc” and a label so that a bit of exception handling
can be better reused at the end of this function implementation.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
arch/arm/mach-mvebu/pm.c | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/arch/arm/mach-mvebu/pm.c b/arch/arm/mach-mvebu/pm.c
index b149d9b77505..cd85f2c56836 100644
--- a/arch/arm/mach-mvebu/pm.c
+++ b/arch/arm/mach-mvebu/pm.c
@@ -235,6 +235,7 @@ int __init mvebu_pm_suspend_init(void (*board_pm_enter)(void __iomem *sdram_reg,
{
struct device_node *np;
struct resource res;
+ int rc;
np = of_find_compatible_node(NULL, NULL,
"marvell,armada-xp-sdram-controller");
@@ -242,26 +243,26 @@ int __init mvebu_pm_suspend_init(void (*board_pm_enter)(void __iomem *sdram_reg,
return -ENODEV;
if (of_address_to_resource(np, 0, &res)) {
- of_node_put(np);
- return -ENODEV;
+ rc = -ENODEV;
+ goto put_node;
}
if (!request_mem_region(res.start, resource_size(&res),
np->full_name)) {
- of_node_put(np);
- return -EBUSY;
+ rc = -EBUSY;
+ goto put_node;
}
sdram_ctrl = ioremap(res.start, resource_size(&res));
if (!sdram_ctrl) {
release_mem_region(res.start, resource_size(&res));
- of_node_put(np);
- return -ENOMEM;
+ rc = -ENOMEM;
+ goto put_node;
}
- of_node_put(np);
-
mvebu_board_pm_enter = board_pm_enter;
-
- return 0;
+ rc = 0;
+put_node:
+ of_node_put(np);
+ return rc;
}
--
2.46.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-10-02 17:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-02 17:48 [PATCH 0/2] ARM: mvebu: Adjustments for common code in two functions Markus Elfring
2024-10-02 17:50 ` [PATCH 1/2] ARM: mvebu: Call of_node_put(cpu_config_np) only once in armada_370_coherency_init() Markus Elfring
2024-10-02 17:52 ` [PATCH 2/2] ARM: mvebu: Use common of_node_put() code in mvebu_pm_suspend_init() Markus Elfring
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®