Re: [lxc-devel] lxc on ia64

2011-12-05 Thread Daniel Lezcano
On 12/01/2011 05:23 PM, Vadym S. Khondar wrote: > Hello everybody. > > Not sure if I am posting on the right list with this question. > > I'm interested in project status on ia64 platform. > > The latest tar.gzs have a check within configure concerning system where > package is being built and ia6

Re: [lxc-devel] [PATCH 1/4] lxc-init: use lxc_mainloop

2011-12-05 Thread Daniel Lezcano
On 12/05/2011 12:43 PM, Greg Kurz wrote: > On Sun, 2011-12-04 at 11:33 +0100, Daniel Lezcano wrote: >> On 11/08/2011 12:49 PM, Greg Kurz wrote: >>> The goal here is to be able to multiplex several event sources in >>> lxc-init. It will be a lot easier to add I/O driven features: for >>> example, a

[lxc-devel] [PATCH] correctly install signal handler for lxc-init

2011-12-05 Thread J. Xiao
This patch is to correct the manipulation of signal masks when installing signal handlers for lxc-init. Signed-off-by: Jian Xiao Signed-off-by: Greg Kurz --- src/lxc/lxc_init.c | 22 +++--- 1 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/lxc/lxc_init.c b/s

[lxc-devel] [PATCH] remove redundant LXC_TTY_HANDLER

2011-12-05 Thread J. Xiao
All the signals (except fatal ones) are redirected to signalfd at lxc_init, so the LXC_TTY_HANDLERs are redundant. This patch removes them. Signed-off-by: Jian Xiao --- src/lxc/start.c |9 - src/lxc/utils.h | 29 ++--- 2 files changed, 2 insertions(+), 36

Re: [lxc-devel] [PATCH 1/4] lxc-init: use lxc_mainloop

2011-12-05 Thread Greg Kurz
On Sun, 2011-12-04 at 11:33 +0100, Daniel Lezcano wrote: > On 11/08/2011 12:49 PM, Greg Kurz wrote: > > The goal here is to be able to multiplex several event sources in > > lxc-init. It will be a lot easier to add I/O driven features: for > > example, a rexec-like service to start extra commands i