Replace references to github.com/xemul/criu

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-08-13 12:29:08 +02:00 committed by Andrei Vagin
parent 4e84d11c1f
commit 1356a1def3
5 changed files with 5 additions and 5 deletions

View file

@ -39,7 +39,7 @@ else
$(info Note: Building without ia32 C/R, missed ia32 support in gcc)
$(info $(info) That may be related to missing gcc-multilib in your)
$(info $(info) distribution or you may have Debian with buggy toolchain)
$(info $(info) (issue https://github.com/xemul/criu/issues/315))
$(info $(info) (issue https://github.com/checkpoint-restore/criu/issues/315))
endif
endif

View file

@ -25,7 +25,7 @@
/*
* It's a workaround for a kernel bug. In the 3.19 kernel when pagemap are read
* for a few vma-s for one read call, it returns incorrect data.
* https://github.com/xemul/criu/issues/207
* https://github.com/checkpoint-restore/criu/issues/207
*/
static bool pagemap_cache_disabled;

View file

@ -293,7 +293,7 @@ static int dump_creds(struct parasite_dump_creds *args)
args->uids[3] = sys_setfsuid(-1L);
/*
* FIXME In https://github.com/xemul/criu/issues/95 it is
* FIXME In https://github.com/checkpoint-restore/criu/issues/95 it is
* been reported that only low 16 bits are set upon syscall
* on ARMv7.
*

View file

@ -5,7 +5,7 @@ setup(name = "crit",
description = "CRiu Image Tool",
author = "CRIU team",
author_email = "criu@openvz.org",
url = "https://github.com/xemul/criu",
url = "https://github.com/checkpoint-restore/criu",
package_dir = {'pycriu': 'lib/py'},
packages = ["pycriu", "pycriu.images"],
scripts = ["crit/crit"]

View file

@ -100,7 +100,7 @@ umask 0000
export SKIP_PREP=1
# The 3.19 kernel (from Ubuntu 14.04) has a bug. When /proc/PID/pagemap
# is read for a few VMAs in one read call, incorrect data is returned.
# See https://github.com/xemul/criu/issues/207
# See https://github.com/checkpoint-restore/criu/issues/207
# Kernel 4.4 (from Ubuntu 14.04.5 update) fixes this.
uname -r | grep -q ^3\.19 && export CRIU_PMC_OFF=1