Commit 5694a4f8 authored by Anna Schumaker's avatar Anna Schumaker Committed by Trond Myklebust

NFS: Clean up nfs4_callback_layoutrecall()

In addition to removing the dprintk(), this patch also initializes "res"
to the default return value instead of doing this through an else
condition.
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 1a916ce0
...@@ -325,16 +325,10 @@ static u32 do_callback_layoutrecall(struct nfs_client *clp, ...@@ -325,16 +325,10 @@ static u32 do_callback_layoutrecall(struct nfs_client *clp,
__be32 nfs4_callback_layoutrecall(struct cb_layoutrecallargs *args, __be32 nfs4_callback_layoutrecall(struct cb_layoutrecallargs *args,
void *dummy, struct cb_process_state *cps) void *dummy, struct cb_process_state *cps)
{ {
u32 res; u32 res = NFS4ERR_OP_NOT_IN_SESSION;
dprintk("%s: -->\n", __func__);
if (cps->clp) if (cps->clp)
res = do_callback_layoutrecall(cps->clp, args); res = do_callback_layoutrecall(cps->clp, args);
else
res = NFS4ERR_OP_NOT_IN_SESSION;
dprintk("%s: exit with status = %d\n", __func__, res);
return cpu_to_be32(res); return cpu_to_be32(res);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment