Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 43b7c3f0 authored by Jovi Zhang's avatar Jovi Zhang Committed by Trond Myklebust
Browse files

nfs: fix compilation warning



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: default avatarJovi Zhang <bookjovi@gmail.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent b9f81057
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)