diff options
author | 2014-11-22 15:39:17 +0100 | |
---|---|---|
committer | 2014-11-23 14:29:44 -0500 | |
commit | 73112f9b08ddb32c5cdaccda61bd88dfe9baf8b2 (patch) | |
tree | b1cb5a0b72c812f0096c4164d41ddf290bd3555c /tools/perf/scripts/python/call-graph-from-postgresql.py | |
parent | igb: Fixes needed for surprise removal support (diff) | |
download | wireguard-linux-73112f9b08ddb32c5cdaccda61bd88dfe9baf8b2.tar.xz wireguard-linux-73112f9b08ddb32c5cdaccda61bd88dfe9baf8b2.zip |
solos-pci: fix error return code
Return a negative error code on failure.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
{ ... return ret; }
|
ret = 0
)
... when != ret = e1
when != &ret
*if(...)
{
... when != ret = e2
when forall
return ret;
}
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/perf/scripts/python/call-graph-from-postgresql.py')
0 files changed, 0 insertions, 0 deletions