some minor updates after test run

This commit is contained in:
Antonin Bas 2015-10-01 22:25:16 -07:00
parent 2c060c00ff
commit c8205b938b
2 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,7 @@ target [on p4lang]
*Source Routing* asks you to write a P4 program from scratch to implement a
custom source routing protocol. *Flowlet Switching* is more difficult: you will
start from a simple P4 routing program (with ECMP) and implement a version of
flowlet switching, which yields better load balancing for long-lived TCP flows.
flowlet switching, which yields better load balancing for bursty TCP flows.
For both exercises, you will find a .tar.gz archive which contains the solution
files.
@ -212,7 +212,8 @@ being processed correctly.
## Exercise 2: Implementing TCP flowlet switching
Place yourself in the `source_routing` directory.
Place yourself in the `flowlet_switching` directory and run
`sudo ./veth_setup.sh`.
### What is flowlet switching?

View File

@ -3,6 +3,6 @@ THIS_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
# ---------------- EDIT THIS ------------------
BMV2_PATH=$THIS_DIR/../../bmv2
# e.g. BMV2_PATH=$THIS_DIR/../bmv2
P4C_BM_PATH=$THIS_DIR/../../p4c-bm
P4C_BM_PATH=$THIS_DIR/../../p4c-bmv2
# e.g P4C_BM_PATH=$THIS_DIR/../p4c-bm
# ---------------- END ------------------