diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/nfs4proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index d1ed67145cf3..b07d4e23b876 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c | |||
@@ -3262,7 +3262,7 @@ static int buf_to_pages_noslab(const void *buf, size_t buflen, | |||
3262 | spages = pages; | 3262 | spages = pages; |
3263 | 3263 | ||
3264 | do { | 3264 | do { |
3265 | len = min(PAGE_CACHE_SIZE, buflen); | 3265 | len = min_t(size_t, PAGE_CACHE_SIZE, buflen); |
3266 | newpage = alloc_page(GFP_KERNEL); | 3266 | newpage = alloc_page(GFP_KERNEL); |
3267 | 3267 | ||
3268 | if (newpage == NULL) | 3268 | if (newpage == NULL) |