Skip to content

Commit

Permalink
Fix bug w/limit on gbit
Browse files Browse the repository at this point in the history
  • Loading branch information
tohojo committed Mar 17, 2013
1 parent cc4ee67 commit 2e551c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debloat.sh
Expand Up @@ -88,7 +88,7 @@ local SPEED=`cat $S/$IFACE/speed` 2> /dev/null
if [ -n "$SPEED" ]
then
[ "$SPEED" = 4294967295 ] && echo "no ethernet speed selected. debloat estimate will be WRONG"
[ "$SPEED" -lt 1001 ] && FQ_LIMIT=1200
[ "$SPEED" -lt 1001 ] && FQ_LIMIT="limit 1200"
if [ "$SPEED" -lt 101 ]
then
[ $LL -eq 1 ] && et # for lowest latency disable offloads
Expand Down

0 comments on commit 2e551c0

Please sign in to comment.