Signed-off-by: zhangyi (F) <yi.zhang@xxxxxxxxxx> --- fsck.c | 4 ++-- mount.c | 14 ++++++-------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/fsck.c b/fsck.c index 56a5286..d7321fb 100644 --- a/fsck.c +++ b/fsck.c @@ -260,7 +260,7 @@ void fsck_status_check(int *val) int main(int argc, char *argv[]) { - bool mounted; + bool mounted = false; int err = 0; int exit_value = 0; @@ -271,7 +271,7 @@ int main(int argc, char *argv[]) /* Ensure overlay filesystem not mounted */ if ((err = ovl_check_mount(&mounted))) goto out; - if (!mounted) { + if (mounted && !(flags & FL_OPT_NO)) { set_st_abort(&status); goto out; } diff --git a/mount.c b/mount.c index 10970d5..a4bf492 100644 --- a/mount.c +++ b/mount.c @@ -280,12 +280,11 @@ static void ovl_scan_mount_exit(struct ovl_mnt_entry *ovl_mnt_entries, * Note: fsck may modify lower layers, so even match only one directory * is triggered as mounted. */ -int ovl_check_mount(bool *pass) +int ovl_check_mount(bool *mounted) { struct ovl_mnt_entry *ovl_mnt_entries = NULL; int ovl_mnt_entry_count = 0; char *mounted_path = NULL; - bool mounted = false; int i,j,k; int ret; @@ -301,7 +300,7 @@ int ovl_check_mount(bool *pass) if (!strcmp(lowerdir[k], ovl_mnt_entries[i].lowerdir[j])) { mounted_path = lowerdir[k]; - mounted = true; + *mounted = true; goto out; } } @@ -310,23 +309,22 @@ int ovl_check_mount(bool *pass) /* Check upper */ if (!(strcmp(upperdir, ovl_mnt_entries[i].upperdir))) { mounted_path = upperdir; - mounted = true; + *mounted = true; goto out; } /* Check worker */ if (workdir[0] != '\0' && !(strcmp(workdir, ovl_mnt_entries[i].workdir))) { mounted_path = workdir; - mounted = true; + *mounted = true; goto out; } } out: ovl_scan_mount_exit(ovl_mnt_entries, ovl_mnt_entry_count); - if (mounted) - print_info(_("Dir %s is mounted\n"), mounted_path); - *pass = !mounted; + if (*mounted) + print_info(_("WARNING: Dir %s is mounted\n"), mounted_path); return 0; } -- 2.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-unionfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html