提交 e05c4ad3 编写于 作者: Y Yan, Zheng 提交者: David S. Miller

mcast: Fix source address selection for multicast listener report

Should check use count of include mode filter instead of total number
of include mode filters.
Signed-off-by: NZheng Yan <zheng.z.yan@intel.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 814fd609
...@@ -767,7 +767,7 @@ static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs) ...@@ -767,7 +767,7 @@ static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs)
break; break;
for (i=0; i<nsrcs; i++) { for (i=0; i<nsrcs; i++) {
/* skip inactive filters */ /* skip inactive filters */
if (pmc->sfcount[MCAST_INCLUDE] || if (psf->sf_count[MCAST_INCLUDE] ||
pmc->sfcount[MCAST_EXCLUDE] != pmc->sfcount[MCAST_EXCLUDE] !=
psf->sf_count[MCAST_EXCLUDE]) psf->sf_count[MCAST_EXCLUDE])
continue; continue;
......
...@@ -1059,7 +1059,7 @@ static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs, ...@@ -1059,7 +1059,7 @@ static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs,
break; break;
for (i=0; i<nsrcs; i++) { for (i=0; i<nsrcs; i++) {
/* skip inactive filters */ /* skip inactive filters */
if (pmc->mca_sfcount[MCAST_INCLUDE] || if (psf->sf_count[MCAST_INCLUDE] ||
pmc->mca_sfcount[MCAST_EXCLUDE] != pmc->mca_sfcount[MCAST_EXCLUDE] !=
psf->sf_count[MCAST_EXCLUDE]) psf->sf_count[MCAST_EXCLUDE])
continue; continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册