Commit dd28f774 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

add i40e experiment

parent 5397c94c
......@@ -128,6 +128,18 @@ run_corundum_bm() {
return $pid
}
# Args:
# - Instance name
run_i40e_bm() {
echo Starting i40e $1
$EHSIM_BASE/i40e_bm/i40e_bm \
$OUTDIR/pci.$1 $OUTDIR/eth.$1 $OUTDIR/shm.$1 \
&>$OUTDIR/i40e_bm.$1.log &
pid=$!
ALL_PIDS="$ALL_PIDS $pid"
return $pid
}
# Args:
# - Instance name
# - sim instance 1
......
#!/bin/bash
source common-functions.sh
init_out qemu-i40e-bm-pair $1
run_i40e_bm a
run_i40e_bm b
sleep 0.5
run_wire ab a b
run_qemu a a build/qemu-pair-server.tar
run_qemu b b build/qemu-pair-client.tar
#client_pid=$!
#wait $client_pid
sleep 30
cleanup
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment