[lxc-devel] [PATCH] Fix reallocation calculation

2015-09-21 Thread Christian Brauner
Signed-off-by: Christian Brauner --- src/lxc/lxc_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/lxc_info.c b/src/lxc/lxc_info.c index 9f1c469..58ff619 100644 --- a/src/lxc/lxc_info.c +++ b/src/lxc/lxc_info.c @@ -53,7 +53,7 @@

[lxc-devel] [PATCH] Fix reallocation calculation

2015-09-21 Thread Christian Brauner
I'm pretty sure this is supposed to be realloc(key, (keys + 1) * sizeof(key[0])); instead of realloc(key, keys+1 * sizeof(key[0])); Christian Brauner (1): Fix reallocation calculation src/lxc/lxc_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.5.3

Re: [lxc-devel] [PATCH] doc: Update Japanese lxc-snapshot(1) for newname option

2015-09-21 Thread Stéphane Graber
On Mon, Aug 31, 2015 at 07:00:11PM +0900, KATOH Yasufumi wrote: > Update for commit dedd4f6 > > Signed-off-by: KATOH Yasufumi Acked-by: Stéphane Graber > --- > doc/ja/lxc-snapshot.sgml.in | 18 -- > 1 file changed, 8 insertions(+),

Re: [lxc-devel] [PATCH] doc: Add the common and '-s' option in lxc-destroy(1)

2015-09-21 Thread Stéphane Graber
On Fri, Aug 28, 2015 at 04:29:03PM +0900, KATOH Yasufumi wrote: > * Add the description of '-s' option > * Remove '-P' option, and add common options > * Improve Japanese translation > > Signed-off-by: KATOH Yasufumi Acked-by: Stéphane Graber > ---

Re: [lxc-devel] [PATCH] Add tests for snapshot clone dependencies

2015-09-21 Thread Stéphane Graber
On Tue, Sep 08, 2015 at 02:55:05PM +, Serge Hallyn wrote: > Test edge cases (removing first and last entries in lxc_snapshots and the very > last snapshot) and make sure original container isn't destroyed while there > are > snapshots, and is when there are none. > > Signed-off-by: Serge

[lxc-devel] [PATCH] Make ephemeral containers survive reboots

2015-09-21 Thread Christian Brauner
Signed-off-by: Christian Brauner --- src/lxc/start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/start.c b/src/lxc/start.c index 3dd1064..4e977c5 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -502,7 +502,7 @@ void

Re: [lxc-devel] lxc-start-ephemeral: passing a command

2015-09-21 Thread Serge Hallyn
Quoting Christian Brauner (christianvanbrau...@gmail.com): > On Fri, Sep 18, 2015 at 06:08:30PM +0200, Christian Brauner wrote: > > When using lxc-start-ephemeral with a command that is supposed to be run in > > the > > container: > > > > lxc-start-ephemeral -o aa /bin/sh > > > > What

Re: [lxc-devel] [PATCH for stable-1.0/stable-1.1] doc: Add the description of common options in lxc-destroy(1)

2015-09-21 Thread Stéphane Graber
On Fri, Aug 28, 2015 at 04:51:06PM +0900, KATOH Yasufumi wrote: > * Remove '-P' option, and common options (including '-P' option) > * Add long option for '-f' > * Improve Japanese translation > > Signed-off-by: KATOH Yasufumi Acked-by: Stéphane Graber

Re: [lxc-devel] [PATCH] doc: Update Korean lxc.cgroup.use in lxc.system.conf(5)

2015-09-21 Thread Stéphane Graber
On Tue, Sep 01, 2015 at 04:58:33PM +0900, Sungbae Yoo wrote: > Update for commit 2d8632d > > Signed-off-by: Sungbae Yoo Acked-by: Stéphane Graber > --- > doc/ko/lxc.system.conf.sgml.in | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-)

Re: [lxc-devel] [PATCH] doc: Add lxc.init_(uid|gid) in Korean lxc.container.conf(5)

2015-09-21 Thread Stéphane Graber
On Tue, Sep 01, 2015 at 05:45:38PM +0900, Sungbae Yoo wrote: > update for commit dbca923 > > Signed-off-by: Sungbae Yoo Acked-by: Stéphane Graber > --- > doc/ko/lxc.container.conf.sgml.in | 48 > +++ > 1 file

Re: [lxc-devel] [PATCH] doc: Update Korean lxc-snapshot(1) for newname option

2015-09-21 Thread Stéphane Graber
On Tue, Sep 01, 2015 at 07:12:57PM +0900, Sungbae Yoo wrote: > Update for commit dedd4f6 > > Signed-off-by: Sungbae Yoo Acked-by: Stéphane Graber > --- > doc/ko/lxc-snapshot.sgml.in | 14 +++--- > 1 file changed, 7 insertions(+), 7

Re: [lxc-devel] [PATCH] Add a nesting.conf which can be included to support nesting containers (v2)

2015-09-21 Thread Stéphane Graber
On Thu, Sep 03, 2015 at 08:24:06PM +, Serge Hallyn wrote: > Newer kernels have added a new restriction: if /proc or /sys on the > host has files or non-empty directories which are over-mounted, and > there is no /proc which fully visible, then it assumes there is a > "security" reason for

[lxc-devel] [PATCH] Make ephemeral containers survive reboots

2015-09-21 Thread Christian Brauner
With this patch, ephemeral containers will survive reboots Christian Brauner (1): Make ephemeral containers survive reboots src/lxc/start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.5.3 ___ lxc-devel mailing list

Re: [lxc-devel] [PATCH] Fix reallocation calculation

2015-09-21 Thread Serge Hallyn
Quoting Christian Brauner (christianvanbrau...@gmail.com): > Signed-off-by: Christian Brauner Acked-by: Serge E. Hallyn > --- > src/lxc/lxc_info.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

Re: [lxc-devel] [PATCH] doc: Add the rename option to lxc-clone(1) in Korean manual

2015-09-21 Thread Stéphane Graber
On Tue, Sep 01, 2015 at 04:56:45PM +0900, Sungbae Yoo wrote: > Update for commit 585f3c6 > > Signed-off-by: Sungbae Yoo Acked-by: Stéphane Graber > --- > doc/ko/lxc-clone.sgml.in | 18 ++ > 1 file changed, 18 insertions(+) > >

Re: [lxc-devel] [PATCH] doc: Add LXC-specific mount option in Korean lxc.container.conf(5)

2015-09-21 Thread Stéphane Graber
On Tue, Sep 01, 2015 at 05:02:50PM +0900, Sungbae Yoo wrote: > Update for commit f5b67b3 > > Signed-off-by: Sungbae Yoo Acked-by: Stéphane Graber > --- > doc/ko/lxc.container.conf.sgml.in | 10 ++ > 1 file changed, 10 insertions(+) > >

[lxc-devel] [lxc/lxc] b33233: doc: Add LXC-specific mount option in Japanese lxc...

2015-09-21 Thread GitHub
Branch: refs/heads/master Home: https://github.com/lxc/lxc Commit: b332333b435ce02b535c05efc08fb1b969b1d895 https://github.com/lxc/lxc/commit/b332333b435ce02b535c05efc08fb1b969b1d895 Author: KATOH Yasufumi Date: 2015-09-21 (Mon, 21 Sep 2015) Changed

Re: [lxc-devel] [PATCH] overlayfs_mount: create delta dir if it doesn't exist

2015-09-21 Thread Stéphane Graber
On Mon, Sep 21, 2015 at 05:09:25PM +, Serge Hallyn wrote: > (This *should* fix the lxc-test-snapshot testcase, but doesn't seem > to by itself.) > > If it doesn't exist, we may as well start with an empty one. This > is needed when creating an overlayfs snapshot. > > Signed-off-by: Serge

Re: [lxc-devel] [PATCH] Make ephemeral containers survive reboots

2015-09-21 Thread Stéphane Graber
On Mon, Sep 21, 2015 at 06:01:41PM +0200, Christian Brauner wrote: > Signed-off-by: Christian Brauner Acked-by: Stéphane Graber > --- > src/lxc/start.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/lxc/start.c

[lxc-devel] [PATCH] overlayfs_mount: create delta dir if it doesn't exist

2015-09-21 Thread Serge Hallyn
(This *should* fix the lxc-test-snapshot testcase, but doesn't seem to by itself.) If it doesn't exist, we may as well start with an empty one. This is needed when creating an overlayfs snapshot. Signed-off-by: Serge Hallyn --- src/lxc/bdev.c | 4 1 file changed,

[lxc-devel] [lxc/lxc] 3eafa2: doc: Add the description of common options in lxc-...

2015-09-21 Thread GitHub
Branch: refs/heads/stable-1.1 Home: https://github.com/lxc/lxc Commit: 3eafa2f7457bd3148849b1cf3d4b80da98b9b833 https://github.com/lxc/lxc/commit/3eafa2f7457bd3148849b1cf3d4b80da98b9b833 Author: KATOH Yasufumi Date: 2015-09-21 (Mon, 21 Sep 2015)

[lxc-devel] [lxc/lxc] d02823: Fix indentation

2015-09-21 Thread GitHub
Branch: refs/heads/master Home: https://github.com/lxc/lxc Commit: d028235de9ec7664e1c2c904c541a447a768997a https://github.com/lxc/lxc/commit/d028235de9ec7664e1c2c904c541a447a768997a Author: Stéphane Graber Date: 2015-09-21 (Mon, 21 Sep 2015) Changed

[lxc-devel] [PATCH] ovl_rsync: make sure to umount

2015-09-21 Thread Serge Hallyn
Otherwise the kernel will umount when it gets around to it, but that on lxc_destroy we may race with it and fail the rmdir of the overmounted (BUSY) rootfs. This makes lxc-test-snapshot pass for me again. Signed-off-by: Serge Hallyn --- src/lxc/bdev.c | 9 - 1

Re: [lxc-devel] [PATCH] ovl_rsync: make sure to umount

2015-09-21 Thread Stéphane Graber
On Mon, Sep 21, 2015 at 07:33:23PM +, Serge Hallyn wrote: > Otherwise the kernel will umount when it gets around to it, but > that on lxc_destroy we may race with it and fail the rmdir of > the overmounted (BUSY) rootfs. > > This makes lxc-test-snapshot pass for me again. > > Signed-off-by:

[lxc-devel] [lxc/lxc] b9d369: doc: Add LXC-specific mount option in Japanese lxc...

2015-09-21 Thread GitHub
Branch: refs/heads/stable-1.0 Home: https://github.com/lxc/lxc Commit: b9d3694d97b9be67820d329992c5e60a1924b98e https://github.com/lxc/lxc/commit/b9d3694d97b9be67820d329992c5e60a1924b98e Author: KATOH Yasufumi Date: 2015-09-21 (Mon, 21 Sep 2015)