]> Git Repo - linux.git/commitdiff
NFS: nfs_getaclargs.acl_len is a size_t
authorChuck Lever <[email protected]>
Wed, 11 Jul 2012 20:30:32 +0000 (16:30 -0400)
committerTrond Myklebust <[email protected]>
Mon, 16 Jul 2012 18:53:43 +0000 (14:53 -0400)
Squelch compiler warnings:

fs/nfs/nfs4proc.c: In function â€˜__nfs4_get_acl_uncached’:
fs/nfs/nfs4proc.c:3811:14: warning: comparison between signed and
unsigned integer expressions [-Wsign-compare]
fs/nfs/nfs4proc.c:3818:15: warning: comparison between signed and
unsigned integer expressions [-Wsign-compare]

Introduced by commit bf118a34 "NFSv4: include bitmap in nfsv4 get
acl data", Dec 7, 2011.

Signed-off-by: Chuck Lever <[email protected]>
Signed-off-by: Trond Myklebust <[email protected]>
fs/nfs/nfs4proc.c

index 0cb876640781349e59f1800fd506d5b88dd087a7..31369e9b5b0487be75e3150d86adc64fe1fc2c67 100644 (file)
@@ -3775,7 +3775,8 @@ static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t bu
                .rpc_argp = &args,
                .rpc_resp = &res,
        };
-       int ret = -ENOMEM, npages, i, acl_len = 0;
+       int ret = -ENOMEM, npages, i;
+       size_t acl_len = 0;
 
        npages = (buflen + PAGE_SIZE - 1) >> PAGE_SHIFT;
        /* As long as we're doing a round trip to the server anyway,
This page took 0.060375 seconds and 4 git commands to generate.