diff options
author | Roy Marples <roy@marples.name> | 2007-10-09 09:56:45 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-10-09 09:56:45 +0000 |
commit | 393d07cb6fb321182185c95088a646fcb9a7be04 (patch) | |
tree | 05d5de31e63c8c35d717eeeacb2a5733e35c02a0 /net.Linux/ifconfig.sh | |
parent | ee1b7d01414b9913f518c333509cceecc16cec38 (diff) |
txqueuelen_eth0= now works, #190538.
Diffstat (limited to 'net.Linux/ifconfig.sh')
-rw-r--r-- | net.Linux/ifconfig.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net.Linux/ifconfig.sh b/net.Linux/ifconfig.sh index afa2edea..bc04cdb7 100644 --- a/net.Linux/ifconfig.sh +++ b/net.Linux/ifconfig.sh @@ -239,6 +239,11 @@ ifconfig_pre_start() { eval mtu=\$mtu_${IFVAR} [ -n "${mtu}" ] && ifconfig "${IFACE}" mtu "${mtu}" + # TX Queue Length support + local len= + eval len=\$txqueuelen_${IFVAR} + [ -n "${len}" ] && ifconfig "${IFACE}" txqueuelen "${len}" + local tunnel= eval tunnel=\$iptunnel_${IFVAR} |