diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-09-12 02:00:03 +0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-10 01:16:34 +0400 |
commit | 5d34da3af923e0f950a89f160540d2506ca046ce (patch) | |
tree | 5a8352adba55039f81824dbc80a3d025a9b342b3 /net/sunrpc | |
parent | 143b6c4008a7928de7e139c3a77a90e4cad8db2c (diff) | |
download | linux-5d34da3af923e0f950a89f160540d2506ca046ce.tar.xz |
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.c | 3 |
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) if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT) xprt->resvport = 0; - dprintk("RPC: creating %s client for %s (xprt %p)\n", - args->program->name, args->servername, xprt); - clnt = rpc_new_client(xprt, args->servername, args->program, args->version, args->authflavor); if (IS_ERR(clnt)) |