mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-15 04:09:46 +00:00
start: log setns() failure
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
This commit is contained in:
parent
8f3e3c131b
commit
c0b48eff17
@ -1486,8 +1486,16 @@ static inline int do_share_ns(void *arg)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
ret = setns(handler->nsfd[i], 0);
|
ret = setns(handler->nsfd[i], 0);
|
||||||
if (ret < 0)
|
if (ret < 0) {
|
||||||
|
/*
|
||||||
|
* Note that joining a user and/or mount namespace
|
||||||
|
* requires the process is not multithreaded otherwise
|
||||||
|
* setns() will fail here.
|
||||||
|
*/
|
||||||
|
SYSERROR("Failed to inherit %s namespace",
|
||||||
|
ns_info[i].proc_name);
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
DEBUG("Inherited %s namespace", ns_info[i].proc_name);
|
DEBUG("Inherited %s namespace", ns_info[i].proc_name);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user