Skip to content

Commit

Permalink
nfs: Use PTR_ERR_OR_ZERO in 'nfs41_callback_up' function
Browse files Browse the repository at this point in the history
Use 'PTR_ERR_OR_ZERO()' rather than 'IS_ERR(...) ? PTR_ERR(...) : 0'.

Signed-off-by: Geyslan G. Bem <geyslan@gmail.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
  • Loading branch information
Geyslan G. Bem authored and Trond Myklebust committed Oct 28, 2013
1 parent 4f5829d commit 54bcfa6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fs/nfs/callback.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,7 @@ nfs41_callback_up(struct svc_serv *serv)
svc_xprt_put(serv->sv_bc_xprt);
serv->sv_bc_xprt = NULL;
}
dprintk("--> %s return %ld\n", __func__,
IS_ERR(rqstp) ? PTR_ERR(rqstp) : 0);
dprintk("--> %s return %d\n", __func__, PTR_ERR_OR_ZERO(rqstp));
return rqstp;
}

Expand Down

0 comments on commit 54bcfa6

Please sign in to comment.