Summary: fq_codel at 10Gbit/s (tests for Dave Taht) Kernel: 3.17.0-rc4 * net-next at commit: c0d1379a Netperf-wrapper test: * tcp_upload_prio NOTICE: the NoneXSO test, it seems that it is not exausing the bandwidth limit, thus no real queue builds up. Qdisc stats shows zero backlog. NOTICE forcing single CPU run, this could be causing NoneXSO to not utilize bandwidth. Cmdline: export DEV=eth4; sudo sh -c "tc qdisc del dev $DEV root; tc qdisc add dev $DEV root handle 1: fq_codel ; tc -s qdisc ls dev $DEV" export TITLE=fq_codel sudo ethtool -K eth4 gro on gso on tso on sudo -E taskset -c 2 ./netperf-wrapper -H 192.168.8.2 -t TSO_${TITLE} tcp_upload_prio sudo ethtool -K eth4 gro on gso on tso off sudo -E taskset -c 2 ./netperf-wrapper -H 192.168.8.2 -t GSO_${TITLE} tcp_upload_prio sudo ethtool -K eth4 gro off gso off tso off sudo -E taskset -c 2 ./netperf-wrapper -H 192.168.8.2 -t NoneXSO_${TITLE} tcp_upload_prio Graph generation: for x in *.json.gz; do ../measure01/generate_all_graphs__tcp_upload_prio.sh $x; done