_sysfs_dev try to find the major and minor device numbers of SCRATCH_DEV, by 'stat -c%t $SCRATCH_DEV' and 'stat -c%T $SCRATCH_DEV'. But if the SCRATCH_DEV is symlink (e.g: /dev/mapper/ testvg-scratchdev), stat command can't find correct device numbers. So try to find the real name of the SCRATCH_DEV at first. Signed-off-by: Zorro Lang <zlang@xxxxxxxxxx> --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 7338779..821922b 100644 --- a/common/rc +++ b/common/rc @@ -3818,7 +3818,7 @@ _short_dev() _sysfs_dev() { - local _dev=$1 + local _dev=`_real_dev $1` local _maj=$(stat -c%t $_dev | tr [:lower:] [:upper:]) local _min=$(stat -c%T $_dev | tr [:lower:] [:upper:]) _maj=$(echo "ibase=16; $_maj" | bc) -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html