Displaying 1 result from an estimated 1 matches for "disk_layout".
2009 Feb 26
2
BUG: Mount/Unmount Loop
...chccwdev -e c
vmcp "SPOOL C CLASS *"
vmur purge
* take disks online (only needed on system z)
for i in $DEVNOS; do chccwdev -e $i; done
for i in $DEVNOS; do lsdasd $i; done
* format the disks (only needed on system z)
for i in $DEVNOS; do
dasdfmt --blocksize=4096 --disk_layout=cdl --label=0x$i -p --device /dev/disk/by-path/ccw-0.0.$i
## How to reproduce the problem
vmcp "sp cons start to *"
modprobe btrfs
for j in {1..10000};do
mkfs.btrfs -m raid1 -d raid1 $DEVICES
for i in $DEVICES;do
set -x
mount -t btrfs $i ${TESTMNT}
umount ${TESTM...