diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2016-12-31 20:59:53 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2017-01-31 12:31:53 -0500 |
commit | 54bbb7d206db78a3dfd87bc8d9735cbe3ac3f938 (patch) | |
tree | 940db662527f1be3a5144f09094556cb614896c1 /fs/nfsd/nfsproc.c | |
parent | e35659f1b03c03946cae8abb6b0a9e170b574f1c (diff) | |
download | op-kernel-dev-54bbb7d206db78a3dfd87bc8d9735cbe3ac3f938.zip op-kernel-dev-54bbb7d206db78a3dfd87bc8d9735cbe3ac3f938.tar.gz |
NFSD: pass an integer for stable type to nfsd_vfs_write
After fae5096ad217 "nfsd: assume writeable exportabled filesystems have
f_sync" we no longer modify this argument.
This is just cleanup, no change in functionality.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfsproc.c')
-rw-r--r-- | fs/nfsd/nfsproc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfsd/nfsproc.c b/fs/nfsd/nfsproc.c index 010aff5..f157c7e 100644 --- a/fs/nfsd/nfsproc.c +++ b/fs/nfsd/nfsproc.c @@ -204,7 +204,6 @@ nfsd_proc_write(struct svc_rqst *rqstp, struct nfsd_writeargs *argp, struct nfsd_attrstat *resp) { __be32 nfserr; - int stable = 1; unsigned long cnt = argp->len; dprintk("nfsd: WRITE %s %d bytes at %d\n", @@ -215,7 +214,7 @@ nfsd_proc_write(struct svc_rqst *rqstp, struct nfsd_writeargs *argp, argp->offset, rqstp->rq_vec, argp->vlen, &cnt, - &stable); + NFS_DATA_SYNC); return nfsd_return_attrs(nfserr, resp); } |