All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/14] fix error return code
@ 2012-08-19  8:44 ` Julia Lawall
  0 siblings, 0 replies; 62+ messages in thread
From: Julia Lawall @ 2012-08-19  8:44 UTC (permalink / raw)
  To: linux-kernel; +Cc: kernel-janitors

These patches fix cases where the return code appears to be unintentially
nonnegative.

The complete semantic match that finds the problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@ok exists@
identifier f,ret,i;
expression e;
constant c;
@@

f(...) {
<+...
(
return -c@i;
|
ret = -c@i;
... when != ret = e
return ret;
|
if (ret < 0) { ... return ret; }
)
...+> }

@r exists@
identifier ret,l,ok.f;
expression e1,e2,e3;
statement S;
position p1,p2,p3;
@@

f(...) {
... when any
(
if@p1 (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret@p1 = 0
)
... when != ret = e1
    when != &ret
(
 if (<+... ret = e3 ...+>) S
|
 if (<+... &ret ...+>) S
|
if@p2(...)
 {
  ... when != ret = e2
      when forall
 return@p3 ret;
}
)
... when any
}

@bad exists@
position r.p1,r.p2;
statement S1,S2;
identifier r.ret;
expression e1;
@@

(
if@p1 (\(ret < 0\|ret != 0\)) S1
|
ret@p1 = 0
)
... when any
ret = e1
... when any
if@p2(...) S2

@bad2@
position r.p1,r.p2;
identifier r.ret;
expression e1;
statement S2;
@@

ret@p1 = 0
... when != if (...) { ... ret = e1 ... return ret; }
    when any
if@p2(...) S2


@script:python depends on !bad && !bad2@
p1 << r.p1;
p2 << r.p2;
p3 << r.p3;
@@

cocci.print_main("",p1)
cocci.print_secs("",p2)
cocci.print_secs("",p3)
// </smpl>


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

end of thread, other threads:[~2012-08-25 11:10 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-19  8:44 [PATCH 0/14] fix error return code Julia Lawall
2012-08-19  8:44 ` Julia Lawall
2012-08-19  8:44 ` [PATCH 1/14] drivers/rpmsg/virtio_rpmsg_bus.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 6/14] drivers/power/wm97xx_battery.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 5/14] drivers/power/ab8500_charger.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 4/14] drivers/power/bq27x00_battery.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 3/14] drivers/power/ab8500_fg.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 2/14] drivers/power/ab8500_btemp.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-23  1:51   ` Anton Vorontsov
2012-08-23  1:51     ` Anton Vorontsov
2012-08-19  8:44 ` [PATCH 7/14] drivers/mtd/maps/rbtx4939-flash.c: delete unneeded test Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-25 11:04   ` Artem Bityutskiy
2012-08-25 11:04     ` Artem Bityutskiy
2012-08-25 11:04     ` Artem Bityutskiy
2012-08-19  8:44 ` [PATCH 8/14] drivers/video/sunxvr2500.c: fix error return code Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-23 20:48   ` Florian Tobias Schandinat
2012-08-19  8:44 ` [PATCH 12/14] drivers/spi/spi-coldfire-qspi.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 11/14] drivers/spi/spi-orion.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 10/14] drivers/spi/spi-ep93xx.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-22 16:12   ` H Hartley Sweeten
2012-08-22 16:12     ` H Hartley Sweeten
2012-08-22 16:12     ` H Hartley Sweeten
2012-08-19  8:44 ` [PATCH 9/14] drivers/spi/spi-omap-100k.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44 ` [PATCH 13/14] drivers/mtd/ubi/build.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-25 11:10   ` Artem Bityutskiy
2012-08-25 11:10     ` Artem Bityutskiy
2012-08-25 11:10     ` Artem Bityutskiy
2012-08-19  8:44 ` [PATCH 14/14] drivers/spi/spi-s3c24xx.c: " Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-19  8:44   ` Julia Lawall
2012-08-22  9:38   ` Kukjin Kim
2012-08-22  9:38     ` Kukjin Kim
2012-08-22  9:38     ` Kukjin Kim
2012-08-22 11:40     ` Mark Brown
2012-08-22 11:40       ` Mark Brown
2012-08-22 11:40       ` Mark Brown
2012-08-22 11:42       ` Julia Lawall
2012-08-22 11:42         ` Julia Lawall
2012-08-22 11:42         ` Julia Lawall
2012-08-22 17:00         ` Mark Brown
2012-08-22 17:00           ` Mark Brown
2012-08-22 17:00           ` Mark Brown

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.