netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] igmp: allow IPPROTO_IGMP sockets in netns
@ 2008-09-08  0:38 Alexey Dobriyan
  0 siblings, 0 replies; 5+ messages in thread
From: Alexey Dobriyan @ 2008-09-08  0:38 UTC (permalink / raw)
  To: davem; +Cc: netdev, containters

Looks like everything is already ready.

Required for ebtables(8) for one thing.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 net/ipv4/af_inet.c |    1 +
 1 file changed, 1 insertion(+)

--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -1310,6 +1310,7 @@ EXPORT_SYMBOL_GPL(snmp_mib_free);
 #ifdef CONFIG_IP_MULTICAST
 static struct net_protocol igmp_protocol = {
 	.handler =	igmp_rcv,
+	.netns_ok =	1,
 };
 #endif
 


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

* [PATCH] igmp: allow IPPROTO_IGMP sockets in netns
@ 2008-09-08  1:29 Alexey Dobriyan
  2008-12-16 15:45 ` Benjamin Thery
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Dobriyan @ 2008-09-08  1:29 UTC (permalink / raw)
  To: davem; +Cc: netdev, containers

Looks like everything is already ready.

Required for ebtables(8) for one thing.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 net/ipv4/af_inet.c |    1 +
 1 file changed, 1 insertion(+)

--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -1310,6 +1310,7 @@ EXPORT_SYMBOL_GPL(snmp_mib_free);
 #ifdef CONFIG_IP_MULTICAST
 static struct net_protocol igmp_protocol = {
 	.handler =	igmp_rcv,
+	.netns_ok =	1,
 };
 #endif
 


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

* Re: [PATCH] igmp: allow IPPROTO_IGMP sockets in netns
  2008-09-08  1:29 [PATCH] igmp: allow IPPROTO_IGMP sockets in netns Alexey Dobriyan
@ 2008-12-16 15:45 ` Benjamin Thery
  2008-12-16 23:44   ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Benjamin Thery @ 2008-12-16 15:45 UTC (permalink / raw)
  To: David Miller, Alexey Dobriyan; +Cc: netdev

Hi,

I was wondering what happened to this patch to support igmp socket 
per-netns sent by Alexey in September?

It looks like it has never been merged in net-next-2.6?

There's also this other patch sent at the same time by Alexey to make 
igmp proc entries per-netns that was "lost":

http://thread.gmane.org/gmane.linux.network/105226

Thanks,
Benjamin



Alexey Dobriyan wrote:
> Looks like everything is already ready.
> 
> Required for ebtables(8) for one thing.
> 
> Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
> ---
> 
>  net/ipv4/af_inet.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> --- a/net/ipv4/af_inet.c
> +++ b/net/ipv4/af_inet.c
> @@ -1310,6 +1310,7 @@ EXPORT_SYMBOL_GPL(snmp_mib_free);
>  #ifdef CONFIG_IP_MULTICAST
>  static struct net_protocol igmp_protocol = {
>  	.handler =	igmp_rcv,
> +	.netns_ok =	1,
>  };
>  #endif
>  
> 
> _______________________________________________
> Containers mailing list
> Containers@lists.linux-foundation.org
> https://lists.linux-foundation.org/mailman/listinfo/containers
> 
> 


-- 
B e n j a m i n   T h e r y  - BULL/DT/Open Software R&D

    http://www.bull.com

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

* Re: [PATCH] igmp: allow IPPROTO_IGMP sockets in netns
  2008-12-16 15:45 ` Benjamin Thery
@ 2008-12-16 23:44   ` David Miller
  2008-12-17  8:48     ` Benjamin Thery
  0 siblings, 1 reply; 5+ messages in thread
From: David Miller @ 2008-12-16 23:44 UTC (permalink / raw)
  To: benjamin.thery; +Cc: adobriyan, netdev

From: Benjamin Thery <benjamin.thery@bull.net>
Date: Tue, 16 Dec 2008 16:45:13 +0100

> I was wondering what happened to this patch to support igmp socket per-netns sent by Alexey in September?
> 
> It looks like it has never been merged in net-next-2.6?
> 
> There's also this other patch sent at the same time by Alexey to make igmp proc entries per-netns that was "lost":
> 
> http://thread.gmane.org/gmane.linux.network/105226

Please make a formal resubmission if I've missed something.

That way there is no confusion about what patch I should
be adding.

Thanks.

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

* Re: [PATCH] igmp: allow IPPROTO_IGMP sockets in netns
  2008-12-16 23:44   ` David Miller
@ 2008-12-17  8:48     ` Benjamin Thery
  0 siblings, 0 replies; 5+ messages in thread
From: Benjamin Thery @ 2008-12-17  8:48 UTC (permalink / raw)
  To: David Miller, adobriyan; +Cc: netdev

David Miller wrote:
> From: Benjamin Thery <benjamin.thery@bull.net>
> Date: Tue, 16 Dec 2008 16:45:13 +0100
> 
>> I was wondering what happened to this patch to support igmp socket per-netns sent by Alexey in September?
>>
>> It looks like it has never been merged in net-next-2.6?
>>
>> There's also this other patch sent at the same time by Alexey to make igmp proc entries per-netns that was "lost":
>>
>> http://thread.gmane.org/gmane.linux.network/105226
> 
> Please make a formal resubmission if I've missed something.
> 
> That way there is no confusion about what patch I should
> be adding.

Sure.

Alexey, will you resend these patches for IGMP?
Or do you mind if I resend them for you?

Benjamin




> 
> Thanks.
> 
> 


-- 
B e n j a m i n   T h e r y  - BULL/DT/Open Software R&D

    http://www.bull.com

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

end of thread, other threads:[~2008-12-17  8:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-08  1:29 [PATCH] igmp: allow IPPROTO_IGMP sockets in netns Alexey Dobriyan
2008-12-16 15:45 ` Benjamin Thery
2008-12-16 23:44   ` David Miller
2008-12-17  8:48     ` Benjamin Thery
  -- strict thread matches above, loose matches on Subject: below --
2008-09-08  0:38 Alexey Dobriyan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).