]> err.no Git - util-linux/commitdiff
mount: avoid duplicates for root fs in mtab
authorMatthias Koenig <mkoenig@suse.de>
Fri, 24 Aug 2007 11:05:27 +0000 (13:05 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 24 Aug 2007 13:07:39 +0000 (15:07 +0200)
If the root fs is defined with LABEL or UUID in fstab, avoid
a duplicate entry in mtab when calling mount without existing
mtab.
A mount -f / creates two entries, one for LABEL and another
for the devicename, because canonicalize does not expand the
LABEL or UUID tags.

Signed-off-by: Matthias Koenig <mkoenig@suse.de>
mount/mount.c

index 83d55e0c68d5359514dd0a24fa201367e6d5b142..40699f33d1b8095c8e74b21667ed08091859f162 100644 (file)
@@ -541,7 +541,7 @@ create_mtab (void) {
                char *extra_opts;
                parse_opts (fstab->m.mnt_opts, &flags, &extra_opts);
                mnt.mnt_dir = "/";
-               mnt.mnt_fsname = canonicalize (fstab->m.mnt_fsname);
+               mnt.mnt_fsname = fsprobe_get_devname(fstab->m.mnt_fsname);
                mnt.mnt_type = fstab->m.mnt_type;
                mnt.mnt_opts = fix_opts_string (flags, extra_opts, NULL);
                mnt.mnt_freq = mnt.mnt_passno = 0;