diff options
Diffstat (limited to 'configs/boot')
-rw-r--r-- | configs/boot/client.netperf.maerts | 33 | ||||
-rw-r--r-- | configs/boot/client.netperf.rr | 33 | ||||
-rw-r--r-- | configs/boot/client.netperf.stream | 33 | ||||
-rw-r--r-- | configs/boot/server.netperf | 17 |
4 files changed, 116 insertions, 0 deletions
diff --git a/configs/boot/client.netperf.maerts b/configs/boot/client.netperf.maerts new file mode 100644 index 000000000..05517fcc5 --- /dev/null +++ b/configs/boot/client.netperf.maerts @@ -0,0 +1,33 @@ +#!/bin/sh +SERVER=10.0.0.1 +CLIENT=10.0.0.2 + +echo "setting up network..." +ifconfig lo 127.0.0.1 +ifconfig eth0 $CLIENT + +echo -n "waiting for server..." +/usr/bin/netcat -c -l -p 8000 + +BINARY=/usr/bin/netperf +TEST="TCP_MAERTS" +SHORT_ARGS="-l -100k" +LONG_ARGS="-k16384,0 -K16384,0 -- -m 65536 -M 65536 -s 262144 -S 262144" + + +SHORT="$BINARY -H $SERVER -t $TEST $SHORT_ARGS" +LONG="$BINARY -H $SERVER -t $TEST $LONG_ARGS" + +echo "starting test..." +echo "netperf warmup" +echo $SHORT +eval $SHORT + +echo "netperf benchmark" +echo $LONG +/sbin/m5 ivlb 1 +/sbin/m5 resetstats +/sbin/m5 dumpresetstats 2000000000 2000000000 +/sbin/m5 checkpoint 2000000000 2000000000 +eval $LONG +/sbin/m5 exit diff --git a/configs/boot/client.netperf.rr b/configs/boot/client.netperf.rr new file mode 100644 index 000000000..1ecd44e88 --- /dev/null +++ b/configs/boot/client.netperf.rr @@ -0,0 +1,33 @@ +#!/bin/sh +SERVER=10.0.0.1 +CLIENT=10.0.0.2 + +echo "setting up network..." +ifconfig lo 127.0.0.1 +ifconfig eth0 $CLIENT + +echo -n "waiting for server..." +/usr/bin/netcat -c -l -p 8000 + +BINARY=/usr/bin/netperf +TEST="TCP_RR" +SHORT_ARGS="-l -1k" +LONG_ARGS="-k10000,0 -K10000,0" + + +SHORT="$BINARY -H $SERVER -t $TEST $SHORT_ARGS" +LONG="$BINARY -H $SERVER -t $TEST $LONG_ARGS" + +echo "starting test..." +echo "netperf warmup" +echo $SHORT +eval $SHORT + +echo "netperf benchmark" +echo $LONG +/sbin/m5 ivlb 1 +/sbin/m5 resetstats +/sbin/m5 dumpresetstats 2000000000 2000000000 +/sbin/m5 checkpoint 2000000000 2000000000 +eval $LONG +/sbin/m5 exit diff --git a/configs/boot/client.netperf.stream b/configs/boot/client.netperf.stream new file mode 100644 index 000000000..925c0bbf6 --- /dev/null +++ b/configs/boot/client.netperf.stream @@ -0,0 +1,33 @@ +#!/bin/sh +SERVER=10.0.0.1 +CLIENT=10.0.0.2 + +echo "setting up network..." +ifconfig lo 127.0.0.1 +ifconfig eth0 $CLIENT + +echo -n "waiting for server..." +/usr/bin/netcat -c -l -p 8000 + +BINARY=/usr/bin/netperf +TEST="TCP_STREAM" +SHORT_ARGS="-l -100k" +LONG_ARGS="-k16384,0 -K16384,0 -- -m 65536 -M 65536 -s 262144 -S 262144" + + +SHORT="$BINARY -H $SERVER -t $TEST $SHORT_ARGS" +LONG="$BINARY -H $SERVER -t $TEST $LONG_ARGS" + +echo "starting test..." +echo "netperf warmup" +echo $SHORT +eval $SHORT + +echo "netperf benchmark" +echo $LONG +/sbin/m5 ivlb 1 +/sbin/m5 resetstats +/sbin/m5 dumpresetstats 2000000000 2000000000 +/sbin/m5 checkpoint 2000000000 2000000000 +eval $LONG +/sbin/m5 exit diff --git a/configs/boot/server.netperf b/configs/boot/server.netperf new file mode 100644 index 000000000..d8b142bf7 --- /dev/null +++ b/configs/boot/server.netperf @@ -0,0 +1,17 @@ +#!/bin/sh +SERVER=10.0.0.1 +CLIENT=10.0.0.2 + +echo "setting up network..." +ifconfig lo 127.0.0.1 +ifconfig eth0 $SERVER + +echo "running netserver..." +/usr/bin/netserver + +echo -n "signal client to begin..." +echo "server ready" | /usr/bin/netcat -c $CLIENT 8000 +echo "done." + +echo "starting bash..." +exec /bin/bash |