alistair23-linux/drivers/staging/iio
Julia Lawall 542f491542 Staging: iio: introduce missing kfree
Error handling code following a kmalloc or kzalloc should free the
allocated data.

The semantic match that finds the 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>
2009-09-15 12:02:34 -07:00
..
accel Staging: iio: introduce missing kfree 2009-09-15 12:02:34 -07:00
adc Staging: IIO: max1363 add software ring buffer support using ring_sw 2009-09-15 12:02:25 -07:00
Documentation Staging: IIO: Initial documentation 2009-09-15 12:02:25 -07:00
light Staging: IIO: tsl2561 digital light sensor core support 2009-09-15 12:02:24 -07:00
trigger Staging: iio: fix duplicate dev_attr_name 2009-09-15 12:02:26 -07:00
chrdev.h Staging: IIO: core support for device registration and management 2009-09-15 12:02:24 -07:00
iio.h Staging: IIO: core support for device registration and management 2009-09-15 12:02:24 -07:00
industrialio-core.c Staging: IIO: core support for device registration and management 2009-09-15 12:02:24 -07:00
industrialio-ring.c Staging: IIO: Add generic ring buffer support to the IIO core 2009-09-15 12:02:24 -07:00
industrialio-trigger.c Staging: IIO: Trigger support added to core. 2009-09-15 12:02:25 -07:00
Kconfig Staging: IIO: Periodic timer based trigger 2009-09-15 12:02:25 -07:00
Makefile Staging: IIO: Periodic timer based trigger 2009-09-15 12:02:25 -07:00
ring_generic.h Staging: IIO: Add generic ring buffer support to the IIO core 2009-09-15 12:02:24 -07:00
ring_hw.h Staging: IIO: VTI sca3000 series accelerometer driver (spi) 2009-09-15 12:02:24 -07:00
ring_sw.c Staging: iio: Fix type warnings 2009-09-15 12:02:26 -07:00
ring_sw.h Staging: IIO: Ring buffer: Initial pass at rarely locked ring buffer 2009-09-15 12:02:25 -07:00
sysfs.h Staging: IIO: core support for device registration and management 2009-09-15 12:02:24 -07:00
TODO Staging: IIO: Add todo list for staging 2009-09-15 12:02:26 -07:00
trigger.h Staging: IIO: Trigger support added to core. 2009-09-15 12:02:25 -07:00
trigger_consumer.h Staging: IIO: Trigger support added to core. 2009-09-15 12:02:25 -07:00