All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] add missing of_node_put
  2015-10-10 12:30 ` Julia Lawall
  (?)
@ 2015-10-21 20:41 ` Julia Lawall
  -1 siblings, 0 replies; 183+ messages in thread
From: Julia Lawall @ 2015-10-21 20:41 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: kernel-janitors, linux-kernel, linux-clk, Stephen Boyd,
	Michael Turquette, Russell King - ARM Linux, Thomas Petazzoni,
	Andrew Lunn, Bjorn Helgaas, Jason Cooper

The various for_each device_node iterators performs an of_node_get on each
iteration, so a break out of the loop requires an of_node_put.

The complete semantic patch that fixes this problem is
(http://coccinelle.lip6.fr):

// <smpl>
@r@
local idexpression n;
expression e1,e2;
iterator name for_each_node_by_name, for_each_node_by_type,
for_each_compatible_node, for_each_matching_node,
for_each_matching_node_and_match, for_each_child_of_node,
for_each_available_child_of_node, for_each_node_with_property;
iterator i;
statement S;
expression list [n1] es;
@@

(
(
for_each_node_by_name(n,e1) S
|
for_each_node_by_type(n,e1) S
|
for_each_compatible_node(n,e1,e2) S
|
for_each_matching_node(n,e1) S
|
for_each_matching_node_and_match(n,e1,e2) S
|
for_each_child_of_node(e1,n) S
|
for_each_available_child_of_node(e1,n) S
|
for_each_node_with_property(n,e1) S
)
&
i(es,n,...) S
)

@@
local idexpression r.n;
iterator r.i;
expression e;
expression list [r.n1] es;
@@

 i(es,n,...) {
   ...
(
   of_node_put(n);
|
   e = n
|
   return n;
|
+  of_node_put(n);
?  return ...;
)
   ...
 }

@@
local idexpression r.n;
iterator r.i;
expression e;
expression list [r.n1] es;
@@

 i(es,n,...) {
   ...
(
   of_node_put(n);
|
   e = n
|
+  of_node_put(n);
?  break;
)
   ...
 }
... when != n

@@
local idexpression r.n;
iterator r.i;
expression e;
identifier l;
expression list [r.n1] es;
@@

 i(es,n,...) {
   ...
(
   of_node_put(n);
|
   e = n
|
+  of_node_put(n);
?  goto l;
)
   ...
 }
...
l: ... when != n// </smpl>

---

 drivers/clk/clk-scpi.c      |    1 +
 drivers/clk/clk-si5351.c    |   17 ++++++++++-------
 drivers/clk/clk.c           |    4 ++++
 drivers/clk/imx/clk-imx27.c |    4 +++-
 drivers/clk/imx/clk-imx31.c |    4 +++-
 5 files changed, 21 insertions(+), 9 deletions(-)

^ permalink raw reply	[flat|nested] 183+ messages in thread
* [PATCH 0/5] add missing of_node_put
@ 2018-05-23 19:07 ` Julia Lawall
  0 siblings, 0 replies; 183+ messages in thread
From: Julia Lawall @ 2018-05-23 19:07 UTC (permalink / raw)
  To: linux-pci
  Cc: linux-rockchip, kernel-janitors, linux-kernel, dri-devel,
	linux-gpio, linuxppc-dev, linux-arm-kernel

The device node iterators perform an of_node_get on each iteration, so a
jump out of the loop requires an of_node_put.

---

 drivers/gpu/drm/rockchip/rockchip_lvds.c   |    4 +++-
 drivers/pci/hotplug/pnv_php.c              |    8 ++++++--
 drivers/phy/hisilicon/phy-hisi-inno-usb2.c |    9 +++++++--
 drivers/pinctrl/pinctrl-at91-pio4.c        |    4 +++-
 drivers/soc/ti/knav_dma.c                  |    1 +
 5 files changed, 20 insertions(+), 6 deletions(-)
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 183+ messages in thread
* [PATCH 0/5] add missing of_node_put
@ 2015-12-21 16:39 ` Julia Lawall
  0 siblings, 0 replies; 183+ messages in thread
From: Julia Lawall @ 2015-12-21 16:39 UTC (permalink / raw)
  To: linux-arm-kernel

The various for_each device_node iterators performs an of_node_get on each
iteration, so a break out of the loop requires an of_node_put.

The complete semantic patch that fixes this problem is
(http://coccinelle.lip6.fr):

// <smpl>
@r@
local idexpression n;
expression e1,e2;
iterator name for_each_node_by_name, for_each_node_by_type,
for_each_compatible_node, for_each_matching_node,
for_each_matching_node_and_match, for_each_child_of_node,
for_each_available_child_of_node, for_each_node_with_property;
iterator i;
statement S;
expression list [n1] es;
@@

(
(
for_each_node_by_name(n,e1) S
|
for_each_node_by_type(n,e1) S
|
for_each_compatible_node(n,e1,e2) S
|
for_each_matching_node(n,e1) S
|
for_each_matching_node_and_match(n,e1,e2) S
|
for_each_child_of_node(e1,n) S
|
for_each_available_child_of_node(e1,n) S
|
for_each_node_with_property(n,e1) S
)
&
i(es,n,...) S
)

@@
local idexpression r.n;
iterator r.i;
expression e;
expression list [r.n1] es;
@@

 i(es,n,...) {
   ...
(
   of_node_put(n);
|
   e = n
|
   return n;
|
+  of_node_put(n);
?  return ...;
)
   ...
 }

@@
local idexpression r.n;
iterator r.i;
expression e;
expression list [r.n1] es;
@@

 i(es,n,...) {
   ...
(
   of_node_put(n);
|
   e = n
|
+  of_node_put(n);
?  break;
)
   ...
 }
... when != n

@@
local idexpression r.n;
iterator r.i;
expression e;
identifier l;
expression list [r.n1] es;
@@

 i(es,n,...) {
   ...
(
   of_node_put(n);
|
   e = n
|
+  of_node_put(n);
?  goto l;
)
   ...
 }
...
l: ... when != n// </smpl>

---

 drivers/pinctrl/mediatek/pinctrl-mtk-common.c |    1 +
 drivers/pinctrl/pinctrl-rockchip.c            |    5 ++++-
 drivers/pinctrl/pinctrl-tegra-xusb.c          |    4 +++-
 drivers/pinctrl/pinctrl-tegra.c               |    1 +
 drivers/pinctrl/sh-pfc/pinctrl.c              |    4 +++-
 drivers/pinctrl/sirf/pinctrl-sirf.c           |    8 ++++++--
 6 files changed, 18 insertions(+), 5 deletions(-)

^ permalink raw reply	[flat|nested] 183+ messages in thread
* [PATCH 0/5] add missing of_node_put
@ 2015-10-10 12:30 ` Julia Lawall
  0 siblings, 0 replies; 183+ messages in thread
From: Julia Lawall @ 2015-10-10 12:30 UTC (permalink / raw)
  To: linux-arm-kernel

for_each_child_of_node performs an of_node_get on each iteration, so
a break out of the loop requires an of_node_put.

The complete semantic patch that fixes this problem is
(http://coccinelle.lip6.fr):

// <smpl>
@@
expression root,e;
local idexpression child;
iterator name for_each_child_of_node;
@@

 for_each_child_of_node(root, child) {
   ... when != of_node_put(child)
       when != e = child
+  of_node_put(child);
?  break;
   ...
}
... when != child

@@
expression root,e;
local idexpression child;
@@

 for_each_child_of_node(root, child) {
   ... when != of_node_put(child)
       when != e = child
(
   return child;
|
+  of_node_put(child);
?  return ...;
)
   ...
 }
// </smpl>

---

 arch/arm/kernel/devtree.c             |    1 +
 arch/arm/mach-shmobile/pm-rmobile.c   |    4 +++-
 drivers/power/charger-manager.c       |    4 +++-
 drivers/regulator/of_regulator.c      |    1 +
 drivers/video/backlight/88pm860x_bl.c |    1 +
 5 files changed, 9 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 183+ messages in thread

end of thread, other threads:[~2018-06-16 12:24 UTC | newest]

Thread overview: 183+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-21 20:41 [PATCH 0/5] add missing of_node_put Julia Lawall
2015-10-21 20:41 ` Julia Lawall
2015-10-21 20:41 ` Julia Lawall
2015-10-21 20:41 ` [PATCH 1/5] clk: " Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 23:13   ` Stephen Boyd
2015-10-21 23:13     ` Stephen Boyd
2015-10-22  5:52     ` Julia Lawall
2015-10-22  5:52       ` Julia Lawall
2015-10-21 20:41 ` [PATCH 2/5] clk: si5351: " Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 23:14   ` Stephen Boyd
2015-10-21 23:14     ` Stephen Boyd
2015-10-21 20:41 ` [PATCH 3/5] clk: imx27: " Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 23:15   ` Stephen Boyd
2015-10-21 23:15     ` Stephen Boyd
2015-10-21 23:15     ` Stephen Boyd
2015-10-21 20:41 ` [PATCH 4/5] clk: imx31: " Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 23:15   ` Stephen Boyd
2015-10-21 23:15     ` Stephen Boyd
2015-10-21 23:15     ` Stephen Boyd
2015-10-21 20:41 ` [PATCH 5/5] clk: scpi: " Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 20:41   ` Julia Lawall
2015-10-21 23:17   ` Stephen Boyd
2015-10-21 23:17     ` Stephen Boyd
2015-10-21 23:17     ` Stephen Boyd
2015-10-22  9:21   ` Sudeep Holla
2015-10-22  9:21     ` Sudeep Holla
2015-10-22  9:21     ` Sudeep Holla
2015-11-26 17:29     ` Sudeep Holla
2015-11-26 17:29       ` Sudeep Holla
2015-11-26 17:29       ` Sudeep Holla
2015-12-01  0:28       ` Stephen Boyd
2015-12-01  0:28         ` Stephen Boyd
2015-12-01  0:28         ` Stephen Boyd
2015-12-01  0:29   ` Stephen Boyd
2015-12-01  0:29     ` Stephen Boyd
2015-12-01  0:29     ` Stephen Boyd
  -- strict thread matches above, loose matches on Subject: below --
2018-05-23 19:07 [PATCH 0/5] " Julia Lawall
2018-05-23 19:07 ` Julia Lawall
2018-05-23 19:07 ` Julia Lawall
2018-05-23 19:07 ` Julia Lawall
2018-05-23 19:07 ` [PATCH 1/5] pinctrl: at91-pio4: " Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-24  7:59   ` Ludovic Desroches
2018-05-24  7:59     ` Ludovic Desroches
2018-05-24  7:59     ` Ludovic Desroches
2018-05-24  7:59     ` Ludovic Desroches
2018-05-24  8:30   ` Linus Walleij
2018-05-24  8:30     ` Linus Walleij
2018-05-24  8:30     ` Linus Walleij
2018-05-23 19:07 ` [PATCH 2/5] phy: " Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 19:07 ` [PATCH 3/5] soc: ti: knav_dma: " Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 19:07 ` [PATCH 4/5] pci/hotplug/pnv-php: " Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 21:50   ` Bjorn Helgaas
2018-05-23 21:50     ` Bjorn Helgaas
2018-05-23 19:07 ` [PATCH 5/5] drm/rockchip: lvds: " Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-05-23 19:07   ` Julia Lawall
2018-06-16 12:24   ` Heiko Stübner
2018-06-16 12:24     ` Heiko Stübner
2018-06-16 12:24     ` Heiko Stübner
2018-06-16 12:24     ` Heiko Stübner
2015-12-21 16:39 [PATCH 0/5] " Julia Lawall
2015-12-21 16:39 ` Julia Lawall
2015-12-21 16:39 ` Julia Lawall
2015-12-21 16:39 ` Julia Lawall
2015-12-21 16:39 ` [PATCH 1/5] pinctrl-tegra: " Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-22 12:44   ` Linus Walleij
2015-12-22 12:44     ` Linus Walleij
2015-12-21 16:39 ` [PATCH 2/5] pinctrl: sirf: " Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-22 12:45   ` Linus Walleij
2015-12-22 12:45     ` Linus Walleij
2015-12-22 12:45     ` Linus Walleij
2015-12-22 12:45     ` Linus Walleij
2015-12-21 16:39 ` [PATCH 3/5] pinctrl: sh-pfc: " Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-21 20:46   ` Laurent Pinchart
2015-12-21 20:46     ` Laurent Pinchart
2015-12-22 12:47   ` Linus Walleij
2015-12-22 12:47     ` Linus Walleij
2015-12-22 13:23     ` Geert Uytterhoeven
2015-12-22 13:23       ` Geert Uytterhoeven
2015-12-21 16:39 ` [PATCH 4/5] pinctrl: rockchip: " Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-21 16:39   ` Julia Lawall
     [not found]   ` <1450715988-4770-5-git-send-email-Julia.Lawall-L2FTfq7BK8M@public.gmane.org>
2015-12-21 21:20     ` Heiko Stübner
2015-12-21 21:20       ` Heiko Stübner
2015-12-21 21:20       ` Heiko Stübner
2015-12-21 21:20       ` Heiko Stübner
2015-12-22 12:48   ` Linus Walleij
2015-12-22 12:48     ` Linus Walleij
2015-12-22 12:48     ` Linus Walleij
2015-12-22 12:48     ` Linus Walleij
2015-12-21 16:39 ` [PATCH 5/5] pinctrl: mediatek: " Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-21 16:39   ` Julia Lawall
2015-12-22 12:49   ` Linus Walleij
2015-12-22 12:49     ` Linus Walleij
2015-12-22 12:49     ` Linus Walleij
2015-12-22 12:49     ` Linus Walleij
2015-10-10 12:30 [PATCH 0/5] " Julia Lawall
2015-10-10 12:30 ` Julia Lawall
2015-10-10 12:30 ` Julia Lawall
2015-10-10 12:30 ` [PATCH 1/5] backlight: 88pm860x_bl: " Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-13  8:15   ` Lee Jones
2015-10-13  8:15     ` Lee Jones
2015-10-13  8:15     ` Lee Jones
2015-10-10 12:30 ` [PATCH 2/5] power_supply: charger-manager: " Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-12  2:20   ` Krzysztof Kozlowski
2015-10-12  2:20     ` Krzysztof Kozlowski
2015-10-15  8:56   ` Sebastian Reichel
2015-10-15  8:56     ` Sebastian Reichel
2015-10-10 12:30 ` [PATCH 3/5] ARM: shmobile: R-Mobile: " Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-12  0:16   ` Simon Horman
2015-10-12  0:16     ` Simon Horman
2015-10-12  0:16     ` Simon Horman
2015-10-12  7:18   ` Geert Uytterhoeven
2015-10-12  7:18     ` Geert Uytterhoeven
2015-10-12  7:18     ` Geert Uytterhoeven
2015-10-12  7:24     ` Julia Lawall
2015-10-12  7:24       ` Julia Lawall
2015-10-12  7:24       ` Julia Lawall
2015-10-12  7:26       ` Geert Uytterhoeven
2015-10-12  7:26         ` Geert Uytterhoeven
2015-10-12  7:26         ` Geert Uytterhoeven
2015-10-12  7:29     ` Thomas Petazzoni
2015-10-12  7:29       ` Thomas Petazzoni
2015-10-12  7:29       ` Thomas Petazzoni
2015-10-12  7:30       ` Geert Uytterhoeven
2015-10-12  7:30         ` Geert Uytterhoeven
2015-10-12  7:30         ` Geert Uytterhoeven
2015-10-10 12:30 ` [PATCH 4/5] regulator: of: " Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-12  0:33   ` Krzysztof Kozlowski
2015-10-12  0:33     ` Krzysztof Kozlowski
2015-10-12  5:35     ` Julia Lawall
2015-10-12  5:35       ` Julia Lawall
2015-10-12 12:44     ` Julia Lawall
2015-10-12 12:44       ` Julia Lawall
2015-10-12 12:58       ` Krzysztof Kozlowski
2015-10-12 12:58         ` Krzysztof Kozlowski
2018-02-12 12:09   ` Applied "regulator: of: Add a missing 'of_node_put()' in an error handling path of 'of_regulator_match()'" to the regulator tree Mark Brown
2018-02-12 12:09     ` Applied "regulator: of: Add a missing 'of_node_put()' in an error handling path of 'of_regulator_mat Mark Brown
2015-10-10 12:30 ` [PATCH 5/5] arm: add missing of_node_put Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-10 12:30   ` Julia Lawall
2015-10-10 21:02   ` Arnd Bergmann
2015-10-10 21:02     ` Arnd Bergmann
2015-10-10 21:02     ` Arnd Bergmann
2015-10-10 21:08     ` Thomas Petazzoni
2015-10-10 21:08       ` Thomas Petazzoni
2015-10-10 21:08       ` Thomas Petazzoni
2015-10-10 21:12       ` Julia Lawall
2015-10-10 21:12         ` Julia Lawall
2015-10-10 21:12         ` Julia Lawall
2015-10-10 21:10     ` Julia Lawall
2015-10-10 21:10       ` Julia Lawall
2015-10-10 21:10       ` Julia Lawall
2015-10-10 21:15       ` Arnd Bergmann
2015-10-10 21:15         ` Arnd Bergmann
2015-10-10 21:15         ` Arnd Bergmann
2015-10-10 21:41         ` [PATCH 5/5 v2] " Julia Lawall
2015-10-10 21:41           ` Julia Lawall
2015-10-10 21:41           ` Julia Lawall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.