[media] v4l: xilinx-vipp: add missing of_node_put
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 25 Oct 2015 13:57:04 +0000 (11:57 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 19 Nov 2015 11:27:17 +0000 (09:27 -0200)
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.

A simplified version of the semantic patch that fixes this problem is as
follows (http://coccinelle.lip6.fr):

// <smpl>
@@
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>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/xilinx/xilinx-vipp.c

index 7b7cb9c28d2cf2708bee7be1110a0cf0648b6469..b9bf24fefa5a6aee0c068cc1ab684062819c6a16 100644 (file)
@@ -476,8 +476,10 @@ static int xvip_graph_dma_init(struct xvip_composite_device *xdev)
 
        for_each_child_of_node(ports, port) {
                ret = xvip_graph_dma_init_one(xdev, port);
-               if (ret < 0)
+               if (ret < 0) {
+                       of_node_put(port);
                        return ret;
+               }
        }
 
        return 0;
This page took 0.028201 seconds and 5 git commands to generate.