SUNRPC: Remove obsolete messages during transport connect
Recent changes to the RPC client's transport connect logic make connect status values ECONNREFUSED and ECONNRESET impossible. Clean up xprt_connect_status() to account for these changes. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
48186c7d57
commit
cd983ef81b
1 changed files with 1 additions and 7 deletions
|
@ -690,7 +690,7 @@ static void xprt_connect_status(struct rpc_task *task)
|
|||
{
|
||||
struct rpc_xprt *xprt = task->tk_xprt;
|
||||
|
||||
if (task->tk_status >= 0) {
|
||||
if (task->tk_status == 0) {
|
||||
xprt->stat.connect_count++;
|
||||
xprt->stat.connect_time += (long)jiffies - xprt->stat.connect_start;
|
||||
dprintk("RPC: %5u xprt_connect_status: connection established\n",
|
||||
|
@ -699,12 +699,6 @@ static void xprt_connect_status(struct rpc_task *task)
|
|||
}
|
||||
|
||||
switch (task->tk_status) {
|
||||
case -ECONNREFUSED:
|
||||
case -ECONNRESET:
|
||||
dprintk("RPC: %5u xprt_connect_status: server %s refused "
|
||||
"connection\n", task->tk_pid,
|
||||
task->tk_client->cl_server);
|
||||
break;
|
||||
case -ENOTCONN:
|
||||
dprintk("RPC: %5u xprt_connect_status: connection broken\n",
|
||||
task->tk_pid);
|
||||
|
|
Loading…
Reference in a new issue