No description
Find a file
Kirill Tkhai 8883c8cb3a net: Make criu do not fail on recent iproute2
Since iprule commit 67a990b81126 command "ip rule del" is not working anymore:

    iproute: disallow ip rule del without parameters

    Disallow run `ip rule del` without any parameter to avoid delete any first
    rule from table.

    Signed-off-by: Andrey Jr. Melnikov <temnota.am@gmail.com>

So, criu restore fails with:

    Error (criu/net.c:1277): IP tool failed on rule delete

Fix that by explicit passing of rule's table.

v2: Use "ip rule flush" to main's and default's table rules at once.

travis-ci: success for net: Make criu do not fail on recent iproute2 (rev2)
Signed-off-by: Kirill Tkhai <ktkhai@virtuozzo.com>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
2016-11-12 11:10:43 +03:00
contrib
coredump
crit
criu net: Make criu do not fail on recent iproute2 2016-11-12 11:10:43 +03:00
Documentation
images
include/common
lib lib: add external support 2016-11-12 11:06:21 +03:00
scripts travis: Run some zdtm-s in RPC mode 2016-11-12 11:06:00 +03:00
test zdtm: Handle --external option in RPC 2016-11-12 11:06:00 +03:00
.gitignore
.mailmap
.travis.yml
COPYING
CREDITS
INSTALL.md
Makefile
Makefile.config
Makefile.install
Makefile.versions
README.md

CRIU (Checkpoint and Restore in Userspace)

An utility to checkpoint/restore tasks. Using this tool, you can freeze a running application (or part of it) and checkpoint it to a hard drive as a collection of files. You can then use the files to restore and run the application from the point it was frozen at. The distinctive feature of the CRIU project is that it is mainly implemented in user space.

The project home is at http://criu.org.

Pages worth starting with are:

A video tour on basic CRIU features

CRIU introduction

How to contribute