summaryrefslogtreecommitdiffstats
path: root/fs/nfsd
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2014-03-20 21:01:07 -0400
committerJ. Bruce Fields <bfields@redhat.com>2014-03-28 21:24:54 -0400
commit1bed92cb3c7663240992f4d97cbe4d21783113a0 (patch)
treeb902d60a601f548ebbd1c34d1dad1c5d13a6ed07 /fs/nfsd
parentd139977d002e34d687e2ebc1157a234d32183465 (diff)
downloadlinux-1bed92cb3c7663240992f4d97cbe4d21783113a0.tar.bz2
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')
-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 2708fae3cc27..94b7f19d2718 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;