sunrpc: Remove dead "else" branch from bc xprt creation
Since the xprt in question is forcibly set to be bound the else branch of this check is unneeded. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Reviewed-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
committed by
J. Bruce Fields
parent
c636b572e0
commit
50fa0d40a9
@@ -2366,15 +2366,10 @@ static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
|
|||||||
goto out_err;
|
goto out_err;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xprt_bound(xprt))
|
|
||||||
dprintk("RPC: set up xprt to %s (port %s) via %s\n",
|
dprintk("RPC: set up xprt to %s (port %s) via %s\n",
|
||||||
xprt->address_strings[RPC_DISPLAY_ADDR],
|
xprt->address_strings[RPC_DISPLAY_ADDR],
|
||||||
xprt->address_strings[RPC_DISPLAY_PORT],
|
xprt->address_strings[RPC_DISPLAY_PORT],
|
||||||
xprt->address_strings[RPC_DISPLAY_PROTO]);
|
xprt->address_strings[RPC_DISPLAY_PROTO]);
|
||||||
else
|
|
||||||
dprintk("RPC: set up xprt to %s (autobind) via %s\n",
|
|
||||||
xprt->address_strings[RPC_DISPLAY_ADDR],
|
|
||||||
xprt->address_strings[RPC_DISPLAY_PROTO]);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Since we don't want connections for the backchannel, we set
|
* Since we don't want connections for the backchannel, we set
|
||||||
|
Reference in New Issue
Block a user