X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/a014df929654cb4d7d1ca65be5cd6901d53d3fa9..9109d42725cebef9c99c8cbd9eed494ba0c54e89:/gw-tests/lib.sh diff --git a/gw-tests/lib.sh b/gw-tests/lib.sh index 2312d43..43afe6d 100644 --- a/gw-tests/lib.sh +++ b/gw-tests/lib.sh @@ -59,16 +59,6 @@ _plot() { } -create_dirs() { - local kver=$1 - local traffic=$2 - local test=$3 - - local d=results/$kver/$traffic/$test - mkdir -p $d - echo $d -} - echo_plot() { plot=$1 [[ "$_plot_separator" ]] && echo ", \\" @@ -98,7 +88,8 @@ _run() { fi for OPT_TRAFFIC in $traffics; do for kvers in $kernel_versions; do - dir=$(create_dirs $kvers $OPT_TRAFFIC $(basename $0 .sh)) + dir="results/host-$(uname -r)/$kvers/$OPT_TRAFFIC/$(basename $0 .sh)" + mkdir -p $dir script=$PWD/$0 cd $dir echo "Working directory: $dir" @@ -114,6 +105,8 @@ _run() { sshgw 'chrt -p -f 50 `pidof irq/146-can1` > /dev/null || :' sshgw 'chrt -p -f 49 `pidof sirq-net-rx/0` > /dev/null || :' sshgw 'chrt -p -f 49 `pidof sirq-net-tx/0` > /dev/null || :' + # Set the length of qdisc queue to avoid ENOBUFS errors + ifconfig can0 txqueuelen 200 cleanupgw main