|
@@ -1368,7 +1368,7 @@ static int br_multicast_ipv4_rcv(struct net_bridge *br,
|
|
return -EINVAL;
|
|
return -EINVAL;
|
|
|
|
|
|
if (iph->protocol != IPPROTO_IGMP) {
|
|
if (iph->protocol != IPPROTO_IGMP) {
|
|
- if ((iph->daddr & IGMP_LOCAL_GROUP_MASK) != IGMP_LOCAL_GROUP)
|
|
|
|
|
|
+ if (!ipv4_is_local_multicast(iph->daddr))
|
|
BR_INPUT_SKB_CB(skb)->mrouters_only = 1;
|
|
BR_INPUT_SKB_CB(skb)->mrouters_only = 1;
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|