1. 15 Jul, 2016 1 commit
  2. 13 Jul, 2016 1 commit
  3. 12 Jul, 2016 2 commits
    • c/r: drop in-flight connections during CRIU dump · f1954503
      Adrian Reber authored
      Shortly after CRIU 2.3 has been released a patch has been added to skip
      in-flight TCP connections. In-flight connections are not completely
      established connections (SYN, SYN-ACK). Skipping in-flight TCP
      connections means that the client has to re-initiate the connection
      establishment.
      
      This patch stores the CRIU version detected during version check, so
      that during dump/checkpoint options can be dynamically enabled depending
      on the available CRIU version.
      
      v2:
         * use the newly introduced criu version interface
         * add an option to disable skipping in-flight connections
      Signed-off-by: 's avatarAdrian Reber <areber@redhat.com>
    • Merge pull request #1078 from brauner/2016-07-11/add_cgns · a4abe1bb
      Stéphane Graber authored
      add missing cgroup namespace to ns_info struct
  4. 11 Jul, 2016 3 commits
  5. 08 Jul, 2016 2 commits
  6. 07 Jul, 2016 1 commit
  7. 06 Jul, 2016 2 commits
  8. 02 Jul, 2016 3 commits
  9. 29 Jun, 2016 4 commits
  10. 28 Jun, 2016 4 commits
  11. 27 Jun, 2016 7 commits
  12. 24 Jun, 2016 2 commits
  13. 23 Jun, 2016 2 commits
  14. 21 Jun, 2016 2 commits
  15. 18 Jun, 2016 2 commits
  16. 13 Jun, 2016 2 commits
    • Merge pull request #1047 from brauner/mips_container · f6578a7b
      Stéphane Graber authored
      lxc-debian: allow to specify a binfmt interpreter
    • lxc-debian: allow to specify a binfmt interpreter · d50cebd6
      Laurent Vivier authored
      If you specify an interpreter path with "-I" or "--interpreter-path",
      the architecture of the debian container can differ from the one of
      the host.
      
      Before creating the container, binfmt must be configured on the host:
      the script checks the name of the interpreter in /proc/sys/fs/binfmt_misc/
      to know where to install it in the container.
      
      To create a MIPS container on an x86_64 host:
      
      $ cat /proc/sys/fs/binfmt_misc/qemu-mips
      enabled
      interpreter //qemu-mips
      flags: OC
      offset 0
      magic 7f454c4601020100000000000000000000020008
      mask ffffffffffffff00fffffffffffffffffffeffff
      
      $ sudo lxc-create -n virtmips-stretch -t debian -- \
                       --arch=mips \
                       --interpreter-path=./mips-linux-user/qemu-mips \
                       --mirror=http://ftp.debian.org/debian \
                       --release=stretch
      Signed-off-by: 's avatarLaurent Vivier <laurent@vivier.eu>