diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2016-12-31 15:59:53 +0300 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2017-01-31 20:31:53 +0300 |
commit | 54bbb7d206db78a3dfd87bc8d9735cbe3ac3f938 (patch) | |
tree | 940db662527f1be3a5144f09094556cb614896c1 /fs/nfsd/nfs4xdr.c | |
parent | e35659f1b03c03946cae8abb6b0a9e170b574f1c (diff) | |
download | linux-54bbb7d206db78a3dfd87bc8d9735cbe3ac3f938.tar.xz |
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/nfs4xdr.c')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 8fae53ce21d1..93eba39d57c4 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -1250,7 +1250,7 @@ nfsd4_decode_write(struct nfsd4_compoundargs *argp, struct nfsd4_write *write) READ_BUF(16); p = xdr_decode_hyper(p, &write->wr_offset); write->wr_stable_how = be32_to_cpup(p++); - if (write->wr_stable_how > 2) + if (write->wr_stable_how > NFS_FILE_SYNC) goto xdr_error; write->wr_buflen = be32_to_cpup(p++); |