All of lore.kernel.org
 help / color / mirror / Atom feed
* IPVS network namespace aware ?
@ 2010-08-06 12:57 Hans Schillstrom
  2010-08-06 13:59 ` Simon Horman
  2010-08-23 19:21 ` Daniel Lezcano
  0 siblings, 2 replies; 6+ messages in thread
From: Hans Schillstrom @ 2010-08-06 12:57 UTC (permalink / raw)
  To: netfilter-devel; +Cc: netdev

Hello
Is there any one that have made ipvs network namespace aware ?
There is an urgent need of it within Ericsson.
I could not find any trace of it in any of the normal lists.

I will start patching ipvs next week or give a helping hand to any
existing work.

Regards
Hans Schillstrom


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

* Re: IPVS network namespace aware ?
  2010-08-06 12:57 IPVS network namespace aware ? Hans Schillstrom
@ 2010-08-06 13:59 ` Simon Horman
  2010-08-23 19:21 ` Daniel Lezcano
  1 sibling, 0 replies; 6+ messages in thread
From: Simon Horman @ 2010-08-06 13:59 UTC (permalink / raw)
  To: Hans Schillstrom; +Cc: netfilter-devel, netdev, lvs-devel

[ Cced lvs-devel ]

On Fri, Aug 06, 2010 at 02:57:30PM +0200, Hans Schillstrom wrote:
> Hello
> Is there any one that have made ipvs network namespace aware ?
> There is an urgent need of it within Ericsson.
> I could not find any trace of it in any of the normal lists.
> 
> I will start patching ipvs next week or give a helping hand to any
> existing work.

Hi Hans,

I am not aware of any other work in this area.
Please send any patches here :-)


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

* Re: IPVS network namespace aware ?
  2010-08-06 12:57 IPVS network namespace aware ? Hans Schillstrom
  2010-08-06 13:59 ` Simon Horman
@ 2010-08-23 19:21 ` Daniel Lezcano
  2010-08-24  8:53   ` Hans Schillstrom
  1 sibling, 1 reply; 6+ messages in thread
From: Daniel Lezcano @ 2010-08-23 19:21 UTC (permalink / raw)
  To: Hans Schillstrom; +Cc: netfilter-devel, netdev

On 08/06/2010 02:57 PM, Hans Schillstrom wrote:
> Hello
> Is there any one that have made ipvs network namespace aware ?
> There is an urgent need of it within Ericsson.
> I could not find any trace of it in any of the normal lists.
>
> I will start patching ipvs next week or give a helping hand to any
> existing work.

Hi Hans,

do you have a patchset ready (or just a prototype) ? I will be glad to 
help you ;)

Thanks
   -- Daniel

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

* Re: IPVS network namespace aware ?
  2010-08-23 19:21 ` Daniel Lezcano
@ 2010-08-24  8:53   ` Hans Schillstrom
  2010-08-24 10:02     ` Daniel Lezcano
  0 siblings, 1 reply; 6+ messages in thread
From: Hans Schillstrom @ 2010-08-24  8:53 UTC (permalink / raw)
  To: Daniel Lezcano; +Cc: lvs-devel, netfilter-devel, netdev

Hi Daniel
The progress is good, so far I think everything is ported except for
Simon Hormans latest patch-set. 

Right now I'm struggling with NULL pointers :-)
i.e. seq_file doesn't carry any netns info.

In the example below *net will be invalid because seq->private is NULL.

static void *ip_vs_info_seq_next(struct seq_file *seq, ....) {
struct net *net = seq_file_net(seq);

single_open() seems to work, but seq_open() or seq_open_private().

As you can see I'm not ready, so help will be nice.
I'll remove some debugging stuff and send you a patch-set.

/Hans


On Mon, 2010-08-23 at 21:21 +0200, Daniel Lezcano wrote:
> On 08/06/2010 02:57 PM, Hans Schillstrom wrote:
> > Hello
> > Is there any one that have made ipvs network namespace aware ?
> > There is an urgent need of it within Ericsson.
> > I could not find any trace of it in any of the normal lists.
> >
> > I will start patching ipvs next week or give a helping hand to any
> > existing work.
> 
> Hi Hans,
> 
> do you have a patchset ready (or just a prototype) ? I will be glad to 
> help you ;)
> 
> Thanks
>    -- Daniel


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

* Re: IPVS network namespace aware ?
  2010-08-24  8:53   ` Hans Schillstrom
@ 2010-08-24 10:02     ` Daniel Lezcano
  2010-08-24 10:24       ` Hans Schillstrom
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Lezcano @ 2010-08-24 10:02 UTC (permalink / raw)
  To: Hans Schillstrom; +Cc: lvs-devel, netfilter-devel, netdev

On 08/24/2010 10:53 AM, Hans Schillstrom wrote:
> Hi Daniel
> The progress is good, so far I think everything is ported except for
> Simon Hormans latest patch-set.
>
> Right now I'm struggling with NULL pointers :-)
> i.e. seq_file doesn't carry any netns info.
>
> In the example below *net will be invalid because seq->private is NULL.
>
> static void *ip_vs_info_seq_next(struct seq_file *seq, ....) {
> struct net *net = seq_file_net(seq);
>
> single_open() seems to work, but seq_open() or seq_open_private().
>    

That sounds me familiar ... :)

> As you can see I'm not ready, so help will be nice.
> I'll remove some debugging stuff and send you a patch-set.
>    

Cool, thanks !

   -- Daniel


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

* Re: IPVS network namespace aware ?
  2010-08-24 10:02     ` Daniel Lezcano
@ 2010-08-24 10:24       ` Hans Schillstrom
  0 siblings, 0 replies; 6+ messages in thread
From: Hans Schillstrom @ 2010-08-24 10:24 UTC (permalink / raw)
  To: Daniel Lezcano; +Cc: lvs-devel, netfilter-devel, netdev


On Tue, 2010-08-24 at 12:02 +0200, Daniel Lezcano wrote:
> On 08/24/2010 10:53 AM, Hans Schillstrom wrote:
> > Hi Daniel
> > The progress is good, so far I think everything is ported except for
> > Simon Hormans latest patch-set.
> >
> > Right now I'm struggling with NULL pointers :-)
> > i.e. seq_file doesn't carry any netns info.
> >
> > In the example below *net will be invalid because seq->private is NULL.
> >
> > static void *ip_vs_info_seq_next(struct seq_file *seq, ....) {
> > struct net *net = seq_file_net(seq);
> >
> > single_open() seems to work, but seq_open() or seq_open_private().
> >    
> 
> That sounds me familiar ... :)
I have found it, local usage of seq->private.
When the admin part works, (hopefully to morrow) I will send the patch
> 
> > As you can see I'm not ready, so help will be nice.
> > I'll remove some debugging stuff and send you a patch-set.
> >    
> 
> Cool, thanks !
> 
>    -- Daniel
> 
> --

/Hans


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

end of thread, other threads:[~2010-08-24 10:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-06 12:57 IPVS network namespace aware ? Hans Schillstrom
2010-08-06 13:59 ` Simon Horman
2010-08-23 19:21 ` Daniel Lezcano
2010-08-24  8:53   ` Hans Schillstrom
2010-08-24 10:02     ` Daniel Lezcano
2010-08-24 10:24       ` Hans Schillstrom

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.