* [PATCH net] ipv6: mcast: fix unsolicited report interval after receiving querys
@ 2018-06-21 11:49 Hangbin Liu
2018-06-23 1:28 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Hangbin Liu @ 2018-06-21 11:49 UTC (permalink / raw)
To: netdev
Cc: Hannes Frederic Sowa, Cong Wang, YOSHIFUJI Hideaki, David Miller,
Hangbin Liu
After recieving MLD querys, we update idev->mc_maxdelay with max_delay
from query header. This make the later unsolicited reports have the same
interval with mc_maxdelay, which means we may send unsolicited reports with
long interval time instead of default configured interval time.
Also as we will not call ipv6_mc_reset() after device up. This issue will
be there even after leave the group and join other groups.
Fixes: fc4eba58b4c14 ("ipv6: make unsolicited report intervals configurable for mld")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
---
net/ipv6/mcast.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c
index 975021d..c0c7408 100644
--- a/net/ipv6/mcast.c
+++ b/net/ipv6/mcast.c
@@ -2082,7 +2082,8 @@ void ipv6_mc_dad_complete(struct inet6_dev *idev)
mld_send_initial_cr(idev);
idev->mc_dad_count--;
if (idev->mc_dad_count)
- mld_dad_start_timer(idev, idev->mc_maxdelay);
+ mld_dad_start_timer(idev,
+ unsolicited_report_interval(idev));
}
}
@@ -2094,7 +2095,8 @@ static void mld_dad_timer_expire(struct timer_list *t)
if (idev->mc_dad_count) {
idev->mc_dad_count--;
if (idev->mc_dad_count)
- mld_dad_start_timer(idev, idev->mc_maxdelay);
+ mld_dad_start_timer(idev,
+ unsolicited_report_interval(idev));
}
in6_dev_put(idev);
}
@@ -2452,7 +2454,8 @@ static void mld_ifc_timer_expire(struct timer_list *t)
if (idev->mc_ifc_count) {
idev->mc_ifc_count--;
if (idev->mc_ifc_count)
- mld_ifc_start_timer(idev, idev->mc_maxdelay);
+ mld_ifc_start_timer(idev,
+ unsolicited_report_interval(idev));
}
in6_dev_put(idev);
}
--
2.5.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH net] ipv6: mcast: fix unsolicited report interval after receiving querys
2018-06-21 11:49 [PATCH net] ipv6: mcast: fix unsolicited report interval after receiving querys Hangbin Liu
@ 2018-06-23 1:28 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2018-06-23 1:28 UTC (permalink / raw)
To: liuhangbin; +Cc: netdev, hannes, xiyou.wangcong, yoshfuji
From: Hangbin Liu <liuhangbin@gmail.com>
Date: Thu, 21 Jun 2018 19:49:36 +0800
> After recieving MLD querys, we update idev->mc_maxdelay with max_delay
> from query header. This make the later unsolicited reports have the same
> interval with mc_maxdelay, which means we may send unsolicited reports with
> long interval time instead of default configured interval time.
>
> Also as we will not call ipv6_mc_reset() after device up. This issue will
> be there even after leave the group and join other groups.
>
> Fixes: fc4eba58b4c14 ("ipv6: make unsolicited report intervals configurable for mld")
> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Applied and queued up for -stable, thank you.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-06-23 1:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-21 11:49 [PATCH net] ipv6: mcast: fix unsolicited report interval after receiving querys Hangbin Liu
2018-06-23 1:28 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox