> It works if I attach the mini-disk was multi-write. This is not what we want > but it works. Any ideas?
A lot of speculation on my part follows. Again I will point to Red Hat as the more informed party. The bug I dealt with before seems very similar to what you are experiencing. There were functions in the LVM code used for volume initialization that came in two variants: the read write variant would write metadata to the volume during initialization while the read only variant would not try to write anything. The cause of the bug was that someone forgot to call the RO variant when the disk was linked RO and the RW variant tried to write to the disk and failed which in turn caused the whole initialization to fail and the volume was not brought online. If your case is similar, then linking the minidisk MW would allow the initialization logic on the disk that is supposed to read to write to the disk. I assume that you are using an ext type file system and I am also assuming that Linux does not support the RESERVE/RELEASE function there (if there is someone who knows better please correct me). This means that the two Linuxes sharing the disk can write to the disk at the same time. You may get lucky and this will work or you may end up with corrupted LVM metadata or worse. Before you proceed with this check how important the data on those disks are, what are your skills regarding recovery of LVM disks with corrupted metadata and whether you have usable backups. Even if the data on those disks are not valuable, corrupted LVM metadata could make debugging your original problem more complicated. The safe rule of MW is to never use it unless you have a very good idea about what you are doing. HTH, Tomas ---------------------------------------------------------------------- For LINUX-390 subscribe / signoff / archive access instructions, send email to [email protected] with the message: INFO LINUX-390 or visit http://www.marist.edu/htbin/wlvindex?LINUX-390 ---------------------------------------------------------------------- For more information on Linux on System z, visit http://wiki.linuxvm.org/
