diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2016-12-31 21:00:13 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2017-01-31 12:31:53 -0500 |
commit | 52e380e049d28732ec280c1e8840c9eddc716adb (patch) | |
tree | 02af89280217116da44bfab7c6060d46a62e2df0 /fs/nfsd/nfs3proc.c | |
parent | 54bbb7d206db78a3dfd87bc8d9735cbe3ac3f938 (diff) | |
download | linux-52e380e049d28732ec280c1e8840c9eddc716adb.tar.gz linux-52e380e049d28732ec280c1e8840c9eddc716adb.tar.bz2 linux-52e380e049d28732ec280c1e8840c9eddc716adb.zip |
NFSD: cleanup dead codes and values in nfsd_write
This is just cleanup, no change in functionality.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs3proc.c')
-rw-r--r-- | fs/nfsd/nfs3proc.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/nfsd/nfs3proc.c b/fs/nfsd/nfs3proc.c index 69cd0f1e26ff..045c9081eabe 100644 --- a/fs/nfsd/nfs3proc.c +++ b/fs/nfsd/nfs3proc.c @@ -193,11 +193,9 @@ nfsd3_proc_write(struct svc_rqst *rqstp, struct nfsd3_writeargs *argp, fh_copy(&resp->fh, &argp->fh); resp->committed = argp->stable; - nfserr = nfsd_write(rqstp, &resp->fh, NULL, - argp->offset, - rqstp->rq_vec, argp->vlen, - &cnt, - resp->committed); + nfserr = nfsd_write(rqstp, &resp->fh, argp->offset, + rqstp->rq_vec, argp->vlen, + &cnt, resp->committed); resp->count = cnt; RETURN_STATUS(nfserr); } |