diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2012-08-25 21:57:04 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-09-10 23:46:17 +0200 |
commit | 92566e287d5211774f9466e35d7b7240532521e6 (patch) | |
tree | 121b548cc72d3e7c9a1300ec9545c9168df0eaf1 /fs/isofs/util.c | |
parent | nfsd: remove unused listener-removal interfaces (diff) | |
download | linux-92566e287d5211774f9466e35d7b7240532521e6.tar.xz linux-92566e287d5211774f9466e35d7b7240532521e6.zip |
fs/nfsd/nfs4idmap.c: adjust inconsistent IS_ERR and PTR_ERR
Change the call to PTR_ERR to access the value just tested by IS_ERR.
The semantic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@@
expression e,e1;
@@
(
if (IS_ERR(e)) { ... PTR_ERR(e) ... }
|
if (IS_ERR(e=e1)) { ... PTR_ERR(e) ... }
|
*if (IS_ERR(e))
{ ...
* PTR_ERR(e1)
... }
)
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions