[linux-lvm] Mirrored LVM volumes and UUID

Peter Rajnoha prajnoha at redhat.com
Mon Sep 23 07:39:11 UTC 2013


On 09/20/2013 01:30 PM, Alessandro MACUZ wrote:
> I use mirrored volumes and blkid returns the same UUID for the "raid"
> volume and the underlying volumes
> 
> /dev/mapper/lvm01-root_mimage_0:
> UUID="0b88ad6f-34ed-46d6-abe3-eca0d235b353" TYPE="ext4"
> /dev/mapper/lvm01-root_mimage_1:
> UUID="0b88ad6f-34ed-46d6-abe3-eca0d235b353" TYPE="ext4"
> /dev/mapper/lvm01-root: UUID="0b88ad6f-34ed-46d6-abe3-eca0d235b353"
> TYPE="ext4"
> 
> Then such ID is used in fstab to mount root based... on UUID.
> 
> I wonder how fstab knows that it must use /dev/mapper/lvm01-root and not
> the others since the three of them share the same UUID, and if by
> accident the others can be erroneusly used/mounted.

When the mirror volume is activated, only top-level volumes are scanned
by blkid in udev rules (it's coordinated by 11-dm-lvm.rules and 13-dm-disk.rules
which are in /lib/udev/rules.d). In this case, it's the lvm01-root only that
is scanned by blkid within udev processing, not the *_mimage devices. Then we
end up with a symlink created only for the top-level volume in /dev/disk/by-uuid
directory. And this is what is being looked for at boot...

The similar situation happens with snapshot volumes which would end up with
same FS UUID for the origin and all its snapshots. In this case, we always give
priority to the origin volume.

Peter




More information about the linux-lvm mailing list