diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2016-02-04 19:25:26 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-13 05:57:39 -0500 |
commit | c2bb7bc5c007b7b55087eb05409edc2014f43ca8 (patch) | |
tree | aeee4608dde580375a9c3795cdf5602d1628ea3c /net/ipv4/ping.c | |
parent | 08a965ec93ad0495802462c32b73241d658e189d (diff) | |
download | linux-c2bb7bc5c007b7b55087eb05409edc2014f43ca8.tar.bz2 |
net: mvpp2: Return correct error codes
The return value of kzalloc on failure of allocation of memory should
be -ENOMEM and not -1.
Found using Coccinelle. A simplified version of the semantic patch
used is:
//<smpl>
@@
expression *e;
position p,q;
@@
e@q = kzalloc(...);
if@p (e == NULL) {
...
return
- -1
+ -ENOMEM
;
}
//</smpl>
This function may also return -1 after calling mpp2_prs_tcam_port_map_get.
So that the function consistently returns meaningful error values on
failure, the -1 is changed to -EINVAL.
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ping.c')
0 files changed, 0 insertions, 0 deletions