mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
nfs: fix compilation warning
commit 43b7c3f051 upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e91d9d0e87
commit
9aa01fe503
|
|
@ -3142,7 +3142,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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user