]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
nfs: fix compilation warning
authorJovi Zhang <bookjovi@gmail.com>
Wed, 2 Mar 2011 23:19:37 +0000 (23:19 +0000)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Thu, 10 Mar 2011 20:04:56 +0000 (15:04 -0500)
this commit fix compilation warning as following:
linux-2.6/fs/nfs/nfs4proc.c:3265: warning: comparison of distinct pointer types lacks a cast

Signed-off-by: Jovi Zhang <bookjovi@gmail.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4proc.c

index d1ed67145cf3ea2603fcac1c2794306e96ce9cf7..b07d4e23b8760b1612e69d3a13b5dad62a493a66 100644 (file)
@@ -3262,7 +3262,7 @@ static int buf_to_pages_noslab(const void *buf, size_t buflen,
        spages = pages;
 
        do {
-               len = min(PAGE_CACHE_SIZE, buflen);
+               len = min_t(size_t, PAGE_CACHE_SIZE, buflen);
                newpage = alloc_page(GFP_KERNEL);
 
                if (newpage == NULL)