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 17:46:17 -0400 |
commit | 92566e287d5211774f9466e35d7b7240532521e6 (patch) | |
tree | 121b548cc72d3e7c9a1300ec9545c9168df0eaf1 | |
parent | eccf50c129686de11358093839749c83f6cae5db (diff) | |
download | linux-3.10-92566e287d5211774f9466e35d7b7240532521e6.tar.gz linux-3.10-92566e287d5211774f9466e35d7b7240532521e6.tar.bz2 linux-3.10-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>
-rw-r--r-- | fs/nfsd/nfs4idmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4idmap.c b/fs/nfsd/nfs4idmap.c index fdc91a6fc9c..11df4aca89b 100644 --- a/fs/nfsd/nfs4idmap.c +++ b/fs/nfsd/nfs4idmap.c @@ -478,7 +478,7 @@ nfsd_idmap_init(struct net *net) goto destroy_idtoname_cache; nn->nametoid_cache = cache_create_net(&nametoid_cache_template, net); if (IS_ERR(nn->nametoid_cache)) { - rv = PTR_ERR(nn->idtoname_cache); + rv = PTR_ERR(nn->nametoid_cache); goto unregister_idtoname_cache; } rv = cache_register_net(nn->nametoid_cache, net); |