[CRIU] [PATCH] mount: use switch_ns_by_fd() instead of open_proc() + setns()
Andrei Vagin
avagin at virtuozzo.com
Thu Mar 23 15:11:24 PDT 2017
Applied
On Tue, Mar 21, 2017 at 02:28:54AM +0300, Andrei Vagin wrote:
> From: Andrei Vagin <avagin at virtuozzo.com>
>
> This function was added recently.
>
> Signed-off-by: Andrei Vagin <avagin at virtuozzo.com>
> ---
> criu/mount.c | 15 ++-------------
> 1 file changed, 2 insertions(+), 13 deletions(-)
>
> diff --git a/criu/mount.c b/criu/mount.c
> index 6e5a4c6..339cc32 100644
> --- a/criu/mount.c
> +++ b/criu/mount.c
> @@ -2877,15 +2877,7 @@ int depopulate_roots_yard(int mntns_fd, bool only_ghosts)
> return -1;
> }
>
> - old_ns = open_proc(PROC_SELF, "ns/mnt");
> - if (old_ns < 0) {
> - pr_perror("`- Can't keep old ns");
> - close(old_cwd);
> - return -1;
> - }
> - if (setns(mntns_fd, CLONE_NEWNS) < 0) {
> - pr_perror("`- Can't switch");
> - close(old_ns);
> + if (switch_ns_by_fd(mntns_fd, &mnt_ns_desc, &old_ns)) {
> close(old_cwd);
> return -1;
> }
> @@ -2896,11 +2888,8 @@ int depopulate_roots_yard(int mntns_fd, bool only_ghosts)
> if (__depopulate_roots_yard())
> ret = -1;
>
> - if (setns(old_ns, CLONE_NEWNS) < 0) {
> - pr_perror("Fail to switch back!");
> + if (restore_ns(old_ns, &mnt_ns_desc))
> ret = -1;
> - }
> - close(old_ns);
>
> if (fchdir(old_cwd)) {
> pr_perror("Unable to restore cwd");
> --
> 2.7.4
>
More information about the CRIU
mailing list