[lxc-devel] [PATCH 2/3] gitignore: add Korean man page output

2015-09-11 Thread Tycho Andersen
Signed-off-by: Tycho Andersen --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 35d89f2..9c60c92 100644 --- a/.gitignore +++ b/.gitignore @@ -135,6 +135,9 @@ doc/ja/*.5 doc/ja/*.7 doc/ja/legacy/*.1 doc/legacy/*.1 +doc/ko/*.1 +doc/ko/*.5 +doc/ko

[lxc-devel] [PATCH 3/3] gitignore: add strange lxc@.service file

2015-09-11 Thread Tycho Andersen
I have no idea what this file is, but the build system seems to be generating it, so let's ignore it. Signed-off-by: Tycho Andersen --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 9c60c92..5ec52c5 100644 --- a/.gitignore +++ b/.gitignore @@ -122,6

[lxc-devel] [PATCH 1/3] lxc-checkconfig: add some more config options

2015-09-11 Thread Tycho Andersen
Here's some more config options that we do actually require to be able to boot containers. Signed-off-by: Tycho Andersen --- src/lxc/lxc-checkconfig.in | 19 +++ 1 file changed, 19 insertions(+) diff --git a/src/lxc/lxc-checkconfig.in b/src/lxc/lxc-checkconfig.in index a4c3ecb..

Re: [lxc-devel] [PATCH] Ensure that mmap()ed memory is \0-terminated (v3)

2015-09-11 Thread Serge Hallyn
Quoting Christian Brauner (christianvanbrau...@gmail.com): > Use pwrite() to write terminating \0-byte > > This allows us to use standard string handling functions and we can avoid > using > the GNU-extension memmem(). This simplifies removing the container from the > lxc_snapshots file. Wrap str