linux/arch/mips/txx9/generic
Julia Lawall 70ebadc8e3 MIPS: TXx9: Fix error handling.
Error handling code following a kzalloc should free the allocated data.
Error handling code following an ioremap should iounmap the allocated data.

The semantic match that finds the first problem is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@r exists@
local idexpression x;
statement S;
expression E;
identifier f,f1,l;
position p1,p2;
expression *ptr != NULL;
@@

x@p1 = \(kmalloc\|kzalloc\|kcalloc\)(...);
...
if (x == NULL) S
<... when != x
     when != if (...) { <+...x...+> }
(
x->f1 = E
|
 (x->f1 == NULL || ...)
|
 f(...,x->f1,...)
)
...>
(
 return \(0\|<+...x...+>\|ptr\);
|
 return@p2 ...;
)

@script:python@
p1 << r.p1;
p2 << r.p2;
@@

print "* file: %s kmalloc %s return %s" % (p1[0].file,p1[0].line,p2[0].line)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2009-09-17 20:07:43 +02:00
..
7segled.c MIPS: TXx9: 7 segment LED support 2008-10-27 16:18:27 +00:00
Makefile MIPS: TXx9: 7 segment LED support 2008-10-27 16:18:27 +00:00
irq_tx3927.c [MIPS] TXx9: Make tx3927-specific code more independent 2008-07-30 21:54:39 +01:00
irq_tx4927.c MIPS: TXx9: Raise priority of interrupts for errors, timers, SIO 2008-10-11 16:18:43 +01:00
irq_tx4938.c MIPS: TXx9: Raise priority of interrupts for errors, timers, SIO 2008-10-11 16:18:43 +01:00
irq_tx4939.c MIPS: TXx9: Add TX4939 SoC support 2008-10-11 16:18:49 +01:00
mem_tx4927.c MIPS: Eleminate filenames from comments 2009-08-03 17:52:40 +01:00
pci.c MIPS: TXx9: Disable PM capability of TX493[89] internal ether 2009-09-17 20:07:43 +02:00
setup.c MIPS: TXx9: Fix error handling. 2009-09-17 20:07:43 +02:00
setup_tx3927.c MIPS: TXx9: Add mtd support 2008-10-11 16:18:42 +01:00
setup_tx4927.c MIPS: TXx9: Add ACLC support 2009-06-17 11:06:25 +01:00
setup_tx4938.c MIPS: TXx9: Add SRAMC support 2009-06-17 11:06:27 +01:00
setup_tx4939.c MIPS: TXx9: Add TX4939 RNG support 2009-06-17 11:06:27 +01:00
smsc_fdc37m81x.c [MIPS] TXx9: Random cleanup 2008-07-30 21:54:40 +01:00
spi_eeprom.c MIPS: TXx9: Make spi_eeprom.c more generic 2008-10-11 16:18:44 +01:00