mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
net: Avoid unnecessary inet_addr_type() call when addr is INADDR_ANY
We can avoid unnecessary inet_addr_type() call by check addr against INADDR_ANY first. Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0316a21116
commit
0ce779a9f5
@ -310,10 +310,10 @@ static int ping_check_bind_addr(struct sock *sk, struct inet_sock *isk,
|
|||||||
pr_debug("ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\n",
|
pr_debug("ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\n",
|
||||||
sk, &addr->sin_addr.s_addr, ntohs(addr->sin_port));
|
sk, &addr->sin_addr.s_addr, ntohs(addr->sin_port));
|
||||||
|
|
||||||
chk_addr_ret = inet_addr_type(net, addr->sin_addr.s_addr);
|
|
||||||
|
|
||||||
if (addr->sin_addr.s_addr == htonl(INADDR_ANY))
|
if (addr->sin_addr.s_addr == htonl(INADDR_ANY))
|
||||||
chk_addr_ret = RTN_LOCAL;
|
chk_addr_ret = RTN_LOCAL;
|
||||||
|
else
|
||||||
|
chk_addr_ret = inet_addr_type(net, addr->sin_addr.s_addr);
|
||||||
|
|
||||||
if ((!inet_can_nonlocal_bind(net, isk) &&
|
if ((!inet_can_nonlocal_bind(net, isk) &&
|
||||||
chk_addr_ret != RTN_LOCAL) ||
|
chk_addr_ret != RTN_LOCAL) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user