[lxc-devel] [PATCH] Add LXC_TARGET env to Japanese lxc.container.conf(5)

2015-12-03 Thread KATOH Yasufumi
Update for commit c154af9 Signed-off-by: KATOH Yasufumi --- doc/ja/lxc.container.conf.sgml.in | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/doc/ja/lxc.container.conf.sgml.in b/doc/ja/lxc.container.conf.sgml.in index

[lxc-devel] [PATCH] doc: Add lxc.monitor.unshare to lxc.container.conf(5)

2015-12-03 Thread KATOH Yasufumi
Update for commit a8dfe4e and 6039eaa Signed-off-by: KATOH Yasufumi --- doc/ja/lxc.container.conf.sgml.in | 16 1 file changed, 16 insertions(+) diff --git a/doc/ja/lxc.container.conf.sgml.in b/doc/ja/lxc.container.conf.sgml.in index b7e2a6c..e830e25

Re: [lxc-devel] [PATCH] seccomp: support 32-bit arm on arm64, and 32-bit ppc on ppc64

2015-12-03 Thread Christian Brauner
On Wed, Dec 02, 2015 at 10:42:36PM +, Serge Hallyn wrote: > Generally we enforce that a [arch] seccomp section can only be used on [arch]. > However, on amd64 we allow [i386] sections for i386 containers, and there we > also take [all] sections and apply them for both 32- and 64-bit. > > Do

Re: [lxc-devel] Snappy Install Instructions

2015-12-03 Thread Matthew Williams
I thought I'd offer a pr to the website docs to mention this: https://github.com/lxc/linuxcontainers.org/pull/128 On Wed, Dec 2, 2015 at 4:28 AM, Stéphane Graber wrote: > Hi, > > I'd expect a mix of both. The CPU does get hammered for a while (shows > 100% for LXD) but I'd

[lxc-devel] [PATCH] doc: Add Japanese manpage for lxc-copy

2015-12-03 Thread KATOH Yasufumi
Signed-off-by: KATOH Yasufumi --- configure.ac| 1 + doc/ja/Makefile.am | 1 + doc/ja/lxc-copy.sgml.in | 345 3 files changed, 347 insertions(+) create mode 100644 doc/ja/lxc-copy.sgml.in diff --git

Re: [lxc-devel] [PATCH] seccomp: support 32-bit arm on arm64, and 32-bit ppc on ppc64

2015-12-03 Thread Serge Hallyn
Quoting Christian Brauner (christian.brau...@mailbox.org): > On Wed, Dec 02, 2015 at 10:42:36PM +, Serge Hallyn wrote: > > Generally we enforce that a [arch] seccomp section can only be used on > > [arch]. > > However, on amd64 we allow [i386] sections for i386 containers, and there we > >

Re: [lxc-devel] [PATCH] Add LXC_TARGET env to Japanese lxc.container.conf(5)

2015-12-03 Thread Stéphane Graber
On Thu, Dec 03, 2015 at 06:55:57PM +0900, KATOH Yasufumi wrote: > Update for commit c154af9 > > Signed-off-by: KATOH Yasufumi Acked-by: Stéphane Graber > --- > doc/ja/lxc.container.conf.sgml.in | 18 +- > 1 file changed, 17

Re: [lxc-devel] [PATCH] doc: Add lxc.monitor.unshare to lxc.container.conf(5)

2015-12-03 Thread Stéphane Graber
On Thu, Dec 03, 2015 at 08:48:18PM +0900, KATOH Yasufumi wrote: > Update for commit a8dfe4e and 6039eaa > > Signed-off-by: KATOH Yasufumi Acked-by: Stéphane Graber > --- > doc/ja/lxc.container.conf.sgml.in | 16 > 1 file changed,

[lxc-devel] [lxc/lxc] ca3995: Conditional compilation for ARM and PPC

2015-12-03 Thread GitHub
Branch: refs/heads/master Home: https://github.com/lxc/lxc Commit: ca3995947f654c39e6942e9b5325c0633993342a https://github.com/lxc/lxc/commit/ca3995947f654c39e6942e9b5325c0633993342a Author: Christian Brauner Date: 2015-12-03 (Thu, 03 Dec 2015)

[lxc-devel] [PATCH] Conditional compilation for ARM and PPC

2015-12-03 Thread Christian Brauner
Check if symbols SCMP_ARCH_ARM and SCMP_ARCH_PPC are defined. Signed-off-by: Christian Brauner --- src/lxc/seccomp.c | 4 1 file changed, 4 insertions(+) diff --git a/src/lxc/seccomp.c b/src/lxc/seccomp.c index c5f1885..5982cb4 100644 --- a/src/lxc/seccomp.c

[lxc-devel] [PATCH] Conditional compilation for ARM and PPC

2015-12-03 Thread Christian Brauner
Before commit 29753076fddfed772511c67887bed1f0621b32cf libseccomp does not define the symbol SCMP_ARCH_PPC. Just for safety also add conditional compilation instructions for SCMP_ARCH_ARM. Christian Brauner (1): Conditional compilation for ARM and PPC src/lxc/seccomp.c | 4 1 file

Re: [lxc-devel] [PATCH] Conditional compilation for ARM and PPC

2015-12-03 Thread Serge Hallyn
Quoting Christian Brauner (christian.brau...@mailbox.org): > Check if symbols SCMP_ARCH_ARM and SCMP_ARCH_PPC are defined. > > Signed-off-by: Christian Brauner Acked-by: Serge E. Hallyn > --- > src/lxc/seccomp.c | 4 > 1 file