projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b53c47d
)
ipv6 mcast: Use ipv6_addr_equal() in ip6_mc_source().
author
YOSHIFUJI Hideaki / 吉藤英明
<yoshfuji@linux-ipv6.org>
Tue, 29 Jan 2013 12:48:23 +0000
(12:48 +0000)
committer
David S. Miller
<davem@davemloft.net>
Wed, 30 Jan 2013 03:58:40 +0000
(22:58 -0500)
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/mcast.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv6/mcast.c
b/net/ipv6/mcast.c
index f25002aaf624dd4bca40e7303930bc773e2132f5..8460a1f54a76fc8a59c37b3d3bb8ca665a13f73e 100644
(file)
--- a/
net/ipv6/mcast.c
+++ b/
net/ipv6/mcast.c
@@
-376,8
+376,7
@@
int ip6_mc_source(int add, int omode, struct sock *sk,
goto done; /* err = -EADDRNOTAVAIL */
rv = !0;
for (i=0; i<psl->sl_count; i++) {
- rv = memcmp(&psl->sl_addr[i], source,
- sizeof(struct in6_addr));
+ rv = !ipv6_addr_equal(&psl->sl_addr[i], source);
if (rv == 0)
break;
}
@@
-427,7
+426,7
@@
int ip6_mc_source(int add, int omode, struct sock *sk,
}
rv = 1; /* > 0 for insert logic below if sl_count is 0 */
for (i=0; i<psl->sl_count; i++) {
- rv =
memcmp(&psl->sl_addr[i], source, sizeof(struct in6_addr)
);
+ rv =
!ipv6_addr_equal(&psl->sl_addr[i], source
);
if (rv == 0)
break;
}