Re: [Devel] [PATCH 0/2] spfs: update to work with CRIU v3

2017-06-09 Thread Dmitry Safonov
On 06/09/2017 04:44 PM, Stanislav Kinsburskiy wrote: SPFS doesn't work with CRIU v3. This patch set fixes the issue on the CRIU side. The following series implements... --- Stanislav Kinsburskiy (2): spfs: pass both "mountpoint" and "ns_mountpoint" paths to manager spfs: fix

Re: [Devel] [PATCH 0/2] spfs: update to work with CRIU v3

2017-06-09 Thread Stanislav Kinsburskiy
https://jira.sw.ru/browse/PSBM-66943 09.06.2017 15:44, Stanislav Kinsburskiy пишет: SPFS doesn't work with CRIU v3. This patch set fixes the issue on the CRIU side. The following series implements... --- Stanislav Kinsburskiy (2): spfs: pass both "mountpoint" and "ns_mountpoint"

[Devel] [PATCH 0/2] spfs: update to work with CRIU v3

2017-06-09 Thread Stanislav Kinsburskiy
SPFS doesn't work with CRIU v3. This patch set fixes the issue on the CRIU side. The following series implements... --- Stanislav Kinsburskiy (2): spfs: pass both "mountpoint" and "ns_mountpoint" paths to manager spfs: fix usage of mi->ns_mountpoint criu/files-reg.c |6 +++---

[Devel] [PATCH 1/2] spfs: pass both "mountpoint" and "ns_mountpoint" paths to manager

2017-06-09 Thread Stanislav Kinsburskiy
Now, these two paths are different even for root mount namespace. The first one (mountpoint) is the path, where the mount has to be mounted to restore it. The second one (ns_mountpoint) is the path, where mount will be located _within__ container, and, thus, this pass has to be used to place real

[Devel] [PATCH 2/2] spfs: fix usage of mi->ns_mountpoint

2017-06-09 Thread Stanislav Kinsburskiy
Previously this path had slash at the end. Now it doesn't have. Update usage then. Signed-off-by: Stanislav Kinsburskiy --- criu/files-reg.c |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/criu/files-reg.c b/criu/files-reg.c index

[Devel] [PATCH] fuse: allow to mount if process is in init_user_ns

2017-06-09 Thread Stanislav Kinsburskiy
Regardless its current VE. https://jira.sw.ru/browse/PSBM-67185 Signed-off-by: Stanislav Kinsburskiy --- fs/fuse/inode.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 090a7ab..a8d7924 100644 ---