sunrpc: Remove unused sock arg from xs_next_srcport
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:
parent
5d4ec93297
commit
baaf4e487a
1 changed files with 3 additions and 3 deletions
|
@ -1524,7 +1524,7 @@ static unsigned short xs_get_srcport(struct sock_xprt *transport)
|
||||||
return port;
|
return port;
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned short xs_next_srcport(struct sock_xprt *transport, struct socket *sock, unsigned short port)
|
static unsigned short xs_next_srcport(struct sock_xprt *transport, unsigned short port)
|
||||||
{
|
{
|
||||||
if (transport->srcport != 0)
|
if (transport->srcport != 0)
|
||||||
transport->srcport = 0;
|
transport->srcport = 0;
|
||||||
|
@ -1558,7 +1558,7 @@ static int xs_bind4(struct sock_xprt *transport, struct socket *sock)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
last = port;
|
last = port;
|
||||||
port = xs_next_srcport(transport, sock, port);
|
port = xs_next_srcport(transport, port);
|
||||||
if (port > last)
|
if (port > last)
|
||||||
nloop++;
|
nloop++;
|
||||||
} while (err == -EADDRINUSE && nloop != 2);
|
} while (err == -EADDRINUSE && nloop != 2);
|
||||||
|
@ -1591,7 +1591,7 @@ static int xs_bind6(struct sock_xprt *transport, struct socket *sock)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
last = port;
|
last = port;
|
||||||
port = xs_next_srcport(transport, sock, port);
|
port = xs_next_srcport(transport, port);
|
||||||
if (port > last)
|
if (port > last)
|
||||||
nloop++;
|
nloop++;
|
||||||
} while (err == -EADDRINUSE && nloop != 2);
|
} while (err == -EADDRINUSE && nloop != 2);
|
||||||
|
|
Loading…
Reference in a new issue