X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre-iokit%2Fsgpdd-survey%2Fsgpdd-survey;h=cabfb7989207abc40b095ee076870ed8a5eff9cf;hb=28a8b70be3b8c656369fe0e37d0ac224a67c44a4;hp=2b6c41940e8d58caa676787484271c7b36feecdb;hpb=59b1a38a71af73b9192646519862721c1f5b215b;p=fs%2Flustre-release.git diff --git a/lustre-iokit/sgpdd-survey/sgpdd-survey b/lustre-iokit/sgpdd-survey/sgpdd-survey index 2b6c419..cabfb79 100755 --- a/lustre-iokit/sgpdd-survey/sgpdd-survey +++ b/lustre-iokit/sgpdd-survey/sgpdd-survey @@ -14,15 +14,15 @@ rslt=${rslt:-"/tmp/sgpdd_survey_`date +%F@%R`_`uname -n`"} # what to do (read or write) -actions="write read" +actions=${actions:-"write read"} # total size per device (MBytes) # NB bigger than device cache is good size=${size:-8192} # record size (KBytes) -rszlo=1024 -rszhi=1024 +rszlo=${rszlo:-1024} +rszhi=${rszhi:-1024} # Concurrent regions per device crglo=${crglo:-1} @@ -37,8 +37,6 @@ thrhi=${thrhi:-4096} ##################################################################### # leave the rest of this alone unless you know what you're doing... -# sgp_dd's idea of disk sector size (Bytes) -bs=512 # and max # threads one instance will spawn SG_MAX_QUEUE=16 @@ -80,6 +78,13 @@ fi ndevs=${#devs[@]} +# determine block size. This should also work for raw devices +# If it fails, set to 512 +bs=$((`sg_readcap -b ${devs[0]} |awk '{print $2}'`)) +if [ $bs == 0 ];then + echo "sg_readcap failed, setting block size to 512" + bs=512 +fi rsltf=${rslt}.summary workf=${rslt}.detail echo -n > $rsltf @@ -95,14 +100,7 @@ print_summary () { echo $minusn "$*" } -time_v=`date` -hostname=`hostname` -if [ "$rawdevs" ]; then - print_summary "$time_v sgpdd-survey on $rawdevs from $hostname" -fi -if [ "$scsidevs" ]; then - print_summary "$time_v sgpdd-survey on $scsidevs from $hostname" -fi +print_summary "$(date) sgpdd-survey on $rawdevs$scsidevs from $(hostname)" for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do for ((crg=$crglo;crg<=$crghi;crg*=2)); do @@ -158,7 +156,9 @@ for ((rsz=$rszlo;rsz<=$rszhi;rsz*=2)); do for ((i=0;i /dev/null 2>&1; then + if grep 'error' $rtmp > /dev/null 2>&1; then + echo "Error found in $rtmp" + elif grep 'time to transfer data' $rtmp > /dev/null 2>&1; then ok=$((ok + 1)) fi cat ${rtmp} >> $tmpf