[dm-devel] [PATCH 0/3] sysfs representation of stacked devices (dm/md)

Jun'ichi Nomura j-nomura at ce.jp.nec.com
Fri Feb 17 18:00:17 UTC 2006


Hello,

These patches provide common representation of dependencies
between stacked devices (dm and md) in sysfs.
For example, if dm-0 maps to sda, we have the following symlinks;
   /sys/block/dm-0/slaves/sda --> /sys/block/sda
   /sys/block/sda/holders/dm-0 --> /sys/block/dm-0

This makes it easier for user space tools/scripts to find out
device dependencies.


Suppose complicated but quite normal situation like below:
We have a logical volume (dm-2) on md raid1 (md0) which is
build upon dm-multipath (dm-0, dm-1) on FC disks (sda .. sdd).
   dm-2
      +-- md0
             |-- dm-0
             |      |-- sda
             |      +-- sdb
             |
             +-- dm-1
                    |-- sdc
                    +-- sdd

Though md0, dm-0, dm-1 and sd[a-d] contain same LVM2 meta data,
LVM2 should pick up md0 as PV, not dm-0, dm-1 and sdXs.
mdadm should build md0 from dm-0 and dm-1, not from sdXs.
Similar things will happen on 'mount' and 'fsck' if we use
file system labels instead of LVM2.

Currently, these relationships are determined by each tool
combining information like the existence of md metadata
and dm dependency ioctl.

With the patches, symlinks are created as shown below:
   /sys/block/dm-2/slaves/md0 --> /sys/block/md0
   /sys/block/md0/holders/dm-2 --> /sys/block/dm-2
   /sys/block/md0/slaves/dm-1 --> /sys/block/dm-1
   /sys/block/md0/slaves/dm-0 --> /sys/block/dm-0
   /sys/block/dm-0/holders/md0 --> /sys/block/md0
   /sys/block/dm-0/slaves/sda --> /sys/block/sda
   /sys/block/sda/holders/dm-0 --> /sys/block/dm-0
   ...

thus we only need to check "holders" directory of the device
to decide whether the device is used by dm/md.
Also we can walk down the "slaves" directories to collect
the devices conposing the given dm/md device.

The idea was raised in dm-devel by Lars in the last year
but I couldn't find follow ups of actual implementation.
https://www.redhat.com/archives/dm-devel/2005-April/msg00040.html


Any comments?

--
Jun'ichi "Nick" Nomura, NEC Solutions (America), Inc.




More information about the dm-devel mailing list