提交 54bcfa66 编写于 作者: G Geyslan G. Bem 提交者: Trond Myklebust

nfs: Use PTR_ERR_OR_ZERO in 'nfs41_callback_up' function

Use 'PTR_ERR_OR_ZERO()' rather than 'IS_ERR(...) ? PTR_ERR(...) : 0'.
Signed-off-by: NGeyslan G. Bem <geyslan@gmail.com>
Signed-off-by: NTrond Myklebust <Trond.Myklebust@netapp.com>
上级 4f5829d7
...@@ -164,8 +164,7 @@ nfs41_callback_up(struct svc_serv *serv) ...@@ -164,8 +164,7 @@ nfs41_callback_up(struct svc_serv *serv)
svc_xprt_put(serv->sv_bc_xprt); svc_xprt_put(serv->sv_bc_xprt);
serv->sv_bc_xprt = NULL; serv->sv_bc_xprt = NULL;
} }
dprintk("--> %s return %ld\n", __func__, dprintk("--> %s return %d\n", __func__, PTR_ERR_OR_ZERO(rqstp));
IS_ERR(rqstp) ? PTR_ERR(rqstp) : 0);
return rqstp; return rqstp;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册