summaryrefslogtreecommitdiffstats
path: root/fs/nfs/callback_xdr.c
diff options
context:
space:
mode:
authorJeff Layton2016-09-18 00:17:31 +0200
committerAnna Schumaker2016-09-22 19:56:04 +0200
commitb60475c9401bf89a2b14918fca0a220a15867ace (patch)
tree1e6c33c784c1e2fde43c60041bcc56d5f7561d3b /fs/nfs/callback_xdr.c
parentnfs: cover ->migratepage with CONFIG_MIGRATION (diff)
downloadkernel-qcow2-linux-b60475c9401bf89a2b14918fca0a220a15867ace.tar.gz
kernel-qcow2-linux-b60475c9401bf89a2b14918fca0a220a15867ace.tar.xz
kernel-qcow2-linux-b60475c9401bf89a2b14918fca0a220a15867ace.zip
nfs: the length argument to read_buf should be unsigned
Since it gets passed through to xdr_inline_decode, we might as well have read_buf expect what it expects -- a size_t. Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'fs/nfs/callback_xdr.c')
-rw-r--r--fs/nfs/callback_xdr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/callback_xdr.c b/fs/nfs/callback_xdr.c
index 656f68f7fe53..a710825f3d61 100644
--- a/fs/nfs/callback_xdr.c
+++ b/fs/nfs/callback_xdr.c
@@ -72,7 +72,7 @@ static int nfs4_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
return xdr_ressize_check(rqstp, p);
}
-static __be32 *read_buf(struct xdr_stream *xdr, int nbytes)
+static __be32 *read_buf(struct xdr_stream *xdr, size_t nbytes)
{
__be32 *p;