diff options
author | J. Bruce Fields <bfields@redhat.com> | 2014-03-10 14:17:55 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-06 10:55:29 -0400 |
commit | 83caff8d1740d76609a9b1bc55247d17be44d85f (patch) | |
tree | ef2c79b29ad88e67833942909cba4afd9caf61a6 /fs/nfsd | |
parent | 344f3a6bce11dd3d483d7e36dce33b22427ff621 (diff) |
nfsd4: fix setclientid encode size
commit 480efaee085235bb848f1063f959bf144103c342 upstream.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfs4proc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c index e0bfacd23a8f..f7d7d04674fb 100644 --- a/fs/nfsd/nfs4proc.c +++ b/fs/nfsd/nfs4proc.c | |||
@@ -1477,7 +1477,8 @@ static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *o | |||
1477 | 1477 | ||
1478 | static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) | 1478 | static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
1479 | { | 1479 | { |
1480 | return (op_encode_hdr_size + 2 + 1024) * sizeof(__be32); | 1480 | return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) * |
1481 | sizeof(__be32); | ||
1481 | } | 1482 | } |
1482 | 1483 | ||
1483 | static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) | 1484 | static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |