[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1195005939.5163.101.camel@localhost>
Date: Tue, 13 Nov 2007 18:05:39 -0800
From: Joe Perches <joe@...ches.com>
To: linux-kernel <linux-kernel@...r.kernel.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>,
"J. Bruce Fields" <bfields@...ldses.org>,
Neil Brown <neilb@...e.de>,
Networking Team <netdev@...r.kernel.org>,
Trond Myklebust <trond.myklebust@....uio.no>,
nfs@...ts.sourceforge.net
Subject: [PATCH] - [15/15] - remove defconfig ptr comparisons to 0 -
net/sunrpc
Remove defconfig ptr comparison to 0
Remove sparse warning: Using plain integer as NULL pointer
Signed-off-by: Joe Perches <joe@...ches.com>
---
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 76be83e..1600df2 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -157,7 +157,7 @@ static struct rpc_clnt * rpc_new_client(struct rpc_xprt *xprt, char *servname, s
clnt->cl_server = clnt->cl_inline_name;
if (len > sizeof(clnt->cl_inline_name)) {
char *buf = kmalloc(len, GFP_KERNEL);
- if (buf != 0)
+ if (buf)
clnt->cl_server = buf;
else
len = sizeof(clnt->cl_inline_name);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists