[Devel] [PATCH] mount: allow any types of NFS mount for a while

Stanislav Kinsburskiy skinsbursky at virtuozzo.com
Wed Jul 19 15:53:53 MSK 2017


Current check for unsupported mounts is obviously broken. So, skip it for a
while.

https://jira.sw.ru/browse/PSBM-68708

Signed-off-by: Stanislav Kinsburskiy <skinsbursky at virtuozzo.com>
---
 criu/mount.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/criu/mount.c b/criu/mount.c
index 7ed5d6e..2ec94b3 100644
--- a/criu/mount.c
+++ b/criu/mount.c
@@ -786,6 +786,8 @@ static bool unsupported_nfs_bindmounts(const struct mount_info *m)
 
 static bool unsupported_nfs_mount(const struct mount_info *m)
 {
+	return false;
+
 	switch (m->nsid->type) {
 		case NS_ROOT:
 			if (m->flags & MS_SHARED)



More information about the Devel mailing list