aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorChuck Lever <chuck.lever@oracle.com>2007-09-11 18:00:03 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2007-10-09 17:16:34 -0400
commit5d34da3af923e0f950a89f160540d2506ca046ce (patch)
tree5a8352adba55039f81824dbc80a3d025a9b342b3 /net/sunrpc
parent143b6c4008a7928de7e139c3a77a90e4cad8db2c (diff)
SUNRPC: Only one dprintk is needed during client creation
Remove one of two identical dprintk's that occur when an RPC client is created. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/clnt.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 52429b1ffcc1..c796e2fd2708 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -269,9 +269,6 @@ struct rpc_clnt *rpc_create(struct rpc_create_args *args)
269 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT) 269 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
270 xprt->resvport = 0; 270 xprt->resvport = 0;
271 271
272 dprintk("RPC: creating %s client for %s (xprt %p)\n",
273 args->program->name, args->servername, xprt);
274
275 clnt = rpc_new_client(xprt, args->servername, args->program, 272 clnt = rpc_new_client(xprt, args->servername, args->program,
276 args->version, args->authflavor); 273 args->version, args->authflavor);
277 if (IS_ERR(clnt)) 274 if (IS_ERR(clnt))