public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] sysfs representation of stacked devices (dm/md)
@ 2006-02-17 18:00 Jun'ichi Nomura
  2006-02-17 18:01 ` [PATCH 1/3] sysfs representation of stacked devices (dm/md common) Jun'ichi Nomura
                   ` (4 more replies)
  0 siblings, 5 replies; 15+ messages in thread
From: Jun'ichi Nomura @ 2006-02-17 18:00 UTC (permalink / raw)
  To: Neil Brown, Alasdair Kergon, Lars Marowsky-Bree
  Cc: device-mapper development, linux-kernel

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.


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2006-02-21 15:53 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-17 18:00 [PATCH 0/3] sysfs representation of stacked devices (dm/md) Jun'ichi Nomura
2006-02-17 18:01 ` [PATCH 1/3] sysfs representation of stacked devices (dm/md common) Jun'ichi Nomura
2006-02-17 18:44   ` Alasdair G Kergon
2006-02-18  1:03     ` Jun'ichi Nomura
2006-02-18 19:50       ` Alasdair G Kergon
2006-02-21 15:33         ` Jun'ichi Nomura
2006-02-21 15:52           ` Alasdair G Kergon
2006-02-17 18:03 ` [PATCH 2/3] sysfs representation of stacked devices (dm) Jun'ichi Nomura
2006-02-17 18:05 ` [PATCH 3/3] sysfs representation of stacked devices (md) Jun'ichi Nomura
2006-02-17 19:42 ` [PATCH 0/3] sysfs representation of stacked devices (dm/md) Alasdair G Kergon
2006-02-18  1:21   ` Jun'ichi Nomura
2006-02-18 19:53     ` Alasdair G Kergon
2006-02-21 15:34       ` Jun'ichi Nomura
2006-02-18  6:06   ` Kyle Moffett
2006-02-19 22:04 ` Neil Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox