[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130726163239.GE3890@order.stressinduktion.org>
Date: Fri, 26 Jul 2013 18:32:39 +0200
From: Hannes Frederic Sowa <hannes@...essinduktion.org>
To: William Manley <william.manley@...view.com>
Cc: netdev@...r.kernel.org, bcrl@...ck.org, luky-37@...mail.com,
sergei.shtylyov@...entembedded.com, bhutchings@...arflare.com,
davem@...emloft.net
Subject: Re: [PATCH 1/2] net: igmp: Reduce Unsolicited report interval to 1s when using IGMPv3
On Thu, Jul 25, 2013 at 01:14:04PM +0100, William Manley wrote:
> If an IGMP join packet is lost you will not receive data sent to the
> multicast group so if no data arrives from that multicast group in a
> period of time after the IGMP join a second IGMP join will be sent. The
> delay between joins is the "IGMP Unsolicited Report Interval".
>
> Previously this value was hard coded to be chosen randomly between 0-10s.
> This can be too long for some use-cases, such as IPTV as it can cause
> channel change to be slow in the presence of packet loss.
>
> The value 10s has come from IGMPv2 RFC2236, which was reduced to 1s in
> IGMPv3 RFC3376. This patch makes the kernel use the 1s value from the
> later RFC if we are operating in IGMPv3 mode. IGMPv2 behaviour is
> unaffected.
>
> Tested with Wireshark and a simple program to join a (non-existent)
> multicast group. The distribution of timings for the second join differ
> based upon setting /proc/sys/net/ipv4/conf/eth0/force_igmp_version.
>
> Signed-off-by: William Manley <william.manley@...view.com>
> ---
> net/ipv4/igmp.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
> index d8c2327..12ffc2b 100644
> --- a/net/ipv4/igmp.c
> +++ b/net/ipv4/igmp.c
> @@ -113,7 +113,8 @@
>
> #define IGMP_V1_Router_Present_Timeout (400*HZ)
> #define IGMP_V2_Router_Present_Timeout (400*HZ)
> -#define IGMP_Unsolicited_Report_Interval (10*HZ)
> +#define IGMP_V2_Unsolicited_Report_Interval (10*HZ)
> +#define IGMP_V3_Unsolicited_Report_Interval (1*HZ)
> #define IGMP_Query_Response_Interval (10*HZ)
> #define IGMP_Unsolicited_Report_Count 2
>
> @@ -138,6 +139,14 @@
> ((in_dev)->mr_v2_seen && \
> time_before(jiffies, (in_dev)->mr_v2_seen)))
>
> +static int unsolicited_report_interval(struct in_device *in_dev)
> +{
> + if (IGMP_V2_SEEN(in_dev))
> + return IGMP_V2_Unsolicited_Report_Interval;
> + else /* v3 */
> + return IGMP_V3_Unsolicited_Report_Interval;
> +}
if (IGMP_V1_SEEN(in_dev) || IGMP_V2_SEEN(in_dev))
Otherwise I am fine with it.
Thanks,
Hannes
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists