[lxc-devel] [ lxc-Bugs-3184193 ] IPv6 default route

2011-02-16 Thread SourceForge.net
Bugs item #3184193, was opened at 2011-02-16 23:09 Message generated for change (Tracker Item Submitted) made by punjab You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=826303&aid=3184193&group_id=163076 Please note that this message will contain a full copy of the c

Re: [lxc-devel] Two process on a same namespcae with clone()

2011-02-16 Thread Maheswara Reddy C - ERS, HCL Tech
Hi, Fine,fork() always create new process, but here both the processes are different stacks. If I use foek(), it will run the same instance of ABC_stack ,rather XYZ_stack. Shall we call the clone() with out CLONE_NEW* flags, so that it will run in the same name space. See the below scenario, mu

Re: [lxc-devel] Putting man pages on website?

2011-02-16 Thread Trent W. Buck
Rob Landley writes: > #!/bin/bash > > for i in lxc-*.in > do > echo $i > OUT=$(echo $i | sed 's/\.in$//') > HTML=$(echo $i | sed 's/\.sgml\.in$/.html/') > echo "" > $OUT > echo ' href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl";?>' > >> $OUT > sed -e 's@ "

[lxc-devel] Updating the web page?

2011-02-16 Thread Rob Landley
I want to collate the kernel namespaces documentation, man pages, and add some cgroup docs under a documentation page. This involves changing the "Pages" link on the left (to which somebody added a link to html man pages dated last year that I didn't know about). How do you edit that list of link

[lxc-devel] Web site update latency?

2011-02-16 Thread Rob Landley
It would be really nice if the preview button worked. Changes don't seem to publish on the website for about 15 seconds after I hit "update". (Some sort of squid proxy?) Rob -- The ultimate all-in-one performance toolki

Re: [lxc-devel] Putting man pages on website?

2011-02-16 Thread Rob Landley
Attached is is the world's ugliest shell script to convert the *.sgml.in files to html. The doc directory hasn't got a makefile in it, so there's nothing to add an HTML output path to. If you cd in there and try to convert stuff directly (as was suggested) you have to chop out @builddir@ from the

Re: [lxc-devel] Two process on a same namespcae with clone()

2011-02-16 Thread Rob Landley
On 02/16/2011 01:25 AM, Maheswara Reddy C - ERS, HCL Tech wrote: > Hi, > > Could someone help me out, > > I want to run the two process on same name space, shall it possible > using the clone() You call clone with the CLONE_NEW* flags to create a new namespace. And then you just fork() normall

[lxc-devel] Two process on a same namespcae with clone()

2011-02-16 Thread Maheswara Reddy C - ERS, HCL Tech
Hi, Could someone help me out, I want to run the two process on same name space, shall it possible using the clone() 1. Calling Clone() inside clone() without setting CLONE_NS clone(do_clone1, stack1,CLONE_NEWNS ,&clone_arg); --> process 1 on name space 1