From 9344f7575e5ebba3a0af479b30e7e304224fa345 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Sun, 3 Jun 2001 02:21:38 +0000 Subject: [PATCH] Don't whine about already mounted filesystems when invoked with -a. --- mount.c | 15 +++++++++------ util-linux/mount.c | 15 +++++++++------ 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/mount.c b/mount.c index e40d75f79..17517fe21 100644 --- a/mount.c +++ b/mount.c @@ -120,7 +120,7 @@ static const struct mount_options mount_options[] = { static int do_mount(char *specialfile, char *dir, char *filesystemtype, long flags, void *string_flags, int useMtab, int fakeIt, - char *mtab_opts) + char *mtab_opts, int mount_all) { int status = 0; #if defined BB_FEATURE_MOUNT_LOOP @@ -149,10 +149,13 @@ do_mount(char *specialfile, char *dir, char *filesystemtype, } #endif status = mount(specialfile, dir, filesystemtype, flags, string_flags); - if (errno == EROFS) { + if (status < 0 && errno == EROFS) { error_msg("%s is write-protected, mounting read-only", specialfile); status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags); } + /* Don't whine about already mounted filesystems when mounting all. */ + if (status < 0 && errno == EBUSY && mount_all) + return TRUE; } @@ -233,7 +236,7 @@ parse_mount_options(char *options, int *flags, char *strflags) extern int mount_one(char *blockDevice, char *directory, char *filesystemType, unsigned long flags, char *string_flags, int useMtab, int fakeIt, - char *mtab_opts, int whineOnErrors) + char *mtab_opts, int whineOnErrors, int mount_all) { int status = 0; @@ -256,7 +259,7 @@ mount_one(char *blockDevice, char *directory, char *filesystemType, if (!*noauto_fstype) { status = do_mount(blockDevice, directory, filesystemType, flags | MS_MGC_VAL, string_flags, - useMtab, fakeIt, mtab_opts); + useMtab, fakeIt, mtab_opts, mount_all); if (status == TRUE) break; } @@ -264,7 +267,7 @@ mount_one(char *blockDevice, char *directory, char *filesystemType, } else { status = do_mount(blockDevice, directory, filesystemType, flags | MS_MGC_VAL, string_flags, useMtab, - fakeIt, mtab_opts); + fakeIt, mtab_opts, mount_all); } if (status == FALSE) { @@ -450,7 +453,7 @@ singlemount: } #endif if (!mount_one(device, directory, filesystemType, flags, - string_flags, useMtab, fakeIt, extra_opts, TRUE)) + string_flags, useMtab, fakeIt, extra_opts, TRUE, all)) rc = EXIT_FAILURE; if (all == FALSE) diff --git a/util-linux/mount.c b/util-linux/mount.c index e40d75f79..17517fe21 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -120,7 +120,7 @@ static const struct mount_options mount_options[] = { static int do_mount(char *specialfile, char *dir, char *filesystemtype, long flags, void *string_flags, int useMtab, int fakeIt, - char *mtab_opts) + char *mtab_opts, int mount_all) { int status = 0; #if defined BB_FEATURE_MOUNT_LOOP @@ -149,10 +149,13 @@ do_mount(char *specialfile, char *dir, char *filesystemtype, } #endif status = mount(specialfile, dir, filesystemtype, flags, string_flags); - if (errno == EROFS) { + if (status < 0 && errno == EROFS) { error_msg("%s is write-protected, mounting read-only", specialfile); status = mount(specialfile, dir, filesystemtype, flags |= MS_RDONLY, string_flags); } + /* Don't whine about already mounted filesystems when mounting all. */ + if (status < 0 && errno == EBUSY && mount_all) + return TRUE; } @@ -233,7 +236,7 @@ parse_mount_options(char *options, int *flags, char *strflags) extern int mount_one(char *blockDevice, char *directory, char *filesystemType, unsigned long flags, char *string_flags, int useMtab, int fakeIt, - char *mtab_opts, int whineOnErrors) + char *mtab_opts, int whineOnErrors, int mount_all) { int status = 0; @@ -256,7 +259,7 @@ mount_one(char *blockDevice, char *directory, char *filesystemType, if (!*noauto_fstype) { status = do_mount(blockDevice, directory, filesystemType, flags | MS_MGC_VAL, string_flags, - useMtab, fakeIt, mtab_opts); + useMtab, fakeIt, mtab_opts, mount_all); if (status == TRUE) break; } @@ -264,7 +267,7 @@ mount_one(char *blockDevice, char *directory, char *filesystemType, } else { status = do_mount(blockDevice, directory, filesystemType, flags | MS_MGC_VAL, string_flags, useMtab, - fakeIt, mtab_opts); + fakeIt, mtab_opts, mount_all); } if (status == FALSE) { @@ -450,7 +453,7 @@ singlemount: } #endif if (!mount_one(device, directory, filesystemType, flags, - string_flags, useMtab, fakeIt, extra_opts, TRUE)) + string_flags, useMtab, fakeIt, extra_opts, TRUE, all)) rc = EXIT_FAILURE; if (all == FALSE) -- 2.25.1