summaryrefslogtreecommitdiff
path: root/fs/nfsd/nfs4xdr.c
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2014-03-21 01:01:07 (GMT)
committerJ. Bruce Fields <bfields@redhat.com>2014-03-29 01:24:54 (GMT)
commit1bed92cb3c7663240992f4d97cbe4d21783113a0 (patch)
treeb902d60a601f548ebbd1c34d1dad1c5d13a6ed07 /fs/nfsd/nfs4xdr.c
parentd139977d002e34d687e2ebc1157a234d32183465 (diff)
downloadlinux-1bed92cb3c7663240992f4d97cbe4d21783113a0.tar.xz
nfsd4: remove redundant check from nfsd4_check_resp_size
cstate->slot and ->session are each set together in nfsd4_sequence. If one is non-NULL, so is the other. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs4xdr.c')
-rw-r--r--fs/nfsd/nfs4xdr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index 2708fae..94b7f19 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -3583,8 +3583,6 @@ __be32 nfsd4_check_resp_size(struct nfsd4_compoundres *resp, u32 pad)
return 0;
session = resp->cstate.session;
- if (session == NULL)
- return 0;
if (xb->page_len == 0) {
length = (char *)resp->p - (char *)xb->head[0].iov_base + pad;