[IPV6]: Use ipv6_addr_equal() instead of !ipv6_addr_cmp().
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
This commit is contained in:
parent
ff4e1fb0be
commit
caad295fed
@ -2951,7 +2951,7 @@ int ipv6_chk_home_addr(struct net *net, struct in6_addr *addr)
|
|||||||
for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
|
for (ifp = inet6_addr_lst[hash]; ifp; ifp = ifp->lst_next) {
|
||||||
if (!net_eq(dev_net(ifp->idev->dev), net))
|
if (!net_eq(dev_net(ifp->idev->dev), net))
|
||||||
continue;
|
continue;
|
||||||
if (ipv6_addr_cmp(&ifp->addr, addr) == 0 &&
|
if (ipv6_addr_equal(&ifp->addr, addr) &&
|
||||||
(ifp->flags & IFA_F_HOMEADDRESS)) {
|
(ifp->flags & IFA_F_HOMEADDRESS)) {
|
||||||
ret = 1;
|
ret = 1;
|
||||||
break;
|
break;
|
||||||
|
@ -543,7 +543,7 @@ static struct tcp_md5sig_key *tcp_v6_md5_do_lookup(struct sock *sk,
|
|||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
for (i = 0; i < tp->md5sig_info->entries6; i++) {
|
for (i = 0; i < tp->md5sig_info->entries6; i++) {
|
||||||
if (ipv6_addr_cmp(&tp->md5sig_info->keys6[i].addr, addr) == 0)
|
if (ipv6_addr_equal(&tp->md5sig_info->keys6[i].addr, addr))
|
||||||
return &tp->md5sig_info->keys6[i].base;
|
return &tp->md5sig_info->keys6[i].base;
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
@ -632,7 +632,7 @@ static int tcp_v6_md5_do_del(struct sock *sk, struct in6_addr *peer)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < tp->md5sig_info->entries6; i++) {
|
for (i = 0; i < tp->md5sig_info->entries6; i++) {
|
||||||
if (ipv6_addr_cmp(&tp->md5sig_info->keys6[i].addr, peer) == 0) {
|
if (ipv6_addr_equal(&tp->md5sig_info->keys6[i].addr, peer)) {
|
||||||
/* Free the key */
|
/* Free the key */
|
||||||
kfree(tp->md5sig_info->keys6[i].base.key);
|
kfree(tp->md5sig_info->keys6[i].base.key);
|
||||||
tp->md5sig_info->entries6--;
|
tp->md5sig_info->entries6--;
|
||||||
|
Loading…
Reference in New Issue
Block a user