From: Anand Jain Date: Wed, 13 Aug 2014 01:15:43 +0000 (+1000) Subject: common: _devmgt_add() to check if the device is back online X-Git-Tag: v2022.05.01~3099 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=ffd3c2b093c48af4cf7de1baf5ef6faf84346065;p=users%2Fhch%2Fxfstests-dev.git common: _devmgt_add() to check if the device is back online btrfs/003 uses a method to remove the device as part of the test case, and after the test completes the removed device is added back to the system. However on certain system, albeit the slow running system the device comes back a bit later, and so the latter occurring sub-test with in the btrfs/003 fails. This patch adds script to wait and test if the device is back online, and thus report the same to to the full log. Signed-off-by: Anand Jain Reviewed-by: Dave Chinner Signed-off-by: Dave Chinner --- diff --git a/common/rc b/common/rc index b831d82d6..12eb989ee 100644 --- a/common/rc +++ b/common/rc @@ -2141,6 +2141,31 @@ _devmgt_add() tdl=`echo ${1} | cut -d":" -f 2-|sed 's/:/ /g'` echo ${tdl} > /sys/class/scsi_host/host${h}/scan || _fail "Add disk failed" + + # ensure the device comes online + dev_back_oneline=0 + for i in `seq 1 10`; do + if [ -d /sys/class/scsi_device/${1}/device/block ]; then + dev=`ls /sys/class/scsi_device/${1}/device/block` + for j in `seq 1 10`; + do + stat /dev/$dev > /dev/null 2>&1 + if [ $? -eq 0 ]; then + dev_back_oneline=1 + break + fi + sleep 1 + done + break + else + sleep 1 + fi + done + if [ $dev_back_oneline -eq 0 ]; then + echo "/dev/$dev online failed" >> $seqres.full + else + echo "/dev/$dev is back online" >> $seqres.full + fi } _require_fstrim()