mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-18 00:58:31 +00:00
remove some double ;;s
Signed-off-by: Tycho Andersen <tycho.andersen@canonical.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
parent
39e3859d3d
commit
1c79933301
5 changed files with 6 additions and 6 deletions
|
|
@ -398,7 +398,7 @@ static int restore_priv_vma_content(pid_t pid)
|
|||
* Read page contents.
|
||||
*/
|
||||
while (1) {
|
||||
unsigned long off, i, nr_pages;;
|
||||
unsigned long off, i, nr_pages;
|
||||
struct iovec iov;
|
||||
|
||||
ret = pr.get_pagemap(&pr, &iov);
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ struct watch_list {
|
|||
static int dump_inotify_entry(union fdinfo_entries *e, void *arg)
|
||||
{
|
||||
struct watch_list *wd_list = (struct watch_list *) arg;
|
||||
struct inotify_wd_entry *wd_entry = (struct inotify_wd_entry *) e;;
|
||||
struct inotify_wd_entry *wd_entry = (struct inotify_wd_entry *) e;
|
||||
InotifyWdEntry *we = &wd_entry->e;
|
||||
|
||||
pr_info("wd: wd 0x%08x s_dev 0x%08x i_ino 0x%16"PRIx64" mask 0x%08x\n",
|
||||
|
|
|
|||
2
mount.c
2
mount.c
|
|
@ -817,7 +817,7 @@ static int open_mountpoint(struct mount_info *pm)
|
|||
goto out;
|
||||
}
|
||||
|
||||
return __open_mountpoint(pm, fd);;
|
||||
return __open_mountpoint(pm, fd);
|
||||
out:
|
||||
if (ns_old >= 0)
|
||||
restore_ns(ns_old, &mnt_ns_desc);
|
||||
|
|
|
|||
|
|
@ -781,7 +781,7 @@ int check_parent_local_xfer(int fd_type, int id)
|
|||
|
||||
pfd = openat(get_service_fd(IMG_FD_OFF), CR_PARENT_LINK, O_RDONLY);
|
||||
if (pfd < 0 && errno == ENOENT)
|
||||
return 0;;
|
||||
return 0;
|
||||
|
||||
snprintf(path, sizeof(path), imgset_template[fd_type].fmt, id);
|
||||
ret = fstatat(pfd, path, &st, 0);
|
||||
|
|
|
|||
|
|
@ -501,7 +501,7 @@ static int parasite_init_daemon(struct parasite_ctl *ctl, struct ns_id *net)
|
|||
args->log_level = log_get_loglevel();
|
||||
|
||||
if (prepare_tsock(ctl, pid, args, net))
|
||||
goto err;;
|
||||
goto err;
|
||||
|
||||
/* after this we can catch parasite errors in chld handler */
|
||||
if (setup_child_handler())
|
||||
|
|
@ -1175,7 +1175,7 @@ static int parasite_start_daemon(struct parasite_ctl *ctl, struct pstree_item *i
|
|||
return -1;
|
||||
|
||||
if (parasite_init_daemon(ctl, dmpi(item)->netns))
|
||||
return -1;;
|
||||
return -1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue