diff options
author | Julia Lawall <julia@diku.dk> | 2007-12-13 23:56:16 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-12-20 06:13:51 (GMT) |
commit | 1fe58a875e4bb08125c657b1b91ac515d2bdbcbe (patch) | |
tree | af2c4d6aef0f1b7c46bc11dacb912dc932890ab8 /include/asm-ia64/current.h | |
parent | af449c330eb39ae57b139832181d0dcf3b94d806 (diff) | |
download | linux-1fe58a875e4bb08125c657b1b91ac515d2bdbcbe.tar.xz |
[POWERPC] cell/cbe_regs.c: Add missing of_node_put
There should be an of_node_put when breaking out of a loop that iterates
using for_each_node_by_type.
This was detected and fixed using the following semantic patch.
(http://www.emn.fr/x-info/coccinelle/)
// <smpl>
@@
identifier d;
type T;
expression e;
iterator for_each_node_by_type;
@@
T *d;
...
for_each_node_by_type(d,...)
{... when != of_node_put(d)
when != e = d
(
return d;
|
+ of_node_put(d);
? return ...;
)
...}
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
Cc: Christian Krafft <krafft@de.ibm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: David Erb <djerb@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ia64/current.h')
0 files changed, 0 insertions, 0 deletions