All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: MLD problems (again) [PATCH]
@ 2004-01-12  5:49 David Stevens
  2004-01-12 11:04 ` Takashi Hibi
  2004-01-14  0:15 ` David S. Miller
  0 siblings, 2 replies; 7+ messages in thread
From: David Stevens @ 2004-01-12  5:49 UTC (permalink / raw)
  To: Takashi Hibi; +Cc: netdev, davem


[-- Attachment #1.1: Type: text/plain, Size: 1927 bytes --]





Takashi,
      I believe the patch below will fix the problem you
had with MCAST_JOIN_SOURCE_GROUP not sending a
report. There was a typo in the source filter switching that did
two deletes, rather than an delete and an add.

Dave,
      Although IGMPv3 didn't have any problems, this patch
also re-arranges the order of the filter changes. I think it's cleaner
to add the new one first and then delete the old one, rather than
having a small window with no filter set. So, this is a bug fix for MLD
and a code clean-up for IGMPv3.
      This bug and patch should also apply to the 2.4 line.

                        +-DLS

[included in-line for viewing and as an attachment for unmangled
      whitespace]

--- linux-2.6.1/net/ipv6/mcast.c    2004-01-08 22:59:56.000000000 -0800
+++ linux-2.6.1F1/net/ipv6/mcast.c  2004-01-11 21:06:05.000000000 -0800
@@ -372,9 +372,9 @@
                  goto done;
      } else if (pmc->sfmode != omode) {
            /* allow mode switches for empty-set filters */
+           ip6_mc_add_src(idev, group, omode, 0, 0, 0);
            ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
            pmc->sfmode = omode;
-           ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
      }

      psl = pmc->sflist;
--- linux-2.6.1/net/ipv4/igmp.c     2004-01-08 23:00:12.000000000 -0800
+++ linux-2.6.1F1/net/ipv4/igmp.c   2004-01-11 21:27:41.000000000 -0800
@@ -1749,11 +1749,10 @@
                  goto done;
      } else if (pmc->sfmode != omode) {
            /* allow mode switches for empty-set filters */
+           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0, 0);
            ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
                  0, 0);
            pmc->sfmode = omode;
-           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
-                 0, 0);
      }

      psl = pmc->sflist;

(See attached file: 2.6.1MLD.patch)

[-- Attachment #1.2: Type: text/html, Size: 1994 bytes --]

[-- Attachment #2: 2.6.1MLD.patch --]
[-- Type: application/octet-stream, Size: 1003 bytes --]

--- linux-2.6.1/net/ipv6/mcast.c	2004-01-08 22:59:56.000000000 -0800
+++ linux-2.6.1F1/net/ipv6/mcast.c	2004-01-11 21:06:05.000000000 -0800
@@ -372,9 +372,9 @@
 			goto done;
 	} else if (pmc->sfmode != omode) {
 		/* allow mode switches for empty-set filters */
+		ip6_mc_add_src(idev, group, omode, 0, 0, 0);
 		ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
 		pmc->sfmode = omode;
-		ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
 	}
 
 	psl = pmc->sflist;
--- linux-2.6.1/net/ipv4/igmp.c	2004-01-08 23:00:12.000000000 -0800
+++ linux-2.6.1F1/net/ipv4/igmp.c	2004-01-11 21:27:41.000000000 -0800
@@ -1749,11 +1749,10 @@
 			goto done;
 	} else if (pmc->sfmode != omode) {
 		/* allow mode switches for empty-set filters */
+		ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0, 0);
 		ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0, 
 			0, 0);
 		pmc->sfmode = omode;
-		ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0, 
-			0, 0);
 	}
 
 	psl = pmc->sflist;

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: MLD problems (again) [PATCH]
  2004-01-12  5:49 MLD problems (again) [PATCH] David Stevens
@ 2004-01-12 11:04 ` Takashi Hibi
  2004-01-14  0:15 ` David S. Miller
  1 sibling, 0 replies; 7+ messages in thread
From: Takashi Hibi @ 2004-01-12 11:04 UTC (permalink / raw)
  To: David Stevens; +Cc: netdev, davem

David,

Thank you for the patch.
But at least it doesn't solve the problem for 2.4 line kernel.
I will also test with 2.6.1 later.

Regards,
Takashi Hibi

> 
> 
> 
> 
> Takashi,
>       I believe the patch below will fix the problem you
> had with MCAST_JOIN_SOURCE_GROUP not sending a
> report. There was a typo in the source filter switching that did
> two deletes, rather than an delete and an add.
> 
> Dave,
>       Although IGMPv3 didn't have any problems, this patch
> also re-arranges the order of the filter changes. I think it's cleaner
> to add the new one first and then delete the old one, rather than
> having a small window with no filter set. So, this is a bug fix for MLD
> and a code clean-up for IGMPv3.
>       This bug and patch should also apply to the 2.4 line.
> 
>                         +-DLS
> 
> [included in-line for viewing and as an attachment for unmangled
>       whitespace]
> 
> --- linux-2.6.1/net/ipv6/mcast.c    2004-01-08 22:59:56.000000000 -0800
> +++ linux-2.6.1F1/net/ipv6/mcast.c  2004-01-11 21:06:05.000000000 -0800
> @@ -372,9 +372,9 @@
>                   goto done;
>       } else if (pmc->sfmode != omode) {
>             /* allow mode switches for empty-set filters */
> +           ip6_mc_add_src(idev, group, omode, 0, 0, 0);
>             ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>             pmc->sfmode = omode;
> -           ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>       }
> 
>       psl = pmc->sflist;
> --- linux-2.6.1/net/ipv4/igmp.c     2004-01-08 23:00:12.000000000 -0800
> +++ linux-2.6.1F1/net/ipv4/igmp.c   2004-01-11 21:27:41.000000000 -0800
> @@ -1749,11 +1749,10 @@
>                   goto done;
>       } else if (pmc->sfmode != omode) {
>             /* allow mode switches for empty-set filters */
> +           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0, 0);
>             ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
>                   0, 0);
>             pmc->sfmode = omode;
> -           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
> -                 0, 0);
>       }
> 
>       psl = pmc->sflist;
> 
> (See attached file: 2.6.1MLD.patch)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: MLD problems (again) [PATCH]
  2004-01-12  5:49 MLD problems (again) [PATCH] David Stevens
  2004-01-12 11:04 ` Takashi Hibi
@ 2004-01-14  0:15 ` David S. Miller
  1 sibling, 0 replies; 7+ messages in thread
From: David S. Miller @ 2004-01-14  0:15 UTC (permalink / raw)
  To: David Stevens; +Cc: hibi665, netdev

On Sun, 11 Jan 2004 22:49:08 -0700
David Stevens <dlstevens@us.ibm.com> wrote:

>       Although IGMPv3 didn't have any problems, this patch
> also re-arranges the order of the filter changes. I think it's cleaner
> to add the new one first and then delete the old one, rather than
> having a small window with no filter set. So, this is a bug fix for MLD
> and a code clean-up for IGMPv3.
>       This bug and patch should also apply to the 2.4 line.

Applied, thank you David.

Also, arigato Takashi-san for the bug report and testing.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: MLD problems (again) [PATCH]
@ 2004-01-13  8:07 David Stevens
  0 siblings, 0 replies; 7+ messages in thread
From: David Stevens @ 2004-01-13  8:07 UTC (permalink / raw)
  To: Takashi Hibi; +Cc: netdev, davem

[-- Attachment #1: Type: text/plain, Size: 3590 bytes --]





Takashi,
Great! I actually built it for 2.4.24 myself and was about to ask for
more information, since it worked for me.

                        +-DLS


Takashi Hibi <hibi665@oki.com> on 01/12/2004 11:59:41 PM

To:    David Stevens/Beaverton/IBM@IBMUS
cc:    netdev@oss.sgi.com, davem@redhat.com
Subject:    Re: MLD problems (again) [PATCH]



David,

Good news.
I found a mistake which I made when I built the kernel.
After fixing it, the problem is solved and the Linux box can join
multicast group at once.
The patch is OK.

Thank you.

Takashi Hibi

> David,
>
> The patch is very simple and I have no problem to apply it to 2.4 line
kernel.
> I already applied this patch, but it didn't solve the problem.
>
> Regards,
> Takashi Hibi
>
>>
>>
>>
>>
>> Takashi,
>>       The patch I sent was for 2.6.1, but it should also apply to
>> 2.4 line kernels and fix the problem. If you have problems getting
>> it to apply in 2.4, let me know what version and I can provide you
>> a patch specific for that kernel.
>>
>>                               +-DLS
>>
>>
>> Takashi Hibi <hibi665@oki.com> on 01/12/2004 03:04:48 AM
>>
>> To:    David Stevens/Beaverton/IBM@IBMUS
>> cc:    netdev@oss.sgi.com, davem@redhat.com
>> Subject:    Re: MLD problems (again) [PATCH]
>>
>>
>>
>> David,
>>
>> Thank you for the patch.
>> But at least it doesn't solve the problem for 2.4 line kernel.
>> I will also test with 2.6.1 later.
>>
>> Regards,
>> Takashi Hibi
>>
>>>
>>>
>>>
>>>
>>> Takashi,
>>>       I believe the patch below will fix the problem you
>>> had with MCAST_JOIN_SOURCE_GROUP not sending a
>>> report. There was a typo in the source filter switching that did
>>> two deletes, rather than an delete and an add.
>>>
>>> Dave,
>>>       Although IGMPv3 didn't have any problems, this patch
>>> also re-arranges the order of the filter changes. I think it's cleaner
>>> to add the new one first and then delete the old one, rather than
>>> having a small window with no filter set. So, this is a bug fix for MLD
>>> and a code clean-up for IGMPv3.
>>>       This bug and patch should also apply to the 2.4 line.
>>>
>>>                         +-DLS
>>>
>>> [included in-line for viewing and as an attachment for unmangled
>>>       whitespace]
>>>
>>> --- linux-2.6.1/net/ipv6/mcast.c    2004-01-08 22:59:56.000000000 -0800
>>> +++ linux-2.6.1F1/net/ipv6/mcast.c  2004-01-11 21:06:05.000000000 -0800
>>> @@ -372,9 +372,9 @@
>>>                   goto done;
>>>       } else if (pmc->sfmode != omode) {
>>>             /* allow mode switches for empty-set filters */
>>> +           ip6_mc_add_src(idev, group, omode, 0, 0, 0);
>>>             ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>>>             pmc->sfmode = omode;
>>> -           ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>>>       }
>>>
>>>       psl = pmc->sflist;
>>> --- linux-2.6.1/net/ipv4/igmp.c     2004-01-08 23:00:12.000000000 -0800
>>> +++ linux-2.6.1F1/net/ipv4/igmp.c   2004-01-11 21:27:41.000000000 -0800
>>> @@ -1749,11 +1749,10 @@
>>>                   goto done;
>>>       } else if (pmc->sfmode != omode) {
>>>             /* allow mode switches for empty-set filters */
>>> +           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0,
0);
>>>             ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode,
0,
>>>                   0, 0);
>>>             pmc->sfmode = omode;
>>> -           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode,
0,
>>> -                 0, 0);
>>>       }
>>>
>>>       psl = pmc->sflist;
>>>
>>> (See attached file: 2.6.1MLD.patch)
>>
>>


[-- Attachment #2: Type: text/html, Size: 5838 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: MLD problems (again) [PATCH]
  2004-01-13  5:40 ` Takashi Hibi
@ 2004-01-13  7:59   ` Takashi Hibi
  0 siblings, 0 replies; 7+ messages in thread
From: Takashi Hibi @ 2004-01-13  7:59 UTC (permalink / raw)
  To: David Stevens; +Cc: netdev, davem

David,

Good news.
I found a mistake which I made when I built the kernel.
After fixing it, the problem is solved and the Linux box can join
multicast group at once.
The patch is OK.

Thank you.

Takashi Hibi

> David,
> 
> The patch is very simple and I have no problem to apply it to 2.4 line kernel.
> I already applied this patch, but it didn't solve the problem.
> 
> Regards,
> Takashi Hibi
> 
>> 
>> 
>> 
>> 
>> Takashi,
>>       The patch I sent was for 2.6.1, but it should also apply to
>> 2.4 line kernels and fix the problem. If you have problems getting
>> it to apply in 2.4, let me know what version and I can provide you
>> a patch specific for that kernel.
>> 
>>                               +-DLS
>> 
>> 
>> Takashi Hibi <hibi665@oki.com> on 01/12/2004 03:04:48 AM
>> 
>> To:    David Stevens/Beaverton/IBM@IBMUS
>> cc:    netdev@oss.sgi.com, davem@redhat.com
>> Subject:    Re: MLD problems (again) [PATCH]
>> 
>> 
>> 
>> David,
>> 
>> Thank you for the patch.
>> But at least it doesn't solve the problem for 2.4 line kernel.
>> I will also test with 2.6.1 later.
>> 
>> Regards,
>> Takashi Hibi
>> 
>>>
>>>
>>>
>>>
>>> Takashi,
>>>       I believe the patch below will fix the problem you
>>> had with MCAST_JOIN_SOURCE_GROUP not sending a
>>> report. There was a typo in the source filter switching that did
>>> two deletes, rather than an delete and an add.
>>>
>>> Dave,
>>>       Although IGMPv3 didn't have any problems, this patch
>>> also re-arranges the order of the filter changes. I think it's cleaner
>>> to add the new one first and then delete the old one, rather than
>>> having a small window with no filter set. So, this is a bug fix for MLD
>>> and a code clean-up for IGMPv3.
>>>       This bug and patch should also apply to the 2.4 line.
>>>
>>>                         +-DLS
>>>
>>> [included in-line for viewing and as an attachment for unmangled
>>>       whitespace]
>>>
>>> --- linux-2.6.1/net/ipv6/mcast.c    2004-01-08 22:59:56.000000000 -0800
>>> +++ linux-2.6.1F1/net/ipv6/mcast.c  2004-01-11 21:06:05.000000000 -0800
>>> @@ -372,9 +372,9 @@
>>>                   goto done;
>>>       } else if (pmc->sfmode != omode) {
>>>             /* allow mode switches for empty-set filters */
>>> +           ip6_mc_add_src(idev, group, omode, 0, 0, 0);
>>>             ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>>>             pmc->sfmode = omode;
>>> -           ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>>>       }
>>>
>>>       psl = pmc->sflist;
>>> --- linux-2.6.1/net/ipv4/igmp.c     2004-01-08 23:00:12.000000000 -0800
>>> +++ linux-2.6.1F1/net/ipv4/igmp.c   2004-01-11 21:27:41.000000000 -0800
>>> @@ -1749,11 +1749,10 @@
>>>                   goto done;
>>>       } else if (pmc->sfmode != omode) {
>>>             /* allow mode switches for empty-set filters */
>>> +           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0, 0);
>>>             ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
>>>                   0, 0);
>>>             pmc->sfmode = omode;
>>> -           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
>>> -                 0, 0);
>>>       }
>>>
>>>       psl = pmc->sflist;
>>>
>>> (See attached file: 2.6.1MLD.patch)
>> 
>> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: MLD problems (again) [PATCH]
  2004-01-12 18:54 David Stevens
@ 2004-01-13  5:40 ` Takashi Hibi
  2004-01-13  7:59   ` Takashi Hibi
  0 siblings, 1 reply; 7+ messages in thread
From: Takashi Hibi @ 2004-01-13  5:40 UTC (permalink / raw)
  To: David Stevens; +Cc: netdev, davem

David,

The patch is very simple and I have no problem to apply it to 2.4 line kernel.
I already applied this patch, but it didn't solve the problem.

Regards,
Takashi Hibi

> 
> 
> 
> 
> Takashi,
>       The patch I sent was for 2.6.1, but it should also apply to
> 2.4 line kernels and fix the problem. If you have problems getting
> it to apply in 2.4, let me know what version and I can provide you
> a patch specific for that kernel.
> 
>                               +-DLS
> 
> 
> Takashi Hibi <hibi665@oki.com> on 01/12/2004 03:04:48 AM
> 
> To:    David Stevens/Beaverton/IBM@IBMUS
> cc:    netdev@oss.sgi.com, davem@redhat.com
> Subject:    Re: MLD problems (again) [PATCH]
> 
> 
> 
> David,
> 
> Thank you for the patch.
> But at least it doesn't solve the problem for 2.4 line kernel.
> I will also test with 2.6.1 later.
> 
> Regards,
> Takashi Hibi
> 
>>
>>
>>
>>
>> Takashi,
>>       I believe the patch below will fix the problem you
>> had with MCAST_JOIN_SOURCE_GROUP not sending a
>> report. There was a typo in the source filter switching that did
>> two deletes, rather than an delete and an add.
>>
>> Dave,
>>       Although IGMPv3 didn't have any problems, this patch
>> also re-arranges the order of the filter changes. I think it's cleaner
>> to add the new one first and then delete the old one, rather than
>> having a small window with no filter set. So, this is a bug fix for MLD
>> and a code clean-up for IGMPv3.
>>       This bug and patch should also apply to the 2.4 line.
>>
>>                         +-DLS
>>
>> [included in-line for viewing and as an attachment for unmangled
>>       whitespace]
>>
>> --- linux-2.6.1/net/ipv6/mcast.c    2004-01-08 22:59:56.000000000 -0800
>> +++ linux-2.6.1F1/net/ipv6/mcast.c  2004-01-11 21:06:05.000000000 -0800
>> @@ -372,9 +372,9 @@
>>                   goto done;
>>       } else if (pmc->sfmode != omode) {
>>             /* allow mode switches for empty-set filters */
>> +           ip6_mc_add_src(idev, group, omode, 0, 0, 0);
>>             ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>>             pmc->sfmode = omode;
>> -           ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>>       }
>>
>>       psl = pmc->sflist;
>> --- linux-2.6.1/net/ipv4/igmp.c     2004-01-08 23:00:12.000000000 -0800
>> +++ linux-2.6.1F1/net/ipv4/igmp.c   2004-01-11 21:27:41.000000000 -0800
>> @@ -1749,11 +1749,10 @@
>>                   goto done;
>>       } else if (pmc->sfmode != omode) {
>>             /* allow mode switches for empty-set filters */
>> +           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0, 0);
>>             ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
>>                   0, 0);
>>             pmc->sfmode = omode;
>> -           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
>> -                 0, 0);
>>       }
>>
>>       psl = pmc->sflist;
>>
>> (See attached file: 2.6.1MLD.patch)
> 
> 
> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: MLD problems (again) [PATCH]
@ 2004-01-12 18:54 David Stevens
  2004-01-13  5:40 ` Takashi Hibi
  0 siblings, 1 reply; 7+ messages in thread
From: David Stevens @ 2004-01-12 18:54 UTC (permalink / raw)
  To: Takashi Hibi; +Cc: netdev, davem

[-- Attachment #1: Type: text/plain, Size: 2658 bytes --]





Takashi,
      The patch I sent was for 2.6.1, but it should also apply to
2.4 line kernels and fix the problem. If you have problems getting
it to apply in 2.4, let me know what version and I can provide you
a patch specific for that kernel.

                              +-DLS


Takashi Hibi <hibi665@oki.com> on 01/12/2004 03:04:48 AM

To:    David Stevens/Beaverton/IBM@IBMUS
cc:    netdev@oss.sgi.com, davem@redhat.com
Subject:    Re: MLD problems (again) [PATCH]



David,

Thank you for the patch.
But at least it doesn't solve the problem for 2.4 line kernel.
I will also test with 2.6.1 later.

Regards,
Takashi Hibi

>
>
>
>
> Takashi,
>       I believe the patch below will fix the problem you
> had with MCAST_JOIN_SOURCE_GROUP not sending a
> report. There was a typo in the source filter switching that did
> two deletes, rather than an delete and an add.
>
> Dave,
>       Although IGMPv3 didn't have any problems, this patch
> also re-arranges the order of the filter changes. I think it's cleaner
> to add the new one first and then delete the old one, rather than
> having a small window with no filter set. So, this is a bug fix for MLD
> and a code clean-up for IGMPv3.
>       This bug and patch should also apply to the 2.4 line.
>
>                         +-DLS
>
> [included in-line for viewing and as an attachment for unmangled
>       whitespace]
>
> --- linux-2.6.1/net/ipv6/mcast.c    2004-01-08 22:59:56.000000000 -0800
> +++ linux-2.6.1F1/net/ipv6/mcast.c  2004-01-11 21:06:05.000000000 -0800
> @@ -372,9 +372,9 @@
>                   goto done;
>       } else if (pmc->sfmode != omode) {
>             /* allow mode switches for empty-set filters */
> +           ip6_mc_add_src(idev, group, omode, 0, 0, 0);
>             ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>             pmc->sfmode = omode;
> -           ip6_mc_del_src(idev, group, pmc->sfmode, 0, 0, 0);
>       }
>
>       psl = pmc->sflist;
> --- linux-2.6.1/net/ipv4/igmp.c     2004-01-08 23:00:12.000000000 -0800
> +++ linux-2.6.1F1/net/ipv4/igmp.c   2004-01-11 21:27:41.000000000 -0800
> @@ -1749,11 +1749,10 @@
>                   goto done;
>       } else if (pmc->sfmode != omode) {
>             /* allow mode switches for empty-set filters */
> +           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, omode, 0, 0, 0);
>             ip_mc_del_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
>                   0, 0);
>             pmc->sfmode = omode;
> -           ip_mc_add_src(in_dev, &mreqs->imr_multiaddr, pmc->sfmode, 0,
> -                 0, 0);
>       }
>
>       psl = pmc->sflist;
>
> (See attached file: 2.6.1MLD.patch)




[-- Attachment #2: Type: text/html, Size: 4071 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2004-01-14  0:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-12  5:49 MLD problems (again) [PATCH] David Stevens
2004-01-12 11:04 ` Takashi Hibi
2004-01-14  0:15 ` David S. Miller
2004-01-12 18:54 David Stevens
2004-01-13  5:40 ` Takashi Hibi
2004-01-13  7:59   ` Takashi Hibi
2004-01-13  8:07 David Stevens

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.