diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-05-09 00:23:28 +0200 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-05-09 23:58:00 +0200 |
commit | 6ce7dc940701cf3fde3c6e826a696b333092cbb1 (patch) | |
tree | 0894788349bae7b0d1707dcab98505b5ada8a3ef /fs | |
parent | SUNRPC: Fix pointer arithmetic bug recently introduced in rpc_malloc/free (diff) | |
download | linux-6ce7dc940701cf3fde3c6e826a696b333092cbb1.tar.xz linux-6ce7dc940701cf3fde3c6e826a696b333092cbb1.zip |
NFS: NFS client underestimates how large an NFSv4 SETATTR reply can be
The maximum size of an NFSv4 SETATTR compound reply should include the
GETATTR operation that we send.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs4xdr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfs/nfs4xdr.c b/fs/nfs/nfs4xdr.c index b8c28f2380a5..f1e2b8cdf33c 100644 --- a/fs/nfs/nfs4xdr.c +++ b/fs/nfs/nfs4xdr.c @@ -224,7 +224,8 @@ static int nfs4_stat_to_errno(int); encode_getattr_maxsz) #define NFS4_dec_setattr_sz (compound_decode_hdr_maxsz + \ decode_putfh_maxsz + \ - op_decode_hdr_maxsz + 3) + op_decode_hdr_maxsz + 3 + \ + nfs4_fattr_maxsz) #define NFS4_enc_fsinfo_sz (compound_encode_hdr_maxsz + \ encode_putfh_maxsz + \ encode_fsinfo_maxsz) |