[prev in list] [next in list] [prev in thread] [next in thread] 

List:       busybox-cvs
Subject:    svn commit: trunk/busybox/util-linux
From:       vda () busybox ! net (vda at busybox ! net)
Date:       2008-12-10 11:39:18
Message-ID: 20081210113918.9A17E3C6DF () busybox ! net
[Download RAW message or body]

Author: vda
Date: 2008-12-10 03:39:18 -0800 (Wed, 10 Dec 2008)
New Revision: 24357

Log:
mount: make it more readable



Modified:
   trunk/busybox/util-linux/mount.c


Changeset:
Modified: trunk/busybox/util-linux/mount.c
===================================================================
--- trunk/busybox/util-linux/mount.c	2008-12-10 11:28:30 UTC (rev 24356)
+++ trunk/busybox/util-linux/mount.c	2008-12-10 11:39:18 UTC (rev 24357)
@@ -256,23 +256,22 @@
 #define verbose_mount(...) mount(__VA_ARGS__)
 #endif
 
-static int resolve_mount_spec(char **fsname)
+#if ENABLE_FEATURE_MOUNT_LABEL
+static void resolve_mount_spec(char **fsname)
 {
 	char *tmp = NULL;
 
-#if ENABLE_FEATURE_MOUNT_LABEL
 	if (!strncmp(*fsname, "UUID=", 5))
 		tmp = get_devname_from_uuid(*fsname + 5);
 	else if (!strncmp(*fsname, "LABEL=", 6))
 		tmp = get_devname_from_label(*fsname + 6);
-#endif
 
-	if (tmp) {
+	if (tmp)
 		*fsname = tmp;
-		return 1;
-	}
-	return 0;
 }
+#else
+#define resolve_mount_spec(fsname) ((void)0)
+#endif
 
 // Append mount options to string
 static void append_mount_options(char **oldopts, const char *newopts)
@@ -1798,9 +1797,7 @@
 			mtpair->mnt_dir = argv[1];
 			mtpair->mnt_type = fstype;
 			mtpair->mnt_opts = cmdopts;
-			if (ENABLE_FEATURE_MOUNT_LABEL) {
-				resolve_mount_spec(&mtpair->mnt_fsname);
-			}
+			resolve_mount_spec(&mtpair->mnt_fsname);
 			rc = singlemount(mtpair, 0);
 			return rc;
 		}
@@ -1881,12 +1878,12 @@
 			if (nonroot)
 				bb_error_msg_and_die(must_be_root);
 
-			// Mount this thing
-			if (ENABLE_FEATURE_MOUNT_LABEL)
-				resolve_mount_spec(&mtpair->mnt_fsname);
+			resolve_mount_spec(&mtpair->mnt_fsname);
 
 			// NFS mounts want this to be xrealloc-able
 			mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
+
+			// Mount this thing
 			if (singlemount(mtcur, 1)) {
 				// Count number of failed mounts
 				rc++;
@@ -1911,9 +1908,7 @@
 		// Mount the last thing we found
 		mtcur->mnt_opts = xstrdup(mtcur->mnt_opts);
 		append_mount_options(&(mtcur->mnt_opts), cmdopts);
-		if (ENABLE_FEATURE_MOUNT_LABEL) {
-			resolve_mount_spec(&mtpair->mnt_fsname);
-		}
+		resolve_mount_spec(&mtpair->mnt_fsname);
 		rc = singlemount(mtcur, 0);
 		if (ENABLE_FEATURE_CLEAN_UP)
 			free(mtcur->mnt_opts);


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic